latex — set page number 
How to set the page number for the current page in LaTeX? i.e., how to reset page number counter in a LaTeX document? Simply set the latex page counter to a specific value. The syntax is as follows:
\setcounter{counter}{value} % sets the counter to value (see the original post at http://linux.dsplabs.com.au/?p=94)
Lets illustrate with an example. To set the current page number to 32, you would use:
\setcounter{page}{32} % sets the current page number to 32 (see the original post at http://linux.dsplabs.com.au/?p=94)
More help on LaTeX counters can be found on the following pages: LaTeX Counters and Help On LaTeX Counters.
Did you find the above information useful and interesting? If so, please support this site by using the blog directory links at the bottom of this page. Thanks for your support!
If you have any Linux related problems or questions then please feel free to post them on our Linux Forums: http://linux.dsplabs.com.au/forums.
