Page LayoutBalanced Columns and Footnotes

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

Balanced Columns and Footnotes

Post by pippipalma »

Hello!

I should produce a two-columned book with a lot of footnotes (even footnotes should be formatted in two columns, as the twocolumn class option does), and I'd like to balance the columns (as multicol does) at the end of each chapter. I suppose I cannot use the multicol package (it leaves one-columned footnotes), and unfortunately even the balance package seems not to work with footnotes (output is quite bad...).

Do you have any suggestion?

Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Balanced Columns and Footnotes

Post by cgnieder »

The third possibility would be the flushend package (see also the TeX faq entry) and it seems to work in principle but fails if there are footnotes in both columns on the last (balanced) page:

Code: Select all

\documentclass[twocolumn]{article}

\usepackage{lipsum,flushend}

\begin{document}

\lipsum[1-2] Text\footnote{A sample footnote.}
\lipsum[3-5] Text\footnote{\lipsum[1]}
\lipsum[6-7] Text\footnote{A sample footnote.}
\lipsum[8-9] Text\footnote{\lipsum[1]}

\end{document}
Regards
site moderator & package author
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

Balanced Columns and Footnotes

Post by pippipalma »

That's correct, but I didn't mention the flushend package because it just balances the last page of the document and doesn't affect the last pages of the previous chapters.

Regards
Post Reply