I have a pdf file with several pages and want to include them in my LaTeX file.
\includepdf[pages=-, angle=90, scale=0.95]{folder/file.pdf}
I want to get two pages of my pdf file on every LaTeX page, but my code above only inserts one rotated page on each page. Is there a way to solve this problem?
CodePudding user response:
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=1-10, angle=90, scale=0.95,nup=1x2]{example-image-a4-numbered.pdf}
\end{document}