I'm fairly new to LaTeX and need help with the number of figures in appendices in the table of figures. Currently, they are just numbered,
- Figure caption ............ p193
but I'd like them to appear as
A.1. Figure caption ......... p193
This is for my dissertation, and I've inherited some formatting code from previous graduate students. The MWE is:
\documentclass[12pt]{report}
\usepackage[demo]{graphicx}
\newcommand{\APPENDIX}[2]{%
\refstepcounter{chapter}%
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}: #2}%
\pagestyle{plain}%
\thispagestyle{plain}%
\singlespace%
\begin{center}%
\large
\textbf{Appendix #1: #2}\\%
\normalsize
\end{center}%
\doublespace%
\vspace{1em}}
\begin{document}
\tableofcontents
\listoffigures
\newpage
\appendix
\appendix{A}{TITLE OF APPENDIX}
\begin{figure}
\includegraphics{dummy}
\caption{dummy caption}
\end{figure}
\end{document}
Thanks in advance!

