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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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