| Gerry Wolff 2005-06-08, 4:03 pm |
|
<moseid@stud.ntnu.no> wrote in message
news:1118239203.686661.65980@g47g2000cwa.googlegroups.com...
> Hi
>
> I am using \book style in Latex and I have a problem when I want to add
> the numbering in the TOC in the appendix to A's and B's instead of
> numbering from the point where I start with \appendix with normal
> numbers. I use chapters for the appendices. How do I change the
> numbering to letters instead of numbers?
>
I am also producing a book and have managed to get A's and B's in the TOC.
These are the things that may do the trick:
\documentclass[oneside,openright,letterp
aper,10pt]{book}
....
\usepackage{sectsty}
....
\frontmatter
....
\tableofcontents
....
\appendix
....
Each appendix starts like this:
\chapter[Finding Good Matches]{Finding Good Matches Between Two Sequences of
Symbols}\label{matching_appendix}
I can't think of anything else.
Gerry
|