In IEEE documents all the columns are balanced. Is it posible to achieve this in an article class?.
Asked
Active
Viewed 1,322 times
8
Werner
- 603,163
1 Answers
10
In addition to commented multicols or balance packages and others as vwcol (this for a single page), may be a simpler method is the package flushend
\documentclass[twocolumn]{article}
\usepackage{flushend} %balanced columns
\usepackage{lipsum} % dummy text
\begin{document}
\lipsum[1-10]
\end{document}
Another option, that could be problematic when using floats and enunciations (theorem, lemma, etc,) is set the fontsize, baseline and lines per page in the whole document with the grid package to fill the empty space of the last page or fit the text to n-1 pages.
For example, in this MWE with a single short column in the third page can be converted to a document with two or tree pages with no empty spaces:
\documentclass[twocolumn]{article}
\usepackage{lipsum}
% for a 2 pages document uncomment this
%\usepackage[fontsize=10pt,baseline=12pt,lines=51]{grid}
% for a 3 pages document uncomment this
% \usepackage[fontsize=11pt,baseline=14pt,lines=35]{grid}
\begin{document}
\lipsum[1-16]
\end{document}
Fran
- 80,769
multicolspackage. – David Carlisle Dec 22 '12 at 22:31balancepackage. – egreg Dec 22 '12 at 23:03\flushcolumnsis simple, but using themulticolpackage. for newbies trying this with a standardtwocolumnarticle will be only a frustrating undefined control sequence. – Fran Nov 05 '18 at 23:31