![Subcounter (Korollar, Beispiel(=Пример), Bemerkung(=Примечание) по-немецки) не сбрасывается при создании новой теоремы, задания и т. д.](https://rvso.com/image/449639/Subcounter%20(Korollar%2C%20Beispiel(%3D%D0%9F%D1%80%D0%B8%D0%BC%D0%B5%D1%80)%2C%20Bemerkung(%3D%D0%9F%D1%80%D0%B8%D0%BC%D0%B5%D1%87%D0%B0%D0%BD%D0%B8%D0%B5)%20%D0%BF%D0%BE-%D0%BD%D0%B5%D0%BC%D0%B5%D1%86%D0%BA%D0%B8)%20%D0%BD%D0%B5%20%D1%81%D0%B1%D1%80%D0%B0%D1%81%D1%8B%D0%B2%D0%B0%D0%B5%D1%82%D1%81%D1%8F%20%D0%BF%D1%80%D0%B8%20%D1%81%D0%BE%D0%B7%D0%B4%D0%B0%D0%BD%D0%B8%D0%B8%20%D0%BD%D0%BE%D0%B2%D0%BE%D0%B9%20%D1%82%D0%B5%D0%BE%D1%80%D0%B5%D0%BC%D1%8B%2C%20%D0%B7%D0%B0%D0%B4%D0%B0%D0%BD%D0%B8%D1%8F%20%D0%B8%20%D1%82.%20%D0%B4..png)
У меня есть следующие среды:
\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 как продолжение первого следствия, которое является частью первого сатца. Я хочу, чтобы оно сбросило счетчик. Что я делаю не так?