翻转景观环境

翻转景观环境

我有一个页面需要处于横向模式,因此我使用了类似以下的方法:

\documentclass[a4paper,12pt]{report} 
\usepackage{lipsum}
\usepackage{pdflscape}

\begin{document}

\lipsum

\begin{landscape}
\lipsum[1]
\end{landscape}

\end{document}

这确实会旋转我的页面。但不幸的是,我希望它以相反的方向旋转(页码在右侧),这样您就可以从书的边缘到装订处阅读纸质版本。

我该怎么办?有允许这样做的理由吗landscape

编辑:在我的实际情况中,横向页面上不仅会有文字,还会有我想指出的图形向下到绑定。

答案1

我会用旋转包装

enter image description here

使用sidewaysturnrotating环境,您可以以任何您想要的方式显示页面。

以下是 MWE 的代码:

\documentclass[border=5mm,tikz]{report}
\usepackage{mwe}% only for images
\usepackage{rotating}
\begin{document}\quad\newpage% only for creating the image

\begin{sideways}
  \includegraphics[width=16cm]{example-image-a}
\end{sideways}

\begin{turn}{-90}
  \includegraphics[width=16cm]{example-image-b}
\end{turn}

\end{document}

相关内容