For the book I am publishing, the printer wants a pdf of 6x9 inch. I see two ways of getting this:
- shrink the pdf after LaTeX compiled it (advantage is that the ebook is in the a4 or letter size, which is ideal)
- let pdftex generate a file of 6x9 directly
Code: Select all
\setlength{\pdfpagewidth}{6in}
\setlength{\pdfpageheight}{9in}
What is your advice on this? I guess the TeX system specifies a default page size somewhere.