The "Show Cover Page During Two-Up" feature in acrobat takes effect in the side-by-side viewing modes. It displays the coverpage seperately. So for double sided documents where the page numbers alternate between being on the left and right, the page numbers are displayed correctly on the OUTSIDE of the two page spread.
I'm using TeXnicCenter with MikTeX. How do I make the "Show Cover Page During Two-Up" option be set by default. There must be some flag encoded in the PDF. Is there a LaTeX command that will set this flag?
You can sort-of do this using a tool called "Advanced PDF Tools v2.0" by going to Open Action, then setting Page layout to Continuous-facing. This tool isn't even free. Is there a better way?
Document Classes ⇒ "Show Cover Page During Two-Up" by default?
-
- Posts: 2
- Joined: Sun Apr 27, 2008 8:54 pm
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10345
- Joined: Mon Mar 10, 2008 9:44 pm
"Show Cover Page During Two-Up" by default?
Hi Silent Tortoise,
welcome to the LaTeX Community board!
If you use hyperref, tryor give it as option:
Stefan
welcome to the LaTeX Community board!
If you use hyperref, try
Code: Select all
\hypersetup{pdfpagelayout=TwoPageRight}
Code: Select all
\usepackage[pdfpagelayout=TwoPageRight]{hyperref}
LaTeX.org admin
-
- Posts: 2
- Joined: Sun Apr 27, 2008 8:54 pm
Re: "Show Cover Page During Two-Up" by default?
Thanks. That works great.