[Tex/LaTex] How to apply \looseness=-1 to ALL the paragraphs

line-breakingparagraphs

I'm writing a short document of (3-4 pages), and try to condense it into the allowed space.

Putting \looseness=-1 at the end a paragraph helps quite a lot. Is there a way to tell LaTeX to treat every paragraph as if there is a \looseness=-1 at its end, or must I put the command after each and every paragraph by myself?

Best Answer

At the end? Rather at the beginning. And generally:

\everypar{\looseness=-1}

However it does not mean that every paragraph will be one line shorter.

Related Question