Page LayoutPage Numbering

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
woltan
Posts: 19
Joined: Mon Mar 09, 2009 2:08 pm

Page Numbering

Post by woltan »

Hey folks,
this is my first posting here and I am fairly new to LaTex. I hope you can solve my little problem. Actually I found a work around but I am wondering if it cannot be solved a little nicer ^^

Here we go:
I am writing an article and I would like the first pages like the TOC, LOF, Nomencalture... to be with Roman page numbers. Then, when the first section starts I would like arabic page numbers to appear instead of the Roman but continue counting where there last Roman pagenumber was. Something like: I, II, III, IV, V, 6, 7, 8, 9...

My work around looks like this:
...
\newcounter{PageDummy}
\setcounter{PageDummy}{\value{page}}
\pagenumbering{arabic}

\setcounter{page}{\value{PageDummy}}
...

My first question to the community:
Is there a nicer way of doing what I want to do?
Any help, link tipp is appreciated!!
cherio Woltan

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

Page Numbering

Post by phi »

Apart from resetting the page counter, \pagenumbering only redefines \thepage, which you can do, too:

Code: Select all

\renewcommand*\thepage{\arabic{page}}
Post Reply