[Tex/LaTex] How to Rotate a PDF

pdfrotatingtexlive

Recently I found out that I can't use Adobe Acrobat to rotate a multi-page pdf file by .70 degrees. So I have a regular PDF file (flat scan – no text) that I need to rotate.

But I've seen a hint that you can do it with LaTeX.

The example there isn't enough – it only does one page.

Can I do this with LaTex?

Best Answer

You can use pdfpages:

\documentclass{article}
\usepackage{pdfpages}

\begin{document}
  \includepdf[pages={-},angle=30]{main}
\end{document}

rotated pdf

Related Question