[Tex/LaTex] figure not centering properly

floatshorizontal alignment

I have a figure with a caption and it doesn't seem to center properly. It seems to left justify the figure:

\begin{figure}
{\centering\includegraphics[width=.9\textwidth]{figures/afigure}}

\protect\caption{Some Title\label{fig:some_label}}

\vspace{.3cm}

\footnotesize

A really nice description of the plot that you see above. It talks about all the interesting aspects of this plot. 

\normalsize

\end{figure}

Best Answer

You have two choices:

  • Remove the pair of curly braces that enclose the \centering and \includegraphics statements.

  • If you want to keep the pair of curly braces, insert \par just ahead of the closing curly brace, }.

Related Question