[Tex/LaTex] Remove spaces between words

spacing

Can someone help me with this thing? when I type in TexMaker this command:

\hspace{15pt}Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.

in pdf is written like this: enter image description here

How can I remove those spaces?

Best Answer

You must have something equivalent to

\documentclass{article}

\begin{document}

\setlength\parfillskip{0pt}

\hspace{15pt}Two things are infinite: the universe and human stupidity; 
and I'm not sure about the universe.
\end{document}

which makes

enter image description here

If you remove the \hspace and remove the setting of \parfillskip which is specifying that the last line of the pargarph must reach the right margin, then you get

\documentclass{article}

\begin{document}

Two things are infinite: the universe and human stupidity;
and I'm not sure about the universe.
\end{document}

enter image description here

Related Question