General ⇒ Latex Print Two Source Pages to Single Page
Latex Print Two Source Pages to Single Page
I have 2 pdf files each with 40 pages.
Each of these files is printed in landscape.
I need to somehow take each page of these pdf files, and print them both on the same page in portrait.
Anyone can help me or tell me if it's not even possible etc?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Latex Print Two Source Pages to Single Page
Suppose the PDFs you already have are called input1.pdf and input2.pdf. If they're in landscape, you can use the package to include them in a single portrait PDF, two pages per page, on over the other, like this:
Code: Select all
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=-,nup={1x2}]{input1.pdf}
\includepdf[pages=-,nup={1x2}]{input2.pdf}
\end{document}
Code: Select all
\includepdfmerge[nup=1x2]{input1.pdf, 1, input2.pdf, 1, input1.pdf, 2, input2.pdf, 2, ... [etc] }