Dear LC members,
My document consists of following structure:
Internal covers, 2 pages (no page numbers)
Front matter, 6 pages (i--vi, roman type page numbers)
Mathematical parts, 73 pages (1--73, arabic type page numbers)
How can I refer the number 73 in my thesis?
Thanks.
bkarpuz
General ⇒ About page numbers
About page numbers
Last edited by bkarpuz on Wed May 25, 2011 2:28 am, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

About page numbers
You can load lastpage package and use \pageref{LastPage} command.
Code: Select all
\documentclass{book}
\usepackage[english]{babel}
\usepackage{blindtext}% to generate dummy text
\usepackage{lastpage}
\begin{document}
\frontmatter
Test, \pageref{LastPage}
\Blinddocument
\mainmatter
\Blinddocument
\end{document}
About page numbers
Thanks it works fine.