
Estou escrevendo um artigo, com 2 colunas. Como minha imagem é muito grande, quero colocá-la em uma nova página paisagem. Então usei o seguinte código:
\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
Mas então primeiro aparece uma página em branco no meio e depois o layout de duas colunas desaparece :(. Alguém sabe como consertar isso?
Responder1
Eu usaria o ambiente rotating
do pacote sidewaysfigure*
. Por exemplo:
\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}