\tableofcontents
, I can't manipulate the pages individually, so I can't call \setcounter
. I'm wondering if its possible to fill the between ToC pages with blank pages, or if its possible to have a counter that simply uses just odd numbers.\tableofcontents
, I can't manipulate the pages individually, so I can't call \setcounter
. I'm wondering if its possible to fill the between ToC pages with blank pages, or if its possible to have a counter that simply uses just odd numbers.NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
openright
option to the document class (which says, "Only open new chapters on right-hand pages")? I can't think of another reason you would literally want page numbers only on odd-numbered pages.\ifodd
primitive, like so:
Code: Select all
\documentclass{article}
\renewcommand\thepage{\ifodd\value{page}\arabic{page}\fi}
\begin{document}
Hello
\newpage
Hello
\newpage
Hello
\newpage
Hello
\newpage
Hello
\newpage
Hello
\newpage
Hello
\newpage
Hello
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p