Document Classes ⇒ DOUBLE SPACE BETWEEN WORDS
DOUBLE SPACE BETWEEN WORDS
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: DOUBLE SPACE BETWEEN WORDS
\documentclass{article}
\begin{document}
Some word not space out
\fontdimen2\font=2\fontdimen2\font
Some words spaced out
\end{document}
Here, \fontdimen2 is the dimension which stores the interword space. This is done on a font-by-font basis, hence needing \font.
Joseph Wright
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: DOUBLE SPACE BETWEEN WORDS
\documentclass{article}
\begin{document}
Some word \spaceskip=2\fontdimen2\font plus 2\fontdimen3\font
minus 2\fontdimen4\font
Some more words
\end{document}
This does not mess with the contents of \fontdimen2.
Joseph Wright