2

I have a landscape A5 pdf, which I would like to include on top of the page. However, with this MWE the file is centered:

\documentclass[a4paper]{scrartcl}
\usepackage{pdfpages}
\begin{document}
\includepdf{a5.pdf}
\end{document}
Micha
  • 2,869

1 Answers1

1
\includepdf[offset=0 370]{a5.pdf}

was the solution (thanks to texdoc pdfpages)

Micha
  • 2,869