Page in landscape, not figure

Asked

Viewed 212 times

0

I’m creating a file in latex, and I need one of the pages to be in landscape, because it has several figures. However, only the figures are getting into landscape, and not the page itself.

I’m doing it this way:

\begin{landscape}
\begin{figure}[H]
\caption{\label{fig:sub_2018_OSPO-OSISAF_media}OSISAF E OSTIA}
\centering
\includegraphics[width=6cm,height=4cm]{Figuras_resultado/fig_sub_mes_estacao/sub_201801_OSPO-OSISAF_media.jpg}
 ... várias figuras
\end{figure}
\end{landscape}

How are you getting:

inserir a descrição da imagem aqui

How I want it to stay:

inserir a descrição da imagem aqui

Someone knows how to do it?

Thank you for your attention.

1 answer

1


pdflscape

If you are using a Latex PDF editor, use pdflscape, which adds PDF support to the package lscape. According to the following example code:

\usepackage{pdflscape}
...
\begin{landscape}
...
\end{landscape}

An example can be seen in Overleaf.

lscape

Or the package lscape

\usepackage{lscape}
...
\begin{landscape}
...
\end{landscape}
  • Hello. It worked out! Thank you!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.