Theses, Books, Title pages ⇒ Remove empty pages
Remove empty pages
I'm using Masters/Doctoral Thesis LaTeX Template.
Please, I need for more explain, what should I exactly change or add to remove the empty pages before chapters or that are after lists.
Thanks for help in advance.
Ahmed.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Remove empty pages
When a thesis is printed doublesided, that is, in two-side mode, when both sides of a page get printed, we have left and right hand pages like in books. Chapters commonly start at right hand pages. So, if needed, empty pages are inserted so chapter start at a right hand side.
To avoid this, you can uncomment a line in the main tex file of the template. Look at the
\documentclass
line, uncomment the oneside
option or add oneside
.Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Remove empty pages
oneside
or openany
. Plaese also have a look at the quick guide, specifically this.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Remove empty pages
openany
is the option that you need if you still want to keep two-sided printing. Though I would find it strange, very uncommon, if a chapter starts on a left side, so I implicitly assumed you want to get rid of empty pages with single-sided result. A difference between two-sided is regarding the margins, two-sided has inner and outer margins (outers should be bigger) while single-sided has left and right margins, usually of the same size.Stefan