GeneralTable of content Problems

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
S_David
Posts: 45
Joined: Tue Jul 07, 2009 4:16 am

Table of content Problems

Post by S_David »

Hello,

When I execute the following code:

Code: Select all

\documentclass[a4paper,12pt,openany]{memoir}
\begin{document}
\tableofcontents
\end{document}
there is an entry called "contents" and the page number of contents. How can I remove this entry from the table of contents?

Thanks in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Table of content Problems

Post by gmedina »

Hi,

use the starred version:

Code: Select all

\documentclass[a4paper,12pt,openany]{memoir}
\begin{document}
\tableofcontents*
\end{document}
Basic facts like this one can be found in the documentation for the memoir class.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply