2列、横長ページ

2列、横長ページ

2 列の記事を書いています。画像が大きすぎるため、新しい横長ページに配置したいと考えています。そこで、次のコードを使用しました。

\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

しかし、最初に間に白いページが表示され、その後 2 列のレイアウトが消えてしまいます :(。これを修正する方法を知っている人はいますか?

答え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}

風景図

関連情報