横向旋转错误页面

横向旋转错误页面

考虑以下 MWE。我希望文本中的大图在 pdfviewer 中具有横向方向,因此我使用 pdflscape。我发现我必须使用 选项而不是中使用的revtex4标准,但横向仍然无法正常工作。revtex4-1emlateapj class

带有图形的页面没有旋转,之前的页面旋转了。如果我将风景放入环境中\afterpage,则不会再旋转任何内容...这里发生了什么,更重要的是,我该如何解决?这么简单的问题竟然花了我这么长时间,真是让我抓狂。

\documentclass[revtex4]{emulateapj}
\usepackage{pdflscape}
\usepackage{afterpage}
\usepackage{graphicx}
\usepackage{capt-of}
\usepackage{lipsum}

\begin{document}
\title{Dummy Title}
\author{someone and someone}

\begin{abstract}
  \lipsum
\end{abstract}

\keywords{key1,key2}

\section{Introduction}
\label{intro}
\lipsum
\lipsum
%\afterpage{
\begin{landscape}
  \includegraphics[width=\textwidth]{testFig.png}
  \captionof{figure}{some caption} 
\end{landscape}
%}
\section{Conclusions}
\lipsum[3]
\end{document}

相关内容