Include the package by adding this line to the preamble
\usepackage[strict]{changepage}
... and use the \adjustwidth{leftmargin}{rightmargin} inside the figure environment, for example
\begin{figure}
\begin{adjustwidth}{-10mm}{-10mm}
\includegraphics{wide}
\caption{Wide figure}
\end{adjustwidth}
\end{figure}
In this example, both the left and right margins are reduced by 10 mm, making more room for the figure. The command also works with subfigures.
2 comments:
Awesome, thanks !
Thanks Martin,
It seems like the figure is following the new margin, but the caption doesn't. Any suggestions? (I know this is a post from 2012, but let me know if you have any clue.)
Cheers,
Cal
Post a Comment