아름다운 조판을 위해서

문장 간의 여백 크기를 단어 간의 여백 크기보다 크게

문장과 문장 사이의 여백을 단어와 단어 사이의 여백보다 크게 하면 가독성이 향상됩니다. 기본적으로 LaTeX은 이를 고려하여 조판을 합니다.

LaTeX은 .?! 등의 글자가 오면 문장이 끝난 것으로 판단하고 단어가 끝난 이후의 여백보다 크게 여백을 설정합니다. 그런데 이런 글자가 온다고 항상 문장이 끝난 것이 아닐 수 있습니다.1

\documentclass{article}
\begin{document}
If you get too much space after a mid-sentence period---abbreviations
like etc. are the common culprits)---then type a backslash followed by
a space after the period, as in this sentence.
\end{document}

이 경우에는 해당 문자 부호 다음에 역슬러시를 입력하면 됩니다.

\documentclass{article}
\begin{document}
If you get too much space after a mid-sentence period---abbreviations
like etc.\ are the common culprits)---then type a backslash followed by
a space after the period, as in this sentence.
\end{document}

  1. ftp://tug.ctan.org/tex-archive/macros/latex/base/small2e.tex 예제 참고