General ⇒ Continue Arabic Numbering in Appendix
-
- Posts: 4
- Joined: Tue Oct 11, 2011 4:27 pm
Continue Arabic Numbering in Appendix
I need to renumber appendices to arabic and have equations continue main body numbering. I am in article class. What is the best way to do this?
Gratefully in advance.
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Continue Arabic Numbering in Appendix
\appendix
command?If you just want the "appendix" to start numbering again from one, use
\setcounter{section}{0}
and omit the \appendix command.You can also define your equations to have numbers like (1.2) instead of just (2) by issuing
\numberwithin{equation}{section}
(you'll need the amsmath package, I think).