Hi marcdein,
I think you have declared your theorems as follows:
Code: Select all
\newtheorem{thm}{Theorem}[section]
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{propo}[thm]{Proposition}
In this case only the
\section
resets the theorem-counter.
In your example there was one theorem (Lemma, Theorem or Proposition) in the chapter before. Therefore the enumeration starts with 2.
To get
Lemma D.1,
Theorem D.2,
Proposition D.3 and so on you only have to replace
[section]
by
[chapter]
:
Code: Select all
\newtheorem{thm}{Theorem}[chapter]
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{propo}[thm]{Proposition}
To get
Lemma D.1.1,
Theorem D.1.2,
Proposition D.1.3 and so on you modify the counters after the
\chapter
but before the theorem:
Code: Select all
\setcounter{section}{1}
\setcounter{theorem}{0}
You have to set the section-counter to 1 for D.
1.1 and then reset the theorem-counter to 0 so that the next theorem will increase it to 1. Be careful the first section in this chapter will start with the Number 2, or you have to set the counter to 0 again!!!
I recommend you the first alternative.
Best regards
Gadgetto