Similar question = How do I ask LaTeX to exactly fill up a page?
I want to fill up a page by several equations because they come with automatic numbering.
I tried the \lineskip\fill trick but it is not perfect.
\documentclass[twocolumn]{article}
\usepackage{amsmath}
\usepackage{showframe}
\begin{document}
Some Lorem Ipsum here.
\bgroup
\lineskip\fill
\def\bigbox#1 {
\begin{equation}
\vrule height#1cmdepth#1cmwidth3cm
\end{equation}
}
\bigbox1
\bigbox1
\bigbox1
\bigbox1
\bigbox2
\bigbox2
\bigbox2
\bigbox2
\bigbox2
\bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
% \bigbox2
\egroup
\onecolumn
Here is one-column material.
\end{document}
How could I possibly align (6) and (10)?


\baselineskips to add glue. Try\addtolength{\abovedisplayskip}{0pt plus 100fil minus 2pt}instead. – John Kormylo Oct 10 '18 at 02:27\lineskipis used instead of\baselineskipbecause the equations are too high. Anyway I tried your code, (6) and (10) are not aligned. – Symbol 1 Oct 10 '18 at 02:33