Skip to content

Instantly share code, notes, and snippets.

@josemariagarcia95
Last active May 13, 2018 16:57
Show Gist options
  • Save josemariagarcia95/d78663e99d4742eaf4b00d034df8f5fd to your computer and use it in GitHub Desktop.
Save josemariagarcia95/d78663e99d4742eaf4b00d034df8f5fd to your computer and use it in GitHub Desktop.
Joining PDF files with LaTeX
%Whatever doc settings
\documentclass[11pt,a4paper,sans]{article}
\usepackage{pdfpages}
\begin{document}
%pages = - means all the pages of the file
\includepdf[pages=-]{file1} % ./file1.pdf
\includepdf[pages=-]{file2} % ./file2.pdf
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment