Page LayoutBlank page between appendices

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
jcoatz
Posts: 1
Joined: Wed Feb 24, 2010 3:18 pm

Blank page between appendices

Post by jcoatz »

I have a blank page between appendices, and I'm not sure how to get rid of it. I don't want to just delete from the pdf, as that will distort the page numbering afterwards.

I'm using a report class, not book, so it isn't an odd/even page issue. Is there a code to suppress a blank page?

I have a \pagebreak because there is a change of author, and it needs the pagebreak to facilitate changing the header correctly. It should be forcing a blank page though, just a new one.

Help much appreciated!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

php1ic
Posts: 192
Joined: Wed Jan 28, 2009 8:17 pm

Blank page between appendices

Post by php1ic »

Can you post a MWE (Minimum Working Example)

http://www.latex-community.org/forum/vi ... =37&t=7878

Without any code, it's hard to help. Generally, there is no header on the first page of a new chapter/appendix so the \pagebreak may be unnecessary.

The code below doesn't insert a blank page between appendices.

Code: Select all

\documentclass{report}

\begin{document}

\chapter{One}

\appendix
\chapter{First}

\chapter{Second}
\end{document}
Post Reply