On Thu, Oct 10, 2002 at 01:49:22PM -0400, Steve Litt wrote:
> > \let\oldappendix=\appendix
> > \renewcommand{\appendix}{%
> > \oldappendix%
> > \renewcommand{\thechapter}{\arabic{chapter}}}
>
> Dekel --
>
> Does the \renewcommand{\thechapter}{\arabic{chapter}} remain in scope only
> indide the braces, or does it affect any other chapter environments following
> the appendix (not that there should be any chapter environments after the
> appendix, but...)
No, after \appendix you do use chapters, but they do generate by default
Appendix A, Appendix B etc. instead of Chapter 1, Chapter 2 etc.
The code above changes the former to Appendix 1, Appendix 2 etc.