Milo Wielondek
Milo Wielondek

Reputation: 4362

Alphabetical ToC counter

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

Upvotes: 1

Views: 3117

Answers (1)

Paul Rubel
Paul Rubel

Reputation: 27222

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.)

Upvotes: 2

Related Questions