Following up on Footnote in environment as parallel, I am trying to typeset footnotes using the parallel package but with the [p] (Pages) environment, which prints the parallel texts on facing pages.
I would like each footnote to appear on the same page as the footnote mark.
However, using \footnote{} places the footnote after the parallel environment ends (as the documentation warns), which turns out to be the top of the following page.
Using a \footnotetext{} after the parallel texts but still within the parallel environment places the footnote in the footer of the preceding page.
\documentclass{article}
\usepackage{fontspec}
\usepackage{polyglossia}
\usepackage{parallel}
\newenvironment{verseparallel}[2]
{\begin{Parallel}[p]{}{}
\ParallelLText{#1}\ParallelRText{#2}}
{\end{Parallel}}
\begin{document}
\begin{verseparallel}
{To be, or not to be\footnote{(A) footnote appears on next page}}
{To be, or not to be\footnotemark}
\footnotetext{(B) footnote appears on preceding page}
\end{verseparallel}
\end{document}
In either case, the footnote is printed on a different page than the footnote mark. Is there a workaround to place a footnote at the bottom of the same page as the footnote mark?
paracolpackage may be better. – touhami Feb 15 '16 at 21:19