My appendix style looks like this:
\newboolean{@@inappendix}
\newcommand{\@@appendixname}{Appendices}
\renewcommand{\appendix}{\par
\setboolean{@@inappendix}{true}
\setcounter{chapter}{0}%
\setcounter{section}{0}%
% \coversheet{\uppercase\expandafter{\@@appendixname}} % REMOVE COVERSHEET
\renewcommand{\@chapapp}{\appendixname}%
\renewcommand{\thechapter}{\Alph{chapter}}%
Then in the main tex file I have:
\appendix
\include{appendix1}
In the appendix1 tex file I have:
\chapter{Flooding Test Graphs}
The actual appendix page title looks fine, but the TOC looks like this:
A FLOODING TEST GRAPHS
I would like it to say:
APPENDIX A FLOODING TEST GRAPHS
There are similar questions and answers posted, but I still can't seems to get it to work.
On the last line of the style file I tried:
\renewcommand{\thechapter}{APPENDIX\Alph{chapter}}
This just writes "APPENDIX" over "A FLOODING TEST GRAPHS"

\renewcommand{\appendix}{\par ... \Alph{chapter}}seems to be missing a}in your example... is that in your code too? – henrique Feb 17 '12 at 12:18