在创建新的定理、Satz 等时,子计数器(Korollar、Beispiel(=示例)、Bemerkung(=备注)是德语)不会重置

在创建新的定理、Satz 等时,子计数器(Korollar、Beispiel(=示例)、Bemerkung(=备注)是德语)不会重置

我有这个环境:

\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\theoremstyle{remark}
\newtheorem{bemerkungdefinition}{Bemerkung}[definition]
\newtheorem{beispieldefinition}[bemerkungdefinition]{Beispiel}

\theoremstyle{plain}
\newtheorem{satz}[definition]{Satz}
\newtheorem{korollarsatz}{Korollar}[satz]
\theoremstyle{remark}
\newtheorem{beispielsatz}[korollarsatz]{Beispiel}
\newtheorem{bemerkungsatz}[korollarsatz]{Bemerkung}

\theoremstyle{plain}
\newtheorem{theorem}[definition]{Theorem}
\newtheorem{korollartheorem}{Korollar}[theorem]
\theoremstyle{remark}
\newtheorem{beispieltheorem}[korollartheorem]{Beispiel}
\newtheorem{bemerkungtheorem}[korollartheorem]{Bemerkung}

\theoremstyle{plain}
\newtheorem{proposition}[definition]{Proposition}
\newtheorem{korollarproposition}{Korollar}[proposition]
\theoremstyle{remark}
\newtheorem{beispielproposition}[korollarproposition]{Beispiel}
\newtheorem{bemerkungproposition}[korollarproposition]{Bemerkung}


\theoremstyle{plain}
\newtheorem{lemma}[definition]{Lemma}
\newtheorem{korollarlemma}{Korollar}[lemma]
\theoremstyle{remark}
\newtheorem{beispiellemma}[korollarlemma]{Beispiel}
\newtheorem{bemerkunglemma}[korollarlemma]{Bemerkung}

例如如果我这样做

%first satz
\begin{satz}
    satz1
\end{satz}
\begin{korollarsatz}
    korollar1.1
\end{korollarsatz}
%second satz
\begin{satz}
    satz2
\end{satz}
\begin{korollarsatz}
    korollar2.1
\end{korollarsatz}

它不将第二个推论算作 2.1,而是将 2.2 作为第一个推论的延续,而第一个推论是第一个 satz 的一部分。我希望它重置计数器。我做错了什么?

相关内容