2

I have a landscape figure in my document that I want to move to the right because a small part of the figure falls of the page (there is enough space on the right to display it entirely without reducing the size)

\begin{landscape}
\begin{figure}[H]
\centering
\includegraphics[width = 0.4 \textwidth]{figures1}
 \end{figure}
\end{landscape}

1 Answers1

8
\begin{landscape}
\vspace*{1cm}
\hspace*{2cm}\includegraphics[width = 0.4 \linewidth]{figures1}\hspace*{-2cm}
\end{landscape}

why only .4 of the available width? In any case you can change the 1cm and 2cm to put the image anywhere on the page.

David Carlisle
  • 757,742