與 ledgroups 相關的腳註規則

與 ledgroups 相關的腳註規則

我正在使用 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 的一個錯誤。你不應該有兩個腳註規則。請在 github 上提出問題(如果我沒記錯的話,並行 ledgroup 還存在另一個 bug)。

相關內容