Minimalbeispiel:
\documentclass[a4paper]{memoir} \begin{document} \tableofcontents \chapter{Test} Das ist nur ein Test \end{document}
\documentclass[a4paper]{memoir} \begin{document} \tableofcontents \chapter{Test} Das ist nur ein Test \end{document}
(Gefunden hab ichs in der Doku nur, weil ich auf gut Glück nach \tableofcontents gesucht habe.)The commands \tableofcontents, \listoffigures and \listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT).
In memoir, unlike the standard classes, the unstarred versions add their respective titles to the ToC. The starred versions act like the standard classes’ unstarred versions as they don’t add their titles to the ToC.
\documentclass[a4paper]{memoir} \begin{document} \tableofcontents* \chapter{Test} Das ist nur ein Test \end{document}