How can I generate a list of appendices with LaTeX, seperate from table of contents (toc)
- by None
LaTeX' appendix environment formats sections differently and uses a different enumeration in the table of contents:
\begin{appendix}
\section{superuser}
\dots{}
....
Shows up as
A superuser 11
in the \tableofcontents.
Unfortunately, I have to use a different style: the appendix is not to show up in the table of contents, but in a seperate listing right before the appendix.
I see the following options to solve this:
suppress output in tableofcontents and somehow recreate the part on a different page
generate a custom listing of specified / the following section
manually create a list with the same formatting of the tableofcontents
I use scrartcl as document class.
PS: appedix / appendices is not a tag yet