Is there a setting or technique I can use to print a multi-page document by starting on the back of the first sheet of paper? Ie, the first sheet would be blank on one side and the other side would contain page 1, the second sheet would contain pages 2 and 3, and so on.
I'd be happy to know if this can be done in Adobe Acrobat Reader or any other PDF viewer, especially if it's a free PDF viewer.
I recognize that I could accomplish this by inserting a blank page at the front of the document. This is a bit of a hack, but I guess it's ok. Is there a free PDF editor that will allow me to insert pages? I have PDF-XChange, but the free version doesn't allow me to insert pages.
Answer
I would use pdflatex. It's quite simple. Depending on which OS you use, you'll either need to install miktex for Windows or something like texlive for linux -- most distros have packages built. I like texlive-full for Ubuntu -- but that's because I use a lot of the sub-packages in latex and for the file below all you need is the pdfpages sub-package, which miktex will ask to retrieve and install if you didn't download the full package. If you use linux, you may need to google a bit on installing a package in tex
The goal is to get the binary pdflatex command and the sub-package pdfpages which can then compile a latex source file which you create.
Place the following code inside a file withBlankFirstPage.tex
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
% The next two lines create a blank message
% box and then force a page feed
\mbox{}
\newpage
% This includes your document
\includepdf[pages=-]{yourDocHere.pdf}
\end{document}
And then run pdflatex withBlankFirstPage.tex and this will produce a pdf titled withBlankFirstPage.pdf with a blank first page. Of course you could use a shorter filename -- you get the idea. Latex / tex / miktex / texlive are completely free -- as in beer.
No comments:
Post a Comment