When using some other editors, when you type two spaces with your space bar, two spaces are effectively displayed. This is not the case in LaTeX (btw, that's not the case on these websites ;) ).
My question is barely simple I guess, but I didn't found some information about it on Google.
How to display two consecutive spaces in LaTeX (I mean two spaces horizontally, with the space bar).


wordusers have to add the spaces explicitly, which is prone to errors. LaTeX can add them automatically: just put\nonfrenchspacingin your preamble (this is the default). However, if you want a modern look of your document, just put\frenchspacingin your document preamble. This is what I recommend in LaTeX and Friends. – Marc van Dongen Jan 1 at 19:43\frenchspacingis disabled. – Marc van Dongen Jan 1 at 19:45\frenchspacingcontrols the amount of space added by TeX/LaTeX after a sentence independent from the number of spaces in the source code. However, putting two spaces in the source code can still be useful, as editors like Vi and Vim use them to provide navigation like "move to the end of the current sentence". – Christian Lindig Jan 1 at 20:04