8

How can I insert an inter-sentence space without using a period?

I can easily get an inter-word space via \␣ (backslash followed by a space), or ~ if I don't want line breaking. Is there something equivalent for inter-sentence space?

2 Answers2

6

Set the space factor to the space factor code of the period.

\documentclass{article}

\newcommand{\intersentencespace}{\spacefactor\sfcode`. \space}

\begin{document}

Ends.\ Here.

Ends. Here.

.Ends\intersentencespace Here.

\bigskip

\xspaceskip=30pt

Ends.\ Here.

Ends. Here.

.Ends\intersentencespace Here.

\end{document}

The strange code .Ends\intersentencespace Here is for getting the same width before the space.

In the first three lines, the normal spacing is considered. In the second part, an artificially enlarged \xspacskip clearly shows the effect.

enter image description here

egreg
  • 1,121,712
2

You can define your own command, by adding fontdimen2 (interword space) to fontdimen7 (extra space). See section 4.3.1 of TeX by Topic .

\documentclass{article}
\newdimen\mydimen
\mydimen=\fontdimen2\font
\advance\mydimen by \fontdimen7\font
\newcommand\sspc{\hskip\mydimen}
\begin{document}
\noindent
test. test\\
test\sspc{}test\\
test test
\end{document}

enter image description here

Ian Thompson
  • 43,767