双栏,横向页面

双栏,横向页面

我正在写一篇文章,有两列。因为我的图片太大,我想把它放在一个新的横向页面上。所以我使用了以下代码:

\newgeometry{left=3.0cm,bottom=30mm,top=20mm}

\afterpage{%
    \clearpage% Flush earlier floats (otherwise order might not be correct)
    \thispagestyle{empty}% empty page style (?)
    \begin{landscape}% Landscape page

\begin{figure} [H]
    \centering
    \includegraphics[scale=1]{./figures/Figure2.png}
    \caption{Xx}
    \label{fig:historicaldata}
\end{figure}

   \end{landscape}
    \clearpage% Flush page
}

\restoregeometry

但是首先中间会出现一个白页,然后两列布局就消失了 :(。有人知道如何解决这个问题吗?

答案1

我将使用rotating包的sidewaysfigure*环境。例如:

\documentclass[twocolumn]{article}
\usepackage{geometry,graphicx,kantlipsum,rotating}
\begin{document}
\kant[1-4]
\begin{sidewaysfigure*}
  \centering
  \includegraphics[scale=.7]{example-image-letter-landscape}
  \caption{A rotated figure}
\end{sidewaysfigure*}
\kant[5-10]
\end{document}

山水人物

相关内容