Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I start pagenumbers, where the first section occurs in LaTex? [closed]

Tags:

latex

This question is related to the post about having abstract at the titlepage. I want to reset the page numbering at the given section.

like image 953
Léo Léopold Hertz 준영 Avatar asked Feb 01 '09 19:02

Léo Léopold Hertz 준영


People also ask

How do I change the start page number in LaTeX?

use \setcounter{page}{7} after \begin{document} and if necessary \setcounter{page}{1} when the arabic page numbers start. Show activity on this post. Try using the pdfpages package (CTAN), which allows you to insert PDF documents into your Latex document, and assign page numbers to them.

How do I suppress page numbers in LaTeX?

You could use \pagenumbering{gobble} to switch off page numbering. To switch it on afterwards, use \pagenumbering{arabic} for arabic numbers or alph , Alph , roman , or Roman for lowercase resp. uppercase alphabetic resp.

How do I start a page in LaTeX?

You can use \pagestyle{empty} to begin with, then \pagenumbering{arabic} just before the first chapter. Alternatively, to avoid having to write \thispagestyle{empty} at each blank page, you can load the clearempty package, or, if you use titlesec , add the [clearempty] option.


1 Answers

You can also reset page number counter:

\setcounter{page}{1} 

However, with this technique you get wrong page numbers in Acrobat in the top left page numbers field:

\maketitle: 1 \tableofcontents: 2 \setcounter{page}{1} \section{Introduction}: 1 ... 
like image 147
klew Avatar answered Oct 30 '22 12:10

klew