Text Formatting ⇒ Roman chapter numbering in the beginning of a report
Roman chapter numbering in the beginning of a report
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??
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
Roman chapter numbering in the beginning of a report

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}