I am currently writing lots of latex code for uni notes in a maths class and have run into a problem using the theorem, ntheorem, amsthm packages. I've defined
theorem
, proof
, lemma
etc environments at the beginning of my document in this format.
Code: Select all
\newtheorem{theoreme}{Théorème}[subsection]
Theorem 2.2.1
Proof 2.2.2
Theorem 2.2.3
Proof 2.2.4
Lemma 2.2.5
etc...
instead of
Theorem 2.2.1
Proof 2.2.1
Theorem 2.2.1
Proof 2.2.2
Lemma 2.2.1
Thanks for any help
