I read in the UK Tex FAQ that it's possible to use the following to define an environment that will change the spacing/hyphenation tolerance in the surrounded paragraphs:
Code: Select all
\newenvironment{tolerant}[1]{%
\par\tolerance=#1\relax
}{%
\par
}
I put the \newenvironment{tolerant} command in the preamble. But then what exactly do I put around the paragraphs I want to affect?
Code: Select all
\begin{tolerant}{300}
paragraphs to be affected
\end{tolerant}