Page Layout ⇒ Table of contents
Table of contents
Hi there,
Thanks to help on this board I was abke to create a table of contents.
However the table of contents are included as pasge numbers?
Is there a way to circumvent this?
Thanks to help on this board I was abke to create a table of contents.
However the table of contents are included as pasge numbers?
Is there a way to circumvent this?
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Table of contents
Hi,
please explain further what you want to achieve or what's unwanted.
Stefan
please explain further what you want to achieve or what's unwanted.
Stefan
LaTeX.org admin
Re: Table of contents
Sorry,
currently the contets pages are counting towards the total number of pages.
I would rather that page 1 was page 1 of chapter 1.
Is that clearer?
currently the contets pages are counting towards the total number of pages.
I would rather that page 1 was page 1 of chapter 1.
Is that clearer?
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
Table of contents
Perhaps ... I guess you want to start the page numbering with the first chapter and to suppress the numbering of the previous pages, have a look at
Stefan
Code: Select all
\documentclass[a4paper,10pt]{book}
\begin{document}
\pagestyle{empty}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\tableofcontents
\clearpage
\setcounter{page}{1}
\chapter{Test}
text
\end{document}
LaTeX.org admin
Re: Table of contents
ah no wait!
Now all the page number are missing?
How can I turn them back on at chapter1?
Now all the page number are missing?
How can I turn them back on at chapter1?
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
Table of contents
Just call again \pagestyle with the style you want, like
at the beginning of the first chapter.
Stefan
Code: Select all
\pagestyle{headings}
Stefan
LaTeX.org admin