[Tex/LaTex] How to set page counter by skipping first page?

page-numbering

Possible Duplicate:
No page numbering

I am working on numbering on page. I already got reply for my previous question.

How to set page counter in mdframed as footer?

But i want to skip first page as it is title page. So i m using \thispagestyle{empty}. But next page start from 2. Page after title should be marked as page 1 since title page is not counted. How can i implement it?

Best Answer

After the title page, put

\clearpage
\setcounter{page}{1}

This is ok if you are using oneside option. But for two side document, it is better to \cleardoublepage as noted by @Ulrike Fischer in the comment.