Text Formattingmemoir | Suppress Page Numbers for long ToC

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Bram
Posts: 20
Joined: Sat Jul 14, 2012 12:54 pm

memoir | Suppress Page Numbers for long ToC

Post by Bram »

I would like to suppress page numbers for a long table of contents in the memoir class. The page number of the first ToC page is suppressed, but in the second page it appears again. How can I get rid of it?

Any help would be appreciated!

Code: Select all

\documentclass{memoir}
\begin{document}
\copypagestyle{chapter}{empty}

\tableofcontents*

\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\chapter{This is a chapter}
\end{document}

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

memoir | Suppress Page Numbers for long ToC

Post by cgnieder »

You could set the pagestyle to empty for the toc and set it to whatever style you're using elsewhere in the document afterwards:

Code: Select all

\pagestyle{empty}
\tableofcontents*
\cleardoublepage
\pagestyle{headings}
Regards
site moderator & package author
Post Reply