Page LayoutLandscape orientation

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
hslatex
Posts: 1
Joined: Sat Aug 05, 2017 8:47 pm

Landscape orientation

Post by hslatex »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
thomasb
Posts: 134
Joined: Thu Aug 03, 2017 10:54 am

Landscape orientation

Post by thomasb »

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}
Post Reply