Page Layout ⇒ Landscape orientation
Landscape orientation
I am just not able to get the right output.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Landscape orientation
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}