如何在双列文档中使用 reledmac(使用 ltxgrid)

如何在双列文档中使用 reledmac(使用 ltxgrid)

reledmac我正在尝试使用来自 revtex 的包在一个双列文档中排版脚注ltxgrid

在下面的 MWE 中,这两个包似乎配合得很好,但事实是没有出现脚注。看这个:

\documentclass{scrbook}

\RequirePackage{polyglossia}
\setmainlanguage{latin}

\RequirePackage[series={T}]{reledmac}
\RequirePackage{ltxgrid}

\arrangementX[T]{twocol}
\let\footnote\footnoteT % Toggle this line to see the footnotes as 
            % ltxgrid would typeset them without reledmac!

\usepackage{lipsum}

\begin{document}

\mainmatter 
\chapter{Some Chapter Headline}

\twocolumngrid

\lipsum*[3]\footnote{Fn 1 \lipsum[3]}

\lipsum*[3]\footnote{Fn 2}

\lipsum*[3]\footnote{Fn 3}

\lipsum*[3]\footnote{Fn 4}

\lipsum*[5]\footnote{Fn 5}

\onecolumngrid
\end{document}

enter image description here

似乎节省了脚注的垂直空间,但脚注寄存器未打印,而是列垂直延伸到整个页面。(您可以通过注释掉行来进行比较,\let\footnote\footnoteT在这种情况下脚注会出现,但按排版方式显示ltxgrid,这不是我的目标。)

reledmac有没有什么方法可以通过修补 的某个部分来在正确的位置“触发” 的脚注输出例程ltxgrid?或者您有其他想法吗?

附录:据我所知,该问题并非特定于使用\twocolumngrid。它也会出现于\onecolumngrid

相关内容