I have an appendices problem that I hope you can help me solve. My school requires that the dissertation include a separate list of appendices that will appear after the list of tables. I am stuck, trying to creating this list of appendices (I have 7 at the moment).
As of now, all my appendices are listed in the main TOC.
Here is a MWE:
Code: Select all
\documentclass[12pt]{report}
\usepackage{hyperref}
\usepackage{appendix}
\begin{document}
\pagenumbering{roman}
\section*{Abstract} \addcontentsline{toc}{chapter}{Abstract} \newpage
\addcontentsline{toc}{chapter}{Contents} \tableofcontents \newpage
\addcontentsline{toc}{chapter}{List of Figures} \listoffigures \newpage
\addcontentsline{toc}{chapter}{List of Tables} \listoftables \newpage
\chapter*{List of Appendices} \addcontentsline{toc}{chapter}{List of Appendices} \newpage
\pagenumbering{arabic}
\chapter{Chapter 1}
\input{chapter1.tex}
\newpage
\chapter{Chapter 2}
\input{chapter2.tex}
\newpage
\appendix
\addappheadtotoc
\input{AppendixA.tex}
\newpage
\input{AppendixB.tex}
\end{document}
I appreciate your help in with puzzle.