General ⇒ Inserting a blank page if current page number is even
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm
Inserting a blank page if current page number is even
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
Inserting a blank page if current page number is even
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm
Re: Inserting a blank page if current page number is even
Inserting a blank page if current page number is even
For example, in this example, the chapter ends on page 5, page 6 is left blank, and the appendix page is on page 7.
Code: Select all
\documentclass[a4paper,twoside]{report}\usepackage[left=1.5in,right=1.5in]{geometry}\usepackage{appendix}\usepackage{lipsum}% for generating filler text\begin{document}\chapter{A chapter}\lipsum[1-25]% filler text\cleardoublepage\appendixpage\appendix{An appendix}\lipsum[1-5]\end{document}
-
- Posts: 6
- Joined: Thu Oct 28, 2010 7:59 pm