General ⇒ Changing default zoom when generating PDF file?
Changing default zoom when generating PDF file?
Can this be done, and how?
Thanks in advance.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Changing default zoom when generating PDF file?

Using the hyperref package, you can add the option "pdfstartview=foo", where "foo" can be, for instance, "FitH", meaning "fit horizontally" (the same thing that in Adobe Reader is called "fit width".
More information can be found in the documentation to the hyperref package.
Re: Changing default zoom when generating PDF file?
\usepackage[pdfstartview=FitH]{hyperref}
where FitH is for "Fit Horizontal". The problem with hyperref is that the default pdfstartview is FitPage (I don't remember if this is really the actual command). Remember you can use more than one option when loading this package. If this is not the zoom you want, you can search in the hyperref manual for more options for the start view.
Finally, when you DON'T use the hyperref package with pdfTeX, the default pdf start view is fit horizontal.
Changing default zoom when generating PDF file?
pfjorgeo wrote: Hello, if you're using the hyperref package, you have to use the option pdfstartview:
\usepackage[pdfstartview=FitH]{hyperref}
where FitH is for "Fit Horizontal". The problem with hyperref is that the default pdfstartview is FitPage (I don't remember if this is really the actual command). Remember you can use more than one option when loading this package. If this is not the zoom you want, you can search in the hyperref manual for more options for the start view.
Finally, when you DON'T use the hyperref package with pdfTeX, the default pdf start view is fit horizontal.
Um, yeah, thanks, but this is exactly what I said myself in the post above.

Re: Changing default zoom when generating PDF file?
