Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LaTeX: remove blank page after a \part or \chapter [closed]

Tags:

latex

How to remove a blank page that gets added automatically after \part{} or \chapter{} in a book document class?

I need to add some short text describing the \part. Adding some text after the part command results in at least 3 pages with an empty page between the part heading and the text:

  1. Part xx
  2. (empty)
  3. some text

How to get rid of that empty page?

P.S. Latex: How to remove blank pages coming between two chapters IN Appendix? is similar but it changes the behavior for the rest of the text while I need to remove the empty page for this one \part command only.

like image 369
CaptSolo Avatar asked Aug 31 '09 18:08

CaptSolo


People also ask

How do you delete a blank page after chapters in LaTeX?

As it turns out, those blank pages have a purpose. The default setting for many books (and many thesis templates) is two-sided, with each chapter opening on a right-hand-side page. To get rid of these empty pages, just add the oneside option (or alternatively, the openany option) to your document class declaration.

How do you delete a blank page before the title in LaTeX?

Most likely, one package redefines a command that another package then (mis)uses. A bit of experimenting should discover the two culprits. You can often avoid such problems by simply reversing their order of inclusion. Moving \begin{flushleft} from before to after \maketitle fixed the problem for me.

What is Cleardoublepage?

The \cleardoublepage command ends the current page and causes all figures and tables that have so far appeared in the input to be printed. In a two-sided printing style, it also makes the next page a right-hand (odd-numbered) page, producing a blank page if necessary.


2 Answers

I think you can simply add the oneside option the book class?

i.e.

\documentclass[oneside]{book} 

Although I didn't test it :)

like image 121
gromgull Avatar answered Sep 25 '22 14:09

gromgull


It leaves blank pages so that a new part or chapter start on the right-hand side. You can fix this with the "openany" option for the document class. ;)

like image 43
J Shibby Avatar answered Sep 25 '22 14:09

J Shibby