I'd like to add a "normal" space, where the length of the space is the same as the length of the space between the words you are reading right now.
How can I accomplish this?
I'd like to add a "normal" space, where the length of the space is the same as the length of the space between the words you are reading right now.
How can I accomplish this?
There are several ways to do this. A simple way would be to use ~ or \ this would give an extra gap the size of one space. I would also recommend seeing this question: What commands are there for horizontal spacing?
Example:
\documentclass{article}
\begin{document}
\noindent
text spacing\\
text ~spacing\\
\end{document}
This yields:
Note that LaTeX often does spacing automatically to eliminate line breaks so in a document the regular space between words can vary.
\:\: is not the same as a word space, this answer is at best misleading
– David Carlisle
Nov 07 '16 at 23:10
\: is an error in text mode, and with it it is a horizontal space of a different size to \space
– David Carlisle
Nov 07 '16 at 23:12
\:. Thanks
– Dan
Nov 07 '16 at 23:12
\: with ~.
– Dan
Nov 07 '16 at 23:19
\ as was correctly said already in the comments under the question. Why imply \ is just for math mode? (it should not normally be used in math mode) unlike \: which by default can only be used in math mode.
– David Carlisle
Nov 07 '16 at 23:21
~ isn't just any old space, though, it's a non-breaking space - it prevents a line-break at that point
– Au101
Nov 07 '16 at 23:21
\. That is\space. – Nov 07 '16 at 23:02