我有一个带有许多脚注的文档,如下所示:
This is some text\footnote{This is a footnote}.
This is some more text\footnote{This is another footnote}.
This is yet another text\footnote{This is some more footnote text}.
这将产生编号为 1、2、3 等的脚注。
我需要手动将脚注编号重置回 1。例如:
This is some text\footnote{This is a footnote}.
This is some more text\footnote{This is another footnote}.
\resetfootnote
This is yet another text\footnote{This is some more footnote text}.
这应该会产生编号为 1、2,然后再次为 1 的脚注。
我如何手动重置脚注计数器?
答案1
答案2
这乳胶解决方案是
\setcounter{footnote}{0}
在评论中我们发现这也适用于语境修改语法后:
\setupcounter[footnote][0]