El subcontador (Korollar, Beispiel(=Ejemplo), Bemerkung(=Observación) es alemán) no se reinicia al crear un nuevo teorema, Satz, etc.

El subcontador (Korollar, Beispiel(=Ejemplo), Bemerkung(=Observación) es alemán) no se reinicia al crear un nuevo teorema, Satz, etc.

Tengo estos entornos:

\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}

Entonces, por ejemplo, si hago esto

%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}

En lugar de contar el segundo corolario como 2.1, pasa a 2.2 como una continuación del primer corolario que es parte del primer satz. Quiero que reinicie el contador. ¿Qué hago mal?

información relacionada