views:

15

answers:

1

How do I change the counter in ToC to letters (A, B, C)?

To illustrate:

from

1. Section
2. Section
3. Section

to

A. Section
B. Section
C. Section

Thanks

A: 

You want something like this, before you call \tableofcontents

\renewcommand{\thechapter} {\Alph{chapter}}

That says for chapter numbering use Alph(abetic) symbols for representing the chapter counter. You'll need to find the right counter if you want to change more than just chapter headings, (\thesection is for sections for example.)

Paul Rubel
Just what I was looking for!
mewoshh