I am using parallel package for two column parallel texts. By default the footnotes are all formatted in one column. Is there any way to generate two column footnotes under parallel environment? I am not asking to separate left and right column footnotes, just feel single column too space-wasting.
I've tried some packages like whatever in How to achieve a multi-column layout for footnotes?.
But they don't seem to work with parallel.
Here is my pseudo code (using dblfnote package)
\documentclass{article}
\usepackage[Verbose]{parallel}
\usepackage{dblfnote}
\begin{document}
\begin{Parallel}{0.45\textwidth}{0.45\textwidth}
\ParallelLText{
Aperture Science \footnote{where GLaDOS lives}
}
\ParallelRText{
We do what we must, because we can
\footnote{test subject}
\footnote{test subject}
\footnote{test subject}
\footnote{test subject}
...
}
\end{Parallel}
\end{document}
Any thoughts or ideas would be much appreciated.