The PDF output of my thesis produces an extra page at the end of every chapter. This page has the title on the first line of text (but without the first word of that chapter's title) and page number.
When I compile the chapters individually, the output is OK, meaning to say, no extra page produced. But when I put back all the chapters together using \include, the problem reoccurs.
My main tex file uses the report documentclass and just the url package.
Please help!
Page Layout ⇒ Unwanted extra page at the end of all chapters
-
- Posts: 1
- Joined: Mon Jun 29, 2009 11:16 am
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: Unwanted extra page at the end of all chapters
Hi there,
Firstly, the \include command automatically starts a new page.
Do you put the \chapter command in your main document, and then include the text from an external file? If so, you need to change that and include the \chapter command in your text file.
Cheers
Firstly, the \include command automatically starts a new page.
Do you put the \chapter command in your main document, and then include the text from an external file? If so, you need to change that and include the \chapter command in your text file.
Cheers
Re: Unwanted extra page at the end of all chapters
I have exactily the same problem here.
I'm placing \chapter{...} in separate .tex files and then I \include them into the main document. When I compile the whole, I have extra pages everywhere...
Please help
I'm placing \chapter{...} in separate .tex files and then I \include them into the main document. When I compile the whole, I have extra pages everywhere...
Please help
Re: Unwanted extra page at the end of all chapters
Please follow board rules and provide a minimal working example showing the problem.
...or at least tell us what document class you're using.
...or at least tell us what document class you're using.
Re: Unwanted extra page at the end of all chapters
thanks for your answer, you actually helped me a lot as I've seen that the type was book so changing it to report resolved my problem. thanks again=)
Re: Unwanted extra page at the end of all chapters
If you wanted to keep it as book, probably you just needed to add the the oneside or openany options:
\documentclass[openany]{book}
or
\documentclass[oneside]{book}
These two slightly different things. The former will keep the "mirror margins", but allow chapters to open on verso sides. The latter will make every page appear as a recto side, but will also allow chapters to open on any page.
\documentclass[openany]{book}
or
\documentclass[oneside]{book}
These two slightly different things. The former will keep the "mirror margins", but allow chapters to open on verso sides. The latter will make every page appear as a recto side, but will also allow chapters to open on any page.