i do'nt want to count the page number when i use \part{}, for example
........... . . . . . . . 4 . ........... ........... . . . Part I . . . . . ........... ........... . . . . . . . 5 . ...........
How can i get it?
This will decrease the page number by one:
\addtocounter{page}{-1}
This will suppress the page number on the current page: (which you can leave out if the page number currently doesn't show up)
\thispagestyle{empty}
So, you can put together your own macro (I'm calling it \mypart
but name it what you like) to do all three things at once:
\newcommand{\mypart}[1]{\part{#1}\addtocounter{page}{-1}\thispagestyle{empty}}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With