Text FormattingRoman chapter numbering in the beginning of a report

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
the_julle
Posts: 6
Joined: Thu Apr 28, 2011 1:46 pm

Roman chapter numbering in the beginning of a report

Post by the_julle »

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??
Last edited by the_julle on Thu Jun 09, 2011 2:10 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

the_julle
Posts: 6
Joined: Thu Apr 28, 2011 1:46 pm

Roman chapter numbering in the beginning of a report

Post by the_julle »

This is how it's done :D

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}
Post Reply