Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rotate a page 180 degrees in LaTeX

Tags:

latex

How can I rotate a page 180 degrees in LaTeX?

like image 367
Johan Kotlinski Avatar asked Jun 04 '09 11:06

Johan Kotlinski


2 Answers

\usepackage{lscape}

\begin{landscape}
Some text
\end{landscape}

Or for the whole document:

\documentclass[landscape]{article}

Edit: This would of course only rotate the page by 90°... Sorry. ;)

like image 126
Lennart Koopmann Avatar answered Oct 23 '22 15:10

Lennart Koopmann


Have you tried the rotating package?

See http://en.wikibooks.org/wiki/LaTeX/Packages/Rotating

This would rotate the content you put between begin and end. Do you need a designated page to be rotated you can achieve it using \newpage and \clearpage.:

To answer your question in the comments, I don't know how to achieve this within one single environment if you are going to use different types of content (text, images...) within the turn environment. That depends a lot on what you exactly want to achieve.

\documentclass{article}
\usepackage{rotating}
\title{Test document}
\author{Wesho}
\date{18/06/2009}
\begin{document}
\maketitle

\newpage

\begin{rotate}{180}
\includegraphics{graphic.pdf}
\end{rotate}

\clearpage

\end{document}
like image 39
vahidg Avatar answered Oct 23 '22 15:10

vahidg