使用并行包时如何创建两列脚注?

使用并行包时如何创建两列脚注?

我正在使用parallel双列并行文本包。默认情况下,脚注都格式化为一列。有没有办法在parallel环境下生成双列脚注?我并不是要求将左右列脚注分开,只是觉得单列太浪费空间了。

我已经尝试过一些类似如何实现脚注的多列布局?。但它们似乎不适用于parallel。这是我的伪代码(使用dblfnote包)

\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}

任何想法或意见都将非常感激。

答案1

ledmac可能ledpar会超出您的需要,但您可以做这样的事情:

\documentclass{article}
\usepackage{ledmac, ledpar, lipsum}
\usepackage{showframe}
\foottwocolX{A}
\let\footnote\footnoteA
\parindent 0pt
\begin{document}
\lipsum[2]
\begin{pairs}

  \begin{Leftside}
    \beginnumbering\pstart
    % \firstlinenum{100}\linenumincrement{100}% <-- to 'hide' line numbers
    \lipsum[1] Aperture
    Science%
    \footnote{where GLaDOS lives} 
    \pend\endnumbering
  \end{Leftside}

  \begin{Rightside}
    \beginnumbering\pstart
    % \firstlinenum{100}\linenumincrement{100}% <-- to 'hide' line numbers
    \lipsum[2]
    We do what we must, because we can %
    \footnote{test subject} %
    \footnote{test subject} %
    \footnote{test subject} %
    \footnote{test subject} 
    \pend\endnumbering
  \end{Rightside}

\Columns
\end{pairs}

\lipsum[2]

\end{document}

ledmac还请注意,您可以创建一些命令来简化有关ledpar段落和平行列的开始和停止的期望。

相关内容