I want to use the pdfpages in Latex in landscape mode.
That's possible with the following code:
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[landscape=true,pages=1-3,pagecommand={}]{Planning.pdf}
\end{document}
But I also want to keep the section and page number at the top and bottom of the page. For example when I do this:
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
\includepdf[landscape=true,pages=1-3,pagecommand={\subsection{Bijlage 1}}]{Planning.pdf}
\end{document}
The header is also rotated, including the footer.
Is it possible to get the header and footer at the 'normal' position (so at the top and bottom of the document, like in portrait mode).
Edit: It looks like my question isn't good explained. So I draw something on paper to clarify my question.




pagecommand={\thispagestyle{headings}}working? – ebosi Nov 08 '16 at 13:44