Page Layout ⇒ Page Numbering
Page Numbering
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
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
Page Numbering
Code: Select all
\renewcommand*\thepage{\arabic{page}}