Skip to content

Instantly share code, notes, and snippets.

@BGMcoder
Created March 17, 2015 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BGMcoder/1b1af041c57618aca287 to your computer and use it in GitHub Desktop.
Save BGMcoder/1b1af041c57618aca287 to your computer and use it in GitHub Desktop.
Rotate Every Page in a PDF By Any Degree
%Rotate a pdf file by any degree
%Works on every page of a multi-page pdf file
%You can't even buy software that will do this!
%http://tex.stackexchange.com/questions/233513/how-to-rotate-a-pdf
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages={-},angle=0.7]{yourPDFfile.pdf}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment