When I write Theorems, Lemmas, Definitions, etc. the same counter is used for all of them, it then looks like
Theorem 1
Lemma 2
Theorem 3
Definition 4
This makes no sense, I need different counters as
Theorem 1
Lemma 1
Theorem 2
Definition 1
The problem seems to be in all classes that support Theorems etc.
My workaround is to export to .tex and then manually change
Code: Select all
\theoremstyle{plain}
\newtheorem{thm}{\protect\theoremname}
\theoremstyle{definition}
\newtheorem{defn}[thm]{\protect\definitionname}
\theoremstyle{remark}
\newtheorem*{rem*}{\protect\remarkname}
\theoremstyle{plain}
\newtheorem{lem}[thm]{\protect\lemmaname}
Code: Select all
\theoremstyle{plain}
\newtheorem{thm}{\protect\theoremname}
\theoremstyle{definition}
\newtheorem{defn}{\protect\definitionname}
\theoremstyle{remark}
\newtheorem*{rem*}{\protect\remarkname}
\theoremstyle{plain}
\newtheorem{lem}{\protect\lemmaname}
Thanks