连续脚注,奇数页和偶数页分开

连续脚注,奇数页和偶数页分开

我在奇数页上有一段拉丁文本,在偶数页上有它的译文。但我需要为奇数页和偶数页添加不同的脚注。不过,我不希望它们在每一页都重新开始:我需要它们在偶数页和奇数页的脚注上分别保持连续。

谢谢。

答案1

如果您正在制作对开页版本和翻译,那么最好的软件包是孪生的eledmaceledpar。这是一个例子;但请注意,这仅仅触及了可能性的表面。(特别是,我没有使用任何“关键文本/版本”宏。)如果您提供有关您希望完成的内容的真实详细信息(以及真正的 MWE),您可能会得到更好的答案。(无论如何,我很乐意尝试。)

% Compile twice to resolve footnotes
\documentclass{report}
\usepackage{eledmac, eledpar, lipsum}

\begin{document}
% Can't start "parallel" pages on an odd page
% Thus, "page 1" is blank
\begin{pages}

  \begin{Leftside}
  \beginnumbering\pstart
  \footnoteA{One}
  \footnoteA{Two}
  \footnoteA{Three}
  \footnoteA{Four}
  \footnoteA{Five}
  \lipsum
  \pend\endnumbering
  \end{Leftside}

  \begin{Rightside}
  \beginnumbering\pstart
  \footnoteB{One}
  \footnoteB{Two}
  \footnoteB{Three}
  \footnoteB{Four}
  \footnoteB{Five}
  \lipsum
  \pend\endnumbering
  \end{Rightside}

\Pages

  \begin{Leftside}% it might be better to create new environments for these
  \beginnumbering\pstart
  \footnoteA{One}
  \footnoteA{Two}
  \footnoteA{Three}
  \footnoteA{Four}
  \footnoteA{Five}
  \lipsum
  \pend\endnumbering
  \end{Leftside}

  \begin{Rightside}% it might be better to create new environments for these
  \beginnumbering\pstart
  \footnoteB{One}
  \footnoteB{Two}
  \footnoteB{Three}
  \footnoteB{Four}
  \footnoteB{Five}
  \lipsum
  \pend\endnumbering
  \end{Rightside}

\Pages

\end{pages}

\end{document}

相关内容