tags:

views:

1541

answers:

3

My document class is article. This is the beginning of my file.

This question is related to the post.

+2  A: 

I use

\pagenumbering{roman}

for everything in the frontmatter and then switch over to

\pagenumbering{arabic}

for the actual content. With pdftex, the page numbers come out right in the PDF file.

Torsten Marek
+3  A: 

To suppress the page number on the first page, add \thispagestyle{empty} after the \maketitle command.

The second page of the document will then be numbered "2". If you want this page to be numbered "1", you can add \pagenumbering{arabic} after the \clearpage command, and this will reset the page number.

Here's a complete minimal example:

\documentclass[notitlepage]{article}

\title{My Report}
\author{My Name}

\begin{document}
\maketitle
\thispagestyle{empty}

\begin{abstract}
\ldots
\end{abstract}

\clearpage
\pagenumbering{arabic} 

\section{First Section}
\ldots

\end{document}
ChrisN
I have this now: http://pastebin.tlhiv.org/68Yt8JkTThe numbering starts at 1 in the second page.
Masi
+4  A: 

You can also reset page number counter:

\setcounter{page}{1}
klew