General ⇒ Page numbering & TOC
Page numbering & TOC
Back for more beginner questions, if I may.
For my thesis I need my Annexes to be numbered A1, A2, A3,.....
How do I get the "A" to work. I also need this numbering in the TOC.
Thank you in advance for any assistance, it is always greatly appreciated.
Cheers
Ivan
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
Page numbering & TOC
try
Code: Select all
\renewcommand*\thechapter{A\arabic{chapter}}
Stefan
Re: Page numbering & TOC
I mean the actual page numbering, not the section or chapter numbering.
Hope you can still help
Ivan
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Page numbering & TOC
Code: Select all
\renewcommand*\thepage{A\arabic{page}}
\setcounter{page}{1}
Stefan
Re: Page numbering & TOC
Cheers
Ivan