[Tex/LaTex] Removing page number from ToC

header-footerpage-numberingtable of contents

How to remove the page number from the table of contents page?

Best Answer

See this FAQ answer. In the simplest case you just use \thispagestyle{empty} after \tableofcontents. However there are several complications, so see the linked answer.

One problem not discussed in the FAQ is if the table of contents is longer than 1 page. For this situation you can write \addtocontents{toc}{\protect\thispagestyle{empty}} somewhere before your first chapter.