General ⇒ \numberwithin and the llncs style
\numberwithin and the llncs style
I would like to know out to change the numbering of my equations, in a way such that
it appears the number of the chapter, the number of the theorem and the number of the equation.
Example A.1.1 (Chapter->Appendix A, theorem nº1, equation nº1)
Example A.2.1 (Chapter->Appendix A, theorem nº2, equation nº1)
I'm using the llncs style, and I only know how to put the number depending on the chapter. ex: A.1.
Does anyone know how can I do this?
Thank you,
Cátia
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
\numberwithin and the llncs style
welcome to the LaTeX Community board!
You could redefine \theequation like this:
Code: Select all
\renewcommand*\theequation{\thechapter.\thetheorem.\arabic{equation}}
Stefan