我怎样才能恢复操作\numberwithin{mycounter}{section}
以便mycounter
不会用新部分重置?
例子:(这不是我的情况,但这很容易理解。)我想equation
在文档的第一部分中对某个部分进行编号,因此我使用\numberwithin{equation}{section}
。但在下一部分中直接对其进行编号。例如
Section 1
equation (1.1)
equation (1.2)
Section 2
equation (2.1)
equation (2.2)
equation (2.3)
\SomeCommandToPutHere{equation}
Section 3
equation (1)
equation (2)
equation (3)
答案1
这个包的chngcntr
作用正是:
\counterwithin{equation}{section}
\counterwithout{equation}{section}