I have been working for a long time on this and cannot figure it out so I thought I would try posting on here.
Right now I have my appendix style as this:
Code: Select all
\usepackage{appendix}
\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}}
}
Code: Select all
\appendix
\include{appendix1}
Code: Select all
\chapter{Flooding Test Graphs}
A Flooding Test Graphs
I want it to say:
APPENDIX A: Flooding Test Graphs
Can anyone help me with this problem?