von Xenara » Fr 26. Aug 2011, 22:26
Das ist wohl Standardverhalten bei memoir. Die Erklärung und Lösung dazu findet sich in der memoir-Doku auf Seite 153:
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.
(Gefunden hab ichs in der Doku nur, weil ich auf gut Glück nach \tableofcontents gesucht habe.)
\documentclass[a4paper]{memoir}
\begin{document}
\tableofcontents*
\chapter{Test}
Das ist nur ein Test
\end{document}
Das ist wohl Standardverhalten bei memoir. Die Erklärung und Lösung dazu findet sich in der memoir-Doku auf Seite 153:
[quote]The commands \tableofcontents, \listoffigures and \listoftables typeset, repectively, the Table of Contents (ToC), List of Figures (LoF) and List of Tables (LoT).
[color=red]In memoir, unlike the standard classes, the unstarred versions add their respective titles to the ToC. [/color] The starred versions act like the standard classes’ unstarred versions as they don’t add their titles to the ToC.[/quote]
(Gefunden hab ichs in der Doku nur, weil ich auf gut Glück nach \tableofcontents gesucht habe.)
[code]
\documentclass[a4paper]{memoir}
\begin{document}
\tableofcontents*
\chapter{Test}
Das ist nur ein Test
\end{document}
[/code]