When LaTeX is unable to fit content onto a page, it sometimes inserts a large amount of whitespace between the two elements that fit on the first page, rather than just leaving space at the bottom of the page.
Minimal example:
\documentclass[a4paper]{memoir}
\usepackage{tikz}
\newcommand{\Rectangle}{%
\begin{minipage}{\linewidth} \tikz \draw (0,0) rectangle (2,16); \end{minipage}%
}
\begin{document}
\begin{center} Hello \end{center}
\Rectangle
\Rectangle
\end{document}
I would like the spacing to be such that the whitespace is just at the bottom of the first page rather than the large hole in the middle of the text and the rectangle. This can be fixed by either using the article class instead of memoir or getting rid of the \begin{center} and \end{center} but neither compromise is satisfactory for me.
What is the best way to get the whitespace to appear at the bottom of the page?
\raggedbottom? – egreg Dec 29 '11 at 00:37