I am adding four sub-figures in a single figure using the following code:
Code: Select all
\begin{figure*}
\centering
\subfloat[Test-part-2 (distance analysis)]{\includegraphics[width=2.2in]{Images/dist-analysis-part2-3}}
\subfloat{\includegraphics[width=0.25in]{Images/dist-analysis-spectrum3}}
\subfloat[Test-part-3 (distance analysis)]{\includegraphics[width=2.2in]{Images/dist-analysis-part3}}
\subfloat[Test-part-4 (distance analysis)]{\includegraphics[width=2.2in]{Images/dist-analysis-part4}}
\caption{caption goes here}
\label{fig:dist-analysis}
\end{figure*}
But I am getting an 'a' under the first sub-figure, nothing under the second sub-figure, but then a 'c' under the third sub-figure.
Is there some way, I can totally skip the second sub-figure from counting?
regards