使用 \enumsentence 重置编号

使用 \enumsentence 重置编号

我在用\枚举句子\eenumsentence用于编号示例。我想知道如果我想重置示例的计数器,需要哪些命令?

例如,我有一个例子,它的计数器是 (63),但我希望它从 (1) 开始。非常感谢!

答案1

句子宏使用一个称为 的计数器enums。您可以将此计数器设置为所需的数字。请注意,您需要将其设置为所需的数字减一,因为计数器会在新句子开始时增加。

梅威瑟:

\documentclass{article}
\usepackage{lingmacros}
\begin{document}
\setcounter{enums}{62}
\enumsentence{This is the first sentence}
\eenumsentence{\item this is a second sentence
\item this is a third sentence}
\setcounter{enums}{0}
\enumsentence{This is the first sentence}
\eenumsentence{\item this is a second sentence
\item this is a third sentence}
\end{document}

结果:

在此处输入图片描述

相关内容