\usepackage{lscape}
\begin{landscape}
Some text
\end{landscape}
Run Code Online (Sandbox Code Playgroud)
或者对于整个文件:
\documentclass[landscape]{article}
Run Code Online (Sandbox Code Playgroud)
编辑:这当然只会将页面旋转90°...抱歉.;)
你试过旋转包吗?
见http://en.wikibooks.org/wiki/LaTeX/Packages/Rotating
这会旋转您在开始和结束之间放置的内容.您是否需要旋转指定页面,您可以使用\newpage和实现它\clearpage.:
要在评论中回答您的问题,如果您要在环境中使用不同类型的内容(文本,图像......),我不知道如何在单一环境中实现此目的turn.这在很大程度上取决于你想要实现的目标.
\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}
Run Code Online (Sandbox Code Playgroud)