我正在用 LaTeX 格式写论文book
。我有一个大图形,我想旋转它以使其可以侧面查看。我可以使用选项 来实现这includegraphics
一点angle=90
。
我的问题:有没有办法自动在偶数页上旋转 -90 度,在奇数页上旋转 90 度,以便图形的下边缘始终位于书页的外边缘?
答案1
使用rotating
包及其sidewaysfigure
环境。(以下示例必须编译两次才能正确旋转偶数/奇数页。)
\documentclass{book}
\usepackage{rotating}
\usepackage{lipsum}
\begin{document}
\chapter{foo}
\lipsum[1-6]
\begin{sidewaysfigure}
\centering
{\Huge (Picture)}
\caption{A figure}
\end{sidewaysfigure}
\begin{sidewaysfigure}
\centering
{\Huge (Picture)}
\caption{Another figure}
\end{sidewaysfigure}
\lipsum[7-12]
\end{document}