General ⇒ page numbering problem
page numbering problem
I know somebody had asked this problem. However, it seems still to be a problem for me.
a. I want to disable page numbering for a thesis' title and the second page(copyright page).
main.tex file
\documentclass[twoside,letterpaper,12pt]{report}
\begin{document}
\include{title}
\include{copyright}
\end{document}
title.tex
\thispagestyle{empty}
\chapter*{title}
\begin{center}
Title\\
\end{center}
copyright.tex file
\thispagestyle{empty}
\chapter*{Copyright }
\begin{center}
2008\\
All Rights Reserved\\
\end{center}
My script does not work. Can anyone help?
2. I want to resume the numbering from the third page. However the "copyright" page should not be counted.
This means the 3rd page shows a page number of "2" and the title page is the first one (but no number shown). How can I do this?
Thanks very much!
chao
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
page numbering problem
- in title.tex and copyright.tex write \thispagestyle{empty} after chapter*{...} else the page style will be plain instead of empty.
- you can change the page counter, write on the third page.
Code: Select all
\setcounter{page}{2}
page numbering problem
It seems that you guys have an automatic reply system. So fast and accurate.Stefan_K wrote:Hi Chao,
Stefan
- in title.tex and copyright.tex write \thispagestyle{empty} after chapter*{...} else the page style will be plain instead of empty.
- you can change the page counter, write
on the third page.Code: Select all
\setcounter{page}{2}
Thanks a million
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: page numbering problem
because you provided complete example code it was easier to give a very specific solution. :-)
Stefan