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}
NEW: TikZ book now 40% off at Amazon.com for a short time.
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}
NEW: TikZ book now 40% off at Amazon.com for a short time.