Hi all.
I'm writing in the report-environment. I want a table of content like this:
I Preface.......1
II Acronym.......2
1 Some chapter..3
2 Some other....4
A Appendix one..5
B Appendix two..6
Right now, I have managed to create this TOC:
1 Some chapter..3
2 Some other....4
A Appendix one..5
B Appendix two..6
by using the \appendix-command at the end (almost) in the preamble. How do I get the roman letters??
Text Formatting ⇒ Roman chapter numbering in the beginning of a report
Roman chapter numbering in the beginning of a report
Last edited by the_julle on Thu Jun 09, 2011 2:10 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Roman chapter numbering in the beginning of a report
This is how it's done

Code: Select all
\renewcommand{\thechapter}{\Roman{chapter}}
\include{tex/preface}
\renewcommand{\thechapter}{\arabic{chapter}}
\setcounter{chapter}{0}
\include{tex/chap}
\include{tex/nextchap}
\appendix
\include{tex/appendix}