文本中不能同时有上标脚注,并且脚注计数器不能在每个章节循环回到 1

文本中不能同时有上标脚注,并且脚注计数器不能在每个章节循环回到 1

我希望我的脚注在文本中上标,并在我的书中从 1 到 n 连续编号,而不是每章都从 1 重新开始。在下面的 MWE 中,如果我注释掉 \chngcntr 和 \counterwithout 行,文本中的脚注将被上标,但每章都会从 1 重新编号。如果我保持这两行处于活动状态,那么脚注就不会在文本中上标,但它们是连续的(从 1 到 4)。对于 LaTeX 发行版 texlive 2014、texlive 2017 和 TeX/texbin 来说,情况确实如此。

平均能量损失

\documentclass{cambridge6A}
\usepackage{footnote}
\usepackage{chngcntr}
\counterwithout{footnote}{chapter} 


\begin{document}

\chapter{Paragraph 1}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\footnote{This is foornote 1.} get egestas purus viverra accumsan in nisl nisi. \footnote{This is foornote 2.}

\chapter{Paragraph 2}

Commodo nulla facilisi nullam vehicula ipsum a arcu cursus.\footnote{This is foornote 3.} Eget egestas purus viverra accumsan in nisl nisi.\footnote{This is foornote 4.}

\end{document}

相关内容