[Tex/LaTex] Inserting Landscape PDF in printed document

landscapepdfprinting

I wonder how to insert a landscape PDF best. Since my document will be printed, I tend to insert it as a portrait rotated left side up. But then it is not well readable on screen. And the Section heading as well as the page number are falsely rotated as well.

So what would be the common way to handle this case? At best with respect to both advantages, the landscape format on screen and printed as rotated portrait with the left side up?

THX!

Best Answer

Here is a solution. This works fine for me, with acrobat reader 11

\documentclass{article}
\usepackage{lipsum}


\usepackage{pdfpages}
\begin{document}
\lipsum[1-4]
\includepdf[pages=1,landscape]{file.pdf}
\lipsum[1-4]
\end{document}