When I include a table of contents, that page will be number 1 and it will start counting from there. Is there a way to remove that page number and in fact make the page-counting start at the next page?
Just to clarify, right now it's like this:
Page 1 - Table of contents
Page 2 - Introduction
Page 3 - Blabla
And I want to have this;
Table of contents
Page 1 - Introduction
Page 2 - Blabla
General ⇒ Removing the page number from table of contents
NEW: TikZ book now 40% off at Amazon.com for a short time.
Removing the page number from table of contents
I assume that you are using the article class and that you want a title page and an unnumbered TOC page. The following code may work:
Code: Select all
\documentclass[titlepage]{article}
\begin{document}
% Titlepage
\author{Author's name}
\title{Title}
\date{\today}
\maketitle
% TOC
\thispagestyle{empty}
\setcounter{page}{0}
\tableofcontents
\clearpage
% Text
\section{Introduction}
Blah blah
\section{Other section}
Blah blah
\end{document}
Re: Removing the page number from table of contents
Thanks a ton, that did the trick 
The only thing was that I had to put the \thispagestyle{empty} command below \tableofcontents, otherwise it didn't work.

The only thing was that I had to put the \thispagestyle{empty} command below \tableofcontents, otherwise it didn't work.