Possible Duplicate:
Center figure that is wider than \textwidth
I have a myriad of plots to include in my document and for best quality they all fall beyond the document template margins. Following another thread/question I found I could use the following \advance\leftskip-3.1cm to center my images going over the margins:
\begin{figure}[ht]
\caption{Roofline Minimum Cut with inc. evaluation}
\begin{center}
\advance\leftskip-3.1cm
\includegraphics[scale=1.3]{pdf/roofline_mincut_inc.pdf}
\end{center}
\label{fig:roofline_mincut_inc}
\end{figure}
The problem is that all images of the exact same size need tweaking the leftskip distance so they all get centered, this is too hacky and unmaintainable, is there a way to simply say "forget about margins and put this image centered as is"?
UPDATE: Oh great, thank you for closing it! :( all solutions proposed in the linked Answer produce the same ugly flushed result and each figure needs special tweaking to get it properly centered.