在 LaTeX 中将页面旋转 180 度

发布于 2024-07-23 01:12:56 字数 30 浏览 5 评论 0原文

如何在 LaTeX 中将页面旋转 180 度?

How can I rotate a page 180 degrees in LaTeX?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

迎风吟唱 2024-07-30 01:12:56

这取决于任务,但 \rotatebox{180}\minipage 一起可以完成这项工作:

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{rotating}
\usepackage{lipsum}

\begin{document}

\lipsum[1-3]

\newpage

\noindent\rotatebox{180}{\noindent\begin{minipage}{\textwidth}
\lipsum[1]
\begin{center}\includegraphics{image01.jpg}\end{center}
\lipsum[2]
\begin{center}
\begin{tabular}{cc}
\hline
1 & 2 \\
3 & 4 \\
\hline
\end{tabular}
\end{center}
\lipsum[3]
\end{minipage}}

\clearpage

\lipsum[1-3]

\end{document}

It depends on the task, but \rotatebox{180} together with \minipage can do the job:

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{rotating}
\usepackage{lipsum}

\begin{document}

\lipsum[1-3]

\newpage

\noindent\rotatebox{180}{\noindent\begin{minipage}{\textwidth}
\lipsum[1]
\begin{center}\includegraphics{image01.jpg}\end{center}
\lipsum[2]
\begin{center}
\begin{tabular}{cc}
\hline
1 & 2 \\
3 & 4 \\
\hline
\end{tabular}
\end{center}
\lipsum[3]
\end{minipage}}

\clearpage

\lipsum[1-3]

\end{document}
独木成林 2024-07-30 01:12:56
\usepackage{lscape}

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

或者对于整个文档:

\documentclass[landscape]{article}

编辑:这当然只会将页面旋转 90°...抱歉。 ;)

\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. ;)

2024-07-30 01:12:56

您尝试过旋转套餐吗?

请参阅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}

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}
我爱人 2024-07-30 01:12:56

将页面旋转180度(横向模式)

\usepackage{geometry}
\geometry{top=2cm,bottom=1.1cm,left=0.5cm,right=0.5cm, landscape, a4paper}

在上面的代码中,横向用于旋转页面。

这种方法的优点是页眉和页脚也旋转,但是lscapepdflscape包只旋转正文而不是页眉和页脚。

缺点是横向 旋转所有页面,不能旋转一组页面中的单个页面。

For Rotating the pages into 180 degree(landscape mode)

\usepackage{geometry}
\geometry{top=2cm,bottom=1.1cm,left=0.5cm,right=0.5cm, landscape, a4paper}

In the above code the landscape is used to rotate the pages.

The advantage of this method is both header and footer also rotated, but the lscape or an pdflscape packages only rotate the body not an header and footer

The disadvantage is that landscape rotate all the pages, you can't rotate a single page in a set of pages.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文