使用 \newtheorem 计算错误

使用 \newtheorem 计算错误

通过使用\newtheorem,乳胶没有按照正确的顺序对定理进行编号。

使用的代码是

\newtheorem{theo.a}{Proposition}
\begin{theo.a}
this is the proposition.
\end{theo.a}

变成

\newtheorem{theo.a}{Proposition}[2]
\begin{theo.a}
this is the proposition.
\end{theo.a}

也会导致错误的输出(命题 1 被命题 .1 取代)

输出

答案1

请始终发布完整的小文档,而不是像大多数乳胶计数器构造那样无法使用的片段,

\newtheorem{theo.a}{Proposition}

定义theo.a为在打印之前增加计数器,因此如果你想从第 42 号提案开始,那么你只需要

\setcounter{theo.a}{41}
\begin{theo.a}
this is the proposition.
\end{theo.a}

相关内容