重复的脚注

重复的脚注

能否让脚注在同一页不重复并采用旧的编号?

换句话说,即使脚注标签相同,脚注的编号也可以相同。

这是我的 MWE。

\documentclass[a4paper,10pt]{book}   
\usepackage[para]{footmisc}    % to have footnotes in a line
\begin{document}
This is my test document which has these four footnotes. 
Footnote1\footnote{one}, 
footnote2\footnote{two}, 
footnote3\footnote{three}
and last footnote\footnote{one} to show that fourth one repeats.
\end{document}

问题出现在上面的例子中,我希望最后一个脚注有 1 而不是 4。

答案1

fixfoot包定义了一个命令\DeclareFixedFootnote,您可以按如下方式使用它:

\documentclass[a4paper,10pt]{book}   
\usepackage[para]{footmisc}    % to have footnotes in a line
\usepackage{fixfoot}
\DeclareFixedFootnote{\myfnone}{one}
\begin{document}
This is my test document which has these four footnotes. 
Footnote1\myfnone{}, 
footnote2\footnote{two}, 
footnote3\footnote{three}
and last footnote\myfnone{} to show that fourth one repeats.
\end{document}

该包将处理在后续页面上第二次使用的情况。

相关内容