I'm using the template provided by IEEE:
\begin{figure}[!t]
\centering
\includegraphics[width=0.8\columnwidth]{top}
\caption{CAPTION}
\label{fig-top}
\end{figure}
However the caption is not centred. What I get is this:

Please help!
I'm using the template provided by IEEE:
\begin{figure}[!t]
\centering
\includegraphics[width=0.8\columnwidth]{top}
\caption{CAPTION}
\label{fig-top}
\end{figure}
However the caption is not centred. What I get is this:

Please help!
It seems like the easiest way to fix this, as suggested in a related StackExchange Post, is to add \usepackage{caption} into your preamble. This centers the caption relative to the figure.
However, in doing this you're changing a few aspects of the IEEEtran formatting, which might be a problem depending on what you use this document for (e.g. for a journal, you probably want to stick with their style).
IEEEtranstyle. Also, please note thatIEEEtranrequires the width to be2.5in, not0.8\columnwidth(although I think it's pretty much the same). – Mario S. E. Jun 29 '14 at 01:08IEEEtranis to set the caption in full-width (left justified) when you don't use any class options. – Werner Jun 29 '14 at 01:37IEEEtranis set properly. If you want to comply with this style you must not change the way the caption is set. – Mario S. E. Jun 29 '14 at 01:38