Hi!
Must be the dumbest question, but haven't found how to achieve it. I am normally used to MS Word, but new to LaTeX on this thing.
How do I achieve roman numbers in the footer starting from the Abstract, declaration of originality, acknowledgments etc all the way to the Introduction section. The introduction section should start with page number 1 and so on.
thanks
Page Layout ⇒ Roman Page Numbers for Front Matter
NEW: TikZ book now 40% off at Amazon.com for a short time.
Roman Page Numbers for Front Matter
Hi,
This can be achieved by the command
Probably, the following MWE is an example indeed:
but a lot of other documentation can be found in the LaTeX manuals.
And welcome on the board, and good luck with mastering LaTeX.
Boersma
This can be achieved by the command
Code: Select all
\pagenumbering{<command>}
Code: Select all
\documentclass{article}
\begin{document}
\pagenumbering{Roman}
%arabic: Arabic numerals
%roman: Lowercase roman numerals
%Roman: Uppercase roman numerals
%alph: Lowercase letters
%Alph: Uppercase letters
\section*{Preamble}
a preamble, with toc, lof, and lot, etc.
\newpage
\section*{Abstract}
an abstact
\newpage
\pagenumbering{arabic}
\section{Introduction}
Introduction and further is here, with normal page numbering
\end{document}
And welcome on the board, and good luck with mastering LaTeX.
Boersma
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Roman Page Numbers for Front Matter
If you are working with the
Thorsten
book
class (or with a related one from KOMA-Script or with memoir), then try the commands \frontmatter
, \mainmatter
and \backmatter
. Among other things they will enable appropriate page numbering.Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Roman Page Numbers for Front Matter
thanks !
LateX really makes it simple. Was a bit more complicated in MS Word. In love with this program.
cheers!
LateX really makes it simple. Was a bit more complicated in MS Word. In love with this program.
cheers!