General ⇒ page nubering in latex
page nubering in latex
ca i have page numbering like attached image in beamer?
I use luatex lualatex (luapersian) and methods in http://tex.stackexchange.com/questions/ ... -in-beamer does not work for me.
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
page nubering in latex
-
- Posts: 3
- Joined: Wed Sep 24, 2014 9:15 am
page nubering in latex
Code: Select all
% preliminaries %
\documentclass{article}
\title{Example Document}
% front matter %
\begin{document}
\maketitle
\thispagestyle{empty}
\newpage
% display page numbers in the headings. Start with roman numerals %
\pagestyle{headings}
\setcounter{page}{1}
\pagenumbering{roman}
% page i %
\section*{Foreward}
Foreward described here ...
\newpage
% page ii %
\tableofcontents
\newpage
% page iii %
\listoftables
\newpage
% set the page numbers to be arabic, starting at page 1 %
\setcounter{page}{1}
\pagenumbering{arabic}
% page 1 %
\section{The First Section}
The details of the first section ...
\end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
page nubering in latex
The
pagenumbering
command resets the counter of page to 1. So all those setcounters are redundant. But i can't really figure out how this is related to the original question?