在 LaTeX 中将页面旋转 180 度
如何在 LaTeX 中将页面旋转 180 度?
How can I rotate a page 180 degrees in LaTeX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 LaTeX 中将页面旋转 180 度?
How can I rotate a page 180 degrees in LaTeX?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
这取决于任务,但
\rotatebox{180}
与\minipage
一起可以完成这项工作:It depends on the task, but
\rotatebox{180}
together with\minipage
can do the job:或者对于整个文档:
编辑:这当然只会将页面旋转 90°...抱歉。 ;)
Or for the whole document:
Edit: This would of course only rotate the page by 90°... Sorry. ;)
您尝试过旋转套餐吗?
请参阅http://en.wikibooks.org/wiki/LaTeX/Packages/Rotating
这会轮换您在开始和结束之间放置的内容。 您是否需要旋转指定页面,可以使用
\newpage
和\clearpage
来实现。:要回答您在评论中的问题,我不知道如何如果您要在
turn
环境中使用不同类型的内容(文本、图像...),请在一个环境中实现这一目标。 这在很大程度上取决于您到底想要实现什么。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.将页面旋转180度(横向模式)
在上面的代码中,
横向
用于旋转页面。这种方法的优点是页眉和页脚也旋转,但是
lscape
或pdflscape
包只旋转正文而不是页眉和页脚。缺点是
横向
旋转所有页面,不能旋转一组页面中的单个页面。For Rotating the pages into 180 degree(landscape mode)
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 anpdflscape
packages only rotate the body not an header and footerThe disadvantage is that
landscape
rotate all the pages, you can't rotate a single page in a set of pages.