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?
Asked
Active
Viewed 42 times
1
-
Hi. We don't like following external links, as they may be down at any moment. Please add a minimal working example here instead! – Feb 21 '19 at 05:42
1 Answers
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 wherexis less than 1 - Change text line spacing locally with the
\setstretch{x}command from thesetspacepackage (see this example) - Changing the
\jotlength with, for example,\setlength{\jot}{6pt}(default8pt), 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