This is my first time using \subfig because I have a figure (Figure 8) that contains two parts, and it was better to put them each on separate pages but one after the other, since they are related (hence, part a and part b) and each figure is as large as the page.
The captions for each part of the figure appear correctly under the figure, but the title "Figure 8" appears centered under the caption. Something like this
(a) Here is the caption of the
first part of the figure.
Figure 8
I would like the caption to beggin as: Figure 8(a): Here is the caption.... [or Figure 8.a: ]
How can I make the title of the figure to appear together with the caption?
Thank you very much in advance!
Here is the code I used:
\usepackage[caption=true]{caption,subfig}
....
\begin{figure}
\centering
\subfloat[Here is the caption of the first part of the figure (a)]{\includegraphics[scale=0.6]{Figures/Profile_a.jpg}}
\caption{}
\label{fig:Prof_a}
\end{figure}
\begin{figure}
\ContinuedFloat
\centering
\subfloat[Here is the caption of the second part of the figure (b)]{\includegraphics[scale=0.6]{Figures/Profile_b.jpg}}
\caption{}
\label{fig:Prof_b}
\end{figure}
subfloatpackage would fit your needs better. – Jun 18 '11 at 07:38