![새로운 Theorem, Satz 등을 생성할 때 서브 카운터(Korollar, Beispiel(=예), Bemerkung(=비고)는 독일어입니다)가 재설정되지 않습니다.](https://rvso.com/image/449639/%EC%83%88%EB%A1%9C%EC%9A%B4%20Theorem%2C%20Satz%20%EB%93%B1%EC%9D%84%20%EC%83%9D%EC%84%B1%ED%95%A0%20%EB%95%8C%20%EC%84%9C%EB%B8%8C%20%EC%B9%B4%EC%9A%B4%ED%84%B0(Korollar%2C%20Beispiel(%3D%EC%98%88)%2C%20Bemerkung(%3D%EB%B9%84%EA%B3%A0)%EB%8A%94%20%EB%8F%85%EC%9D%BC%EC%96%B4%EC%9E%85%EB%8B%88%EB%8B%A4)%EA%B0%80%20%EC%9E%AC%EC%84%A4%EC%A0%95%EB%90%98%EC%A7%80%20%EC%95%8A%EC%8A%B5%EB%8B%88%EB%8B%A4..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로 계산하는 대신 첫 번째 satz의 일부인 첫 번째 결과의 연속으로 2.2가 됩니다. 카운터를 재설정하고 싶습니다. 내가 뭘 잘못한 걸까요?