我对 ledmac 软件包有一些疑问。图中 \footnotemark 的脚注显示在另一个脚注的顶部,并且未包含在编号中(见下图)。
\documentclass{article}
\usepackage{ledmac}
\usepackage[demo]{graphicx} %just some text graphics
\foottwocolX{A}
\let\footnote\footnoteA
\begin{document}
Text.\footnote{footnode1} More text.\footnote{footnode2}
Even more text.\footnote{footnode3} And more.\footnote{footnode4}
\begin{figure}
\centering
\includegraphics[]{image1}
\caption[]{Caption of picture.\footnotemark}
\end{figure}
\footnotetext{footnote5}
\end{document}
有人知道如何解决这个问题吗?没有 ledmac 包,它在一列中运行良好,但我想在两列中使用脚注以节省页脚中的一些空间。
提前致谢!
答案1
的更新版本ledmac
是reledmac
。您可以使用以下命令指定列排列\arrangementX
:
\documentclass{article}
\usepackage{reledmac}
\arrangementX[A]{twocol}
\let\footnote\footnoteA
\begin{document}
Text.\footnote{footnode1} More text.\footnote{footnode2}
Even more text.\footnote{footnode3} And more.\footnote{footnode4}
\end{document}
非reledmac
替代
如果你只想要多列脚注,并且不使用其他reledmac
功能,使用dblfnote
包裹,不需要重写命令:
\documentclass{article}
\usepackage{dblfnote}
\usepackage{lipsum}
\begin{document}
Lipsum\footnote{\lipsum[1]} \lipsum[1]
Lipsum\footnote{\lipsum[2]} \lipsum[3]
Lipsum\footnote{\lipsum[2-4]} \lipsum[2]
Lipsum\footnote{\lipsum[2]} \lipsum[1]
\begin{figure}
\centering
% \includegraphics[]{test}
\caption[]{Caption of picture.\footnotemark}
\end{figure}
\footnotetext{footnote5}
\end{document}