Henrik Nilsen Omma wrote:
1. How can I do appendix style numbering?
I'd like to number the appendix pages as A-1, A-2, B-1, B-2, etc. (I've
worked out that I can use ERT: \setcounter{page}{1} and found a
description opf how to do roman numerals for the TOC, but how do you
prefix the number with an 'A-'?)
write into the preamble
\renewcommand\appendix{\par
\setcounter{chapter}{0}%
\setcounter{section}{0}%
[EMAIL PROTECTED]
[EMAIL PROTECTED]@chapter}%
\gdef\thesection{\thechapter-\arabic{section}}%
}
Herbert