vote up 4 vote down star
2

I have a fairly large figure in a LaTeX document. This figure is too large for the left and right margin of the document. This results in the figure being placed flush with the left margin, and way beyond the right margin. What I want is to do, is center the figure on the page. Can I do this, e.g. by setting a different left margin for this figure?

flag

3 Answers

vote up 4 vote down check

If the figure is e.g. 3 inches too wide, add a negative space of half that before the figure:

\hspace*{-1.5in}
\includegraphics{...}
link|flag
vote up 0 vote down

-The above did not work for me as I wanted the figure wider than the caption. Also, I think there is a override by the endfloat package.

-This will leave the entire document intact and only alter the figure:

\begin{figure}

\advance\leftskip-4cm
\includegraphics[options]{location}

\end{figure}

-You could also use:

\advance\rightskip-2cm

kind regards,

Ian Gregory Sydney Uni, Maths.

link|flag
vote up 4 vote down

If the figure is an external graphics, then do like this:

\begin{figure}
  \begin{center}
   \includegraphics[width=\textwidth]{...}
  \end{center}
\end{figure}

\textwidth will stretch it to full text width. You can specify a coefficient like, for example, 0.75 of the text width:

\includegraphics[width=0.75\textwidth]{...}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.