如何手动重置 ConTeXt 中的脚注编号?

如何手动重置 ConTeXt 中的脚注编号?

我有一个带有许多脚注的文档,如下所示:

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

\starttext

This is some text\footnote{This is a footnote}.
This is some more text\footnote{This is another footnote}.
\resetcounter[footnote]
This is yet another text\footnote{This is some more footnote text}.

\stoptext

在此处输入图片描述

答案2

乳胶解决方案是

\setcounter{footnote}{0} 

在评论中我们发现这也适用于语境修改语法后:

\setupcounter[footnote][0]

相关内容