I am trying to put a separate list of appendices into a document, but so far I am not particularly satisfied with the results and hope someone here will be able to help me. I have found many threads dealing with this (e.g. http://www.latex-community.org/forum/vi ... 47&t=10764 or http://www.latex-community.org/forum/vi ... f=5&t=2349). Many of them suggest essentially the same thing, i.e.
Code: Select all
\documentclass{book}
\newcommand\listappendixname{List of Appendices}
\newcommand\appcaption[1]{%
\addcontentsline{app}{chapter}{#1}
}
\makeatletter
\newcommand\listofappendices{%
\chapter*{\listappendixname}\@starttoc{app}
}
\makeatother
\begin{document}
\tableofcontents
\listofappendices
\chapter{Chapter one}
\chapter{Chapter two}
\appendix
\chapter{Appendix one}\appcaption{Appendix one}
...(contents of appendix one)...
\chapter{Appendix two}\appcaption{Appendix two}
...(contents of appendix two)...
\end{document}
Code: Select all
-------------------------------------
| |
| List of Appendices |
| |
| Title of Appendix A |
| Title of Appendix B |
| ... |
| |
| |
| |
| |
-------------------------------------
Code: Select all
-------------------------------------
| |
| List of Appendices |
| |
| A Title of Appendix A |
| B Title of Appendix B |
| ... |
| |
| |
| |
| |
-------------------------------------
Any help would be greatly appreciated.
nvx