How to Make a Landscape Page in LaTeX
To rotate a single page to landscape in LaTeX, load \usepackage{pdflscape} and wrap the wide content (a big table or figure) in the landscape environment. pdflscape both rotates the content and turns the page sideways in the PDF viewer, so it is readable on screen.
Not sure it worked on your document? Paste it into LetX and compile it, free and in the browser.
Example
\usepackage{pdflscape}
% ...
\begin{landscape}
\begin{table}
% a very wide table
\end{table}
\end{landscape}Frequently asked questions
What is the difference between lscape and pdflscape?
Both rotate the content; pdflscape additionally rotates the page in the PDF so the viewer shows it sideways. Prefer pdflscape for on-screen reading.
How do I make the whole document landscape?
Pass the landscape option to geometry: \usepackage[landscape]{geometry}, or set \documentclass[landscape]{article}.
Related LaTeX fixes
Browse all LaTeX problems & fixes, or start with the LaTeX guide.
Try the fix in LetX
Open the editor, paste your code, and compile in seconds to see the error clear. Free, in your browser.
Open LetX Free