次のような環境があります:
\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 番目の系を 2.1 としてカウントする代わりに、最初の satz の一部である最初の系の継続として 2.2 になります。カウンターをリセットしたいのですが、どこが間違っているのでしょうか?