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.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- 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: 10324
- 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