General ⇒ About page numbers
About page numbers
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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
About page numbers
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.