连续脚注编号

连续脚注编号

我希望脚注编号能够延续到页面和章节。在我的文档中,它每章都会重置。我正在使用报告文档类。

答案1

使用\counterwithout

\documentclass{report}

\counterwithout{footnote}{chapter}

\begin{document}

\chapter{foo}

Some text.\footnote{The first footnote.}

\chapter{bar}

Some text.\footnote{The second footnote.}

\end{document}

独立于章节的连续编号

答案2

\counterwithout{footnote}{chapter}在每个章节中提供单独的脚注编号序列,显然仅当章节不包含每个章节都有不同的脚注序列(使用字母而不是数字)且没有被命令这样做时才提供。

相关内容