Skip to content

Instantly share code, notes, and snippets.

@ylxdzsw
Forked from ppanyukov/combinePdfFiles.tex
Last active August 17, 2018 01:48
Show Gist options
  • Save ylxdzsw/59686eb009d623857173bd7f06c7f8f5 to your computer and use it in GitHub Desktop.
Save ylxdzsw/59686eb009d623857173bd7f06c7f8f5 to your computer and use it in GitHub Desktop.
Combine and rotate several PDF files into one using LaTeX (useful when you use a sucking scanner)
\documentclass[a4paper]{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-, scale=1, angle=30]{p01.pdf}
\includepdf[pages=-, scale=1, angle=30]{p02.pdf}
\includepdf[pages=-, scale=1, angle=30]{p03.pdf}
\includepdf[pages=-, scale=1, angle=30]{p04.pdf}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment