Landscape in Latex

By thurnherr

The default page layout is “portrait”, but sometimes it is still useful/necessary to have the whole document or only single pages changed to “landscape”. The latter might be due to a large table or figure. This post will tell you how to change the page layout of the whole document or single pages to “landscape”. In addition, it is possible to make single pages appear left side up in the PDF, making them more readable.

Changing the whole document to “landscape” can be done be using the geometry-package:

\usepackage[landscape]{geometry}

You can also just change the page content to landscape, but not the actual page layout through the optional argument of the command “documentclass”. It does not make much sense, but you can do it:

\ documentclass[landscape, 12pt]{report}

Next I will show you how to change the page layout of single pages. The lscape-package provides according possiblities:

\usepackage{lscape}

With

\begin{landscape}

\end{landscape}

you define the section of your document to be set to “landscape”, e.g. a large table or figure.

This will not automatically rotate the page in the PDF and is useful if the document is destined for printing.

If you want to make appear the left side up, better readable on screen, the pdflscape-package will do it:

\usepackage{pdflscape}

and again:

\begin{landscape}

\end{landscape}

for the page to be “landscape”, while the rest will remain in “portrait” orientation. Nevertheless, the header/footer will also be changed in orientation.

Tags: , , , , ,

12 Responses to “Landscape in Latex”

  1. Create your slides / presentations with Latex « Blog on Latex Matters Says:

    [...] Nevertheless, this is not sufficient, as it only turns the slide, but not the paper (see theĀ previous postĀ for details). [...]

  2. Linda Octa Says:

    Thank you, its very useful!!!!

  3. Blog on Latex Matters » Blog Archive » Create your slides / presentations with Latex Says:

    [...] Nevertheless, this is not sufficient, as it only turns the slide, but not the paper (see the previous post for details). [...]

  4. Alin Tolea Says:

    Thanks! The only correct reference on landscape pages in latex!

    Alin

  5. Jinbae Says:

    Amazing and perfect!
    Thank you for your post.

  6. Hartwork Blog » Single landscape pages in LaTeX Says:

    [...] Actually quite easy. Found it on Texblog. [...]

  7. Victor Says:

    Thanks!

  8. Jonathan Says:

    Thanks a lot…it’s very useful information for us!!!

  9. Osmikraska Says:

    Thanks a lot ;-)

  10. Jobi Says:

    thanks .. was really helpful !

  11. Mirek Says:

    Thanks! Very clear and useful!

  12. Peter Says:

    Thanks, completely clear and useful!

Leave a Reply