Page LayoutPage number style issue

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
jorgesisco
Posts: 3
Joined: Wed Mar 16, 2022 6:41 pm

Page number style issue

Post by jorgesisco »

I have all my pages in romans numbers until table of content,

from introduction I added to my document:

Code: Select all

\input{chapters/1. Introduction}
\pagenumbering{arabic}
\setcounter{page}{10}
and this help me set the numbers in arabic from the introduction page, but since my introduction takes more than one page I get the 1st page of the introduction in romans number and from the second page of the introduction is where I start getting the arabic pagination numbers.

Does anyone knows how can I mitigate this issue?

Thanks in advance.
Attachments
latex.png
latex.png (145.15 KiB) Viewed 2787 times

Recommended reading 2024:

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

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

Bartman
Posts: 369
Joined: Fri Jan 03, 2020 2:39 pm

Page number style issue

Post by Bartman »

A suggestion for switching from roman to arabic page numbering without resetting the page counter:

Code: Select all

\documentclass{report}
\usepackage[nottoc]{tocbibind}
\usepackage{blindtext}

\begin{document}
\pagenumbering{Roman}
\tableofcontents
\listoffigures
\cleardoublepage
\renewcommand{\thepage}{\arabic{page}}
\chapter{Introduction}
\Blindtext[4]
\end{document}
A Infominimal working example could help to find out whether this also works in your context.
Post Reply