Search code examples
latexlyx

Possible to have the 'Part' section to always start on odd page number?


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...


Solution

  • 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.