我正在使用 reledpar(太棒了!)将文本排版为平行列。我正在使用 ledgroups,这样我就可以将脚注直接放在每列下方。
右栏中的脚注会在页面左侧放置一个 \footnoterule。如果我在每栏中都有脚注,则有两个规则,彼此堆叠。
问题:我怎样才能彻底摆脱这些规则?重新定义 \footnoterule 似乎没有任何作用。
平均能量损失
\documentclass{memoir}
\usepackage{reledmac}
\usepackage[parledgroup]{reledpar}
\renewcommand{\thefootnoteB}{\alph{footnoteB}}% <-- differentiating leftside notes from right side notes. For some reason, using \footnoteA on the left side steps the count of \footnoteA on the right side, which I can’t allow!
\renewcommand{\footnoterule}{}% <-- Trying to get rid of footnote rules
\begin{document}
\begin{pairs}
\begin{Leftside}
\beginnumbering
\pstart
\begin{ledgroup}
Some left column text, with a footnote.\footnoteA{Left side footnote.}
\end{ledgroup}
\pend
\endnumbering
\end{Leftside}
\begin{Rightside}
\beginnumbering
\pstart
\begin{ledgroup}
Some right column text that is rather longer and has a footnote.\footnoteB{Why does the rule not appear above this note?}
\end{ledgroup}
\pend
\endnumbering
\end{Rightside}
\end{pairs}
\Columns
\end{document}
答案1
\renewcommand{\footnoterule}{}
只需在加载 reledmac 之前调用即可。
但是,这是 reledpar 的一个 bug。你不应该有两个脚注规则。请在 github 上打开一个问题(如果我没记错的话,还有另一个与并行 ledgroup 相关的 bug)。