1

On the first page last column of this Document, the vertical spaces between each line is wider than the rest and I can't add anymore text to that column, else it will just spill over to the next page, how can I resolve this?

1 Answers1

1

Spacing in the final column appears in keeping with the other columns for me. Regardless, several ways of controlling line spacing are:

  • Reduce text line spacing for the entire document by specifying \linespread{x} in the preamble where x is less than 1
  • Change text line spacing locally with the \setstretch{x} command from the setspace package (see this example)
  • Changing the \jot length with, for example, \setlength{\jot}{6pt} (default 8pt), which determines the spacing in a multi-line amsmath environment
  • Changing the line spacing following a particular equation in a multi-line amsmath environment by using, for example, \\[-2pt] to end the equation line instead of just \\
pip
  • 1,847