Page Layout ⇒ Roman Page Numbering
Roman Page Numbering
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
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
Roman Page Numbering
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>}
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}