Page LayoutRoman Page Numbering

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
cate
Posts: 1
Joined: Thu Apr 04, 2013 2:05 am

Roman Page Numbering

Post by cate »

Hello,

I'm using LyX to write my thesis and I'd like to put the first part with the Acknowledgments, Abstract, LoF and LoT with Roman numeration and then starting with the normal one from the chapter number 1. And in the index I'd like to appear everything.

How can I do it?


Thanks
Caterina

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

Roman Page Numbering

Post by tom »

Hi Caterina,

Check the LyX FAQ for how to change page-numbering to roman and back:
http://wiki.lyx.org/FAQ/Numbering#frontmatter

You'll have to manually add these to the table of contents using:

Code: Select all

\addcontentsline{<index>}{<level>}{<text>}
Here is a MWE to get the page-numbering right for the abstract and to it to the TOC. The other parts are done similarly.

Code: Select all

\documentclass[11pt]{report}
\usepackage{blindtext}

\begin{document}

\pagenumbering{roman} % change to roman

\chapter*{\centering Abstract}
\addcontentsline{toc}{chapter}{Abstract} % adds Abstract to TOC
\blindtext

\tableofcontents
\clearpage % correct page number for TOC

\pagenumbering{arabic} % change to arabic
\chapter{First}
\end{document}
Post Reply