eledmac 问题:“行扩展”和熟悉的脚注之间的空格

eledmac 问题:“行扩展”和熟悉的脚注之间的空格

使用eledmac,我怎样才能增加两列中熟悉的脚注之间的空间并减少脚注内的“行距”?

在图像中,脚注 6、23 和 33 看起来很奇怪(同一脚注的行间距离比脚注之间的距离更大)

在此处输入图片描述

bhooknoteX编辑:(1)我按照建议添加了梅厄尔,但它似乎不起作用。(2)我希望这能起到作用:

\documentclass[a4paper,12pt]{article}

\setlength{\parskip}{.4em}
\linespread{1.1}

\usepackage{tabto}

\usepackage{eledmac}
\foottwocolX{A}
\renewcommand*{\footfootmarkA}{\arabic{footnoteA}.\tabto{0.45cm}}
\hangindentX[A]{0.45cm}
\footparagraphX{B}
\renewcommand*{\bodyfootmarkB}{\textsuperscript{\alph{footnoteB}}}
\renewcommand*{\footfootmarkB}{\textbf{\alph{footnoteB}}. }
\prenotesX{5mm}
\afterruleX[A]{2mm}

% It seems that this line does nothing:
\bhooknoteX[A]{\setlength{\parskip}{.4em}\linespread{.8}}

\usepackage{perpage}
\MakePerPage{footnoteA}

\begin{document}

some random text some random text some random text.\footnoteA{some random
text some random text some random text.}\footnoteB{some random text some
random text some random text.}some random text some random text some random
text.\footnoteA{some random text some random text some random 
text.}\footnoteB{some random text some random text some random text.}some 
random text some random text some random text.\footnoteA{some random text some
random text some random text.}\footnoteB{some random text some random 
text some random text.}some random text some random text some random 
text.\footnoteA{some random text some random text some random 
text.}\footnoteB{some random text some random text some random text.}some 
random text some random text some random text.\footnoteA{some random 
text some random text some random text.}\footnoteB{some random text 
some random text some random text.}

some random text some random text some random text.\footnoteA{some random
text some random text some random text.}\footnoteB{some random text some
random text some random text.}some random text some random text some random
text.\footnoteA{some random text some random text some random 
text.}\footnoteB{some random text some random text some random text.}some 
random text some random text some random text.\footnoteA{some random text some
random text some random text.}\footnoteB{some random text some random 
text some random text.}some random text some random text some random 
text.\footnoteA{some random text some random text some random 
text.}\footnoteB{some random text some random text some random text.}some 
random text some random text some random text.\footnoteA{some random 
text some random text some random text.}\footnoteB{some random text 
some random text some random text.}

\end{document}

在此处输入图片描述

答案1

您的问题是由 tabto 命令引起的。我不知道它到底做了什么,但查看它的代码,我可以理解它在双列模式下会产生行扩展问题。

只需替换

\renewcommand*{\footfootmarkA}{\arabic{footnoteA}.\tabto{0.45cm}}

经过

\renewcommand*{\footfootmarkA}{\hbox to 0.45cm{\arabic{footnoteA}.\hfill}}

相关内容