![建立新定理、Satz 等時,子計數器(Korollar、Beispiel(=範例)、Bemerkung(=備註)是德語)不會重置](https://rvso.com/image/449639/%E5%BB%BA%E7%AB%8B%E6%96%B0%E5%AE%9A%E7%90%86%E3%80%81Satz%20%E7%AD%89%E6%99%82%EF%BC%8C%E5%AD%90%E8%A8%88%E6%95%B8%E5%99%A8%EF%BC%88Korollar%E3%80%81Beispiel%EF%BC%88%3D%E7%AF%84%E4%BE%8B%EF%BC%89%E3%80%81Bemerkung%EF%BC%88%3D%E5%82%99%E8%A8%BB%EF%BC%89%E6%98%AF%E5%BE%B7%E8%AA%9E%EF%BC%89%E4%B8%8D%E6%9C%83%E9%87%8D%E7%BD%AE.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 作為第一個推論的延續,而第一個推論是第一個 satz 的一部分。我想讓它重置計數器。我做錯了什麼?