LaTeX Solving LaTeX Numbering Problems in Projects

  • Thread starter Thread starter latentcorpse
  • Start date Start date
  • Tags Tags
    Latex
AI Thread Summary
The discussion revolves around formatting theorem and definition numbering in a LaTeX document. The user is utilizing a template to streamline their project, but is concerned about the sequential numbering of definitions across sections. Currently, definitions are numbered sequentially (e.g., Definition 1, Definition 2), which could lead to high numbers in later sections (e.g., Definition 80). The user seeks a more structured format, such as Definition 1.1.1 for definitions in section 1.1. A suggestion was made to use the command \numberwithin{equation}{section} to manage numbering, which successfully organized equation numbering but did not affect definitions. The user is looking for further recommendations to achieve the desired definition numbering format.
latentcorpse
Messages
1,411
Reaction score
0
Hi. I'm writing a project and am using a template latex document with the idea being that i don't have to worry about the preamble etc and also so that includes important stuff automatically like university and degree name etc.

anyway, in my preamble i have:

\newtheorem{lemma}{Lemma}
\newtheorem{theorem}[lemma]{Theorem}
\newtheorem{corollary}[lemma]{Corollary}
\theoremstyle{definition}
\newtheorem{definition}[lemma]{Definition}
\theoremstyle{remark}
\newtheorem{remark}[lemma]{Remark}
\newtheorem{example}[lemma]{Example}

and i have been using the definition environment of this and it's working fine except for the numbering. for example in section 1.1 of my document i have definition 1, definition 2 and definition 3. then i go to section 1.2 and get definition 4. this is going to be a long project so by the time i finish i'll be getting things like definition 80!

i think it would look more professional (tell me if you disagree though!) if i could get the definitions in section 1.1 to be definition 1.1.1, definition 1.1.2 and deifnition 1.1.3 and then in section 1.2 have definition 1.2.1

does anybody know how to do this?

all help appreciated
thanks
 
Physics news on Phys.org
Try this: \numberwithin{equation}{section} in your preamble. Not sure whether that will work for theorems, though...
 
hey. thanks for the reply. it works for tidying up the numbering of my equations but the definitions are still unchanged. any other recommendations?

cheers.
 

Similar threads

Replies
1
Views
2K
Replies
3
Views
3K
Replies
2
Views
2K
Replies
4
Views
3K
Replies
2
Views
4K
Back
Top