Generalpage numbering problem

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
chao
Posts: 20
Joined: Tue Jun 17, 2008 5:52 pm

page numbering problem

Post by chao »

Hi,
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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

page numbering problem

Post by Stefan Kottwitz »

Hi Chao,
  1. in title.tex and copyright.tex write \thispagestyle{empty} after chapter*{...} else the page style will be plain instead of empty.
  2. you can change the page counter, write

    Code: Select all

    \setcounter{page}{2}
    on the third page.
Stefan
LaTeX.org admin
chao
Posts: 20
Joined: Tue Jun 17, 2008 5:52 pm

page numbering problem

Post by chao »

Stefan_K wrote:Hi Chao,
  1. in title.tex and copyright.tex write \thispagestyle{empty} after chapter*{...} else the page style will be plain instead of empty.
  2. you can change the page counter, write

    Code: Select all

    \setcounter{page}{2}
    on the third page.
Stefan
It seems that you guys have an automatic reply system. So fast and accurate.
Thanks a million
User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

Re: page numbering problem

Post by Stefan Kottwitz »

Hi chao,

because you provided complete example code it was easier to give a very specific solution. :-)

Stefan
LaTeX.org admin
Post Reply