Page Layout ⇒ Openright
-
- Posts: 2
- Joined: Tue Aug 28, 2012 4:19 pm
Openright
I am trying to figure out how to get a specific page to be placed to the right in my thesis.
I have specified the document by using openright, but as far as I understand this only applies to chapters, list of figures etc.
But if I want my abstract, acknowledgements or other pages to also be placed to the right, how can I specify this? Is there a command to do this for specific pages for instance?
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
Openright
welcome to the board!
have you tried
\cleardoublepage
?It would be best if you provided us with a

Regards
-
- Posts: 2
- Joined: Tue Aug 28, 2012 4:19 pm
Re: Openright
I guess \cleardoublepage would work, but as I am starting to write my thesis now I was looking for a way to define other sections than chapters, list of figures etc to be placed on the write hand side, such that when I start to write, the page layout is not affected by the previous pages. Not quite sure how to illustrate it with an example, but if it is not possible I'll just have to do it when I finish my writing.
Best regards
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Openright
Code: Select all
\newcommand\chapter{\if@openright\cleardoublepage\else\clearpage\fi
\thispagestyle{plain}%
...
openright
option, which you don't need, as you know that your document is in openright
mode.Stefan