I have some problem with my ToC. The problem is that I don't wont page numbers on ToC pages. I used this.
Code: Select all
\tableofcontents
\thispagestyle{empty}
Code: Select all
\tableofcontents
\thispagestyle{empty}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\pagestyle{empty}
\tableofcontents
\pagestyle{plain}
Code: Select all
\tableofcontents
\addtocontents{toc}{
\protect\thispagestyle{empty}}
\thispagestyle{empty}
\newpage
Probably because you're using a class whereAmor wrote:It didn't help
\tableofcontents
issues a page style implicitly. A Code: Select all
\documentclass{article}
\begin{document}
\pagestyle{empty}
\tableofcontents
\clearpage
\pagestyle{plain}
\section{Test}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis