I am trying to use the twocolumn option from memoir but it is also formatting the footnotes into two columns.
\documentclass[12pt,twocolumn]{memoir}
\usepackage{lipsum}
\begin{document}
\chapter{The Example}
Some simple text\footnote{\lipsum[2]}
\lipsum[2-3]
\end{document}
I want the footnotes to span the bottom of the page, similar to how it looks if I use the multicol package:
\documentclass[12pt]{memoir}
\usepackage{multicol}
\usepackage{lipsum}
\begin{document}
\chapter{The Example}
\begin{multicols}{2}
Some simple text\footnote{\lipsum[2]}
\lipsum[2-3]
\end{multicols}
\end{document}
But I'd rather not use the multicol package here, unless it is the correct thing to do (I'd have to manually wrap each chapter in a \begin{multicols} block and use what I learned from this question to mimic the margins.) Is it possible to make footnotes in twocolumn mode span the entire page?
twocolumn, adjust the margins as required, and usemulticols. It gets what I want. – bombcar Mar 20 '14 at 16:24