Page X of 21
. How can I do that? I have read some commands in tex.stackexchange.com but unfortunately none of those worked for me.For example
Code: Select all
\cfoot{\thepage\ of \pageref{LastPage}}
Page X of 21
. How can I do that? I have read some commands in tex.stackexchange.com but unfortunately none of those worked for me.Code: Select all
\cfoot{\thepage\ of \pageref{LastPage}}
NEW: TikZ book now 40% off at Amazon.com for a short time.
\pageref{LastPage}
to work, AFAIR.Code: Select all
\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{blindtext}
\usepackage{lastpage}
\cfoot{\thepage\ of \pageref{LastPage}}
\begin{document}
\Blinddocument
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.