Text Formatting ⇒ Old fashioned spacing.
-
- Posts: 132
- Joined: Wed Feb 11, 2009 11:38 pm
Old fashioned spacing.
There are two things I should like to know. The first is probably simpler, but the second would be better.
1. Is it possible to get english / french spacing around "!", ";", "?", and "!" without selecting french as the language after whose rules words are split at the ends of lines, i.e. without \selectlanguage{french} ?
2. Is it possible to do this but also increase the space after the last period (or similar sign) in a sentence, e.g. to 1 em?
Thanks in advance.
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Old fashioned spacing.
To tell TeX to use a normal interword space, use \ (i.e., a backslash followed by a space). To get an end-of-sentence space after the period, use \@.
For example, compare the output of:
Code: Select all
Prof.\ Smith has a program written in BASIC\@. It does a really nice job.
Code: Select all
Prof. Smith has a program written in BASIC. It does a really nice job.