I am using the package pdflascape to change the orientation of a few pages to landscape to accommodate long tables.
I am just not able to get the right output.
Page Layout ⇒ Landscape orientation
Landscape orientation
It's working this way, apprently, from http://distrib-coffee.ipsl.jussieu.fr/p ... lscape.pdf, page 9 :
Code: Select all
\documentclass{article}
\usepackage{pdflscape}[2016/05/14]
\begin{document}
\section{Portrait page}
\begin{landscape}
\section{Landscape page}
Foo bar foo bar foo bar foo bar foo bar
foo bar foo bar foo bar foo bar foo bar.
\end{landscape}
\section{Portrait Section}
Foo bar
\begin{landscape}
\section{Again Landscape Section}
\newpage
\section{Second Page of Landscape Section}
\end{landscape}
\section{Second Last Portrait Page}
\newpage
\section{Last Portrait Page}
\end{document}