I am using an array of figures using subfloat as follows:
\begin{figure}
\centering
\subfloat[]{\includegraphics[width=70px,height=60px]
{img_success/rgb/rgb_001456.eps}}
\subfloat[]{\includegraphics[width=70px,height=60px]
{img_success/rule/region_001456_1.eps}}
\subfloat[]{\includegraphics[width=70px,height=60px]
{img_success/map/region_001456_1.eps}}\\
\caption{Results on our dataset: Success case}
\label{tab:results_success}
\end{figure}
However, I get numberings below the subfigures like (a), (b),... How do I omit them? I tried applying
\renewcommand*{\thesubfigure}{}
But this leaves empty parentheses "()".
How do I completely omit them?
Thanks. :)
\subfloat[]{part and the final closing brace. – egreg Mar 12 '13 at 00:10\phantomcaptioncommand if this is using thesubcaptionpackage as you have tagged it. – percusse Mar 12 '13 at 00:13\subfloatcommand is to give each sub-figure a caption and an automatically numbered label. If you don't want any of these, don't use\subfloat. You can still put all the\includegraphicsin a singlefigureenvironment. – JLDiaz Mar 12 '13 at 00:32