Is it possible to always have the 'Part' section to start at an odd page number? So that if the part one section extends to page two, then part two automatically moves to page three. I'm using Lyx to create the Latex file.

EDIT: Just discovered that I have been using section instead of part. Have changed all the sections to part. Still the same issue.

Oerjan...

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

If the twoside document-class option does not take care of this problem, then the following surely will:

\let\originalpart=\part
\def\part{\cleardoublepage\originalpart}

Or you could just insert \cleardoublepage by hand.

link|improve this answer
Yes, I enabled the 'twoside', and it fixed it. Ended up with using the book document class and chapters. Together with the 'twoside' option it was ok. – Orjanp Jan 7 '10 at 12:38
feedback

Part, for default, starts at an odd page and occupies the whole page. Chapters start on the next odd page (for books) and in the next page available (for reports).

link|improve this answer
I have no document class that is named 'default'. I had to enable the 'twoside' option to get this to work. – Orjanp Jan 7 '10 at 12:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.