Created
September 20, 2013 10:53
-
-
Save jmora/6635885 to your computer and use it in GitHub Desktop.
I scanned a document recently and I wanted to put all the images into a PDF as a coherent document. This may be very simple with Adobe Acrobat, but it's expensive and I didn't have it available. It turns out it's very simple with LaTeX too so this is what I did:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage{graphicx} | |
\usepackage[margin=-0.01cm]{geometry} | |
\begin{document} | |
\includegraphics{image_1} | |
\includegraphics{image_2} | |
% ... | |
\includegraphics{image_n} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment