I'm wondering whether it is possible to automatically move the captions from the subfigures to the main caption.
In the example below, I would like to have in the main caption, something like, "Main Caption. (a) Subfigure 1. (b) Subfigure 2.", instead of having each caption individually, and in each subfigure that only appears the identifier "(a)" or "(b)".
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{subfig}
\begin{document}
\begin{figure}[!ht]
\centering
\subfloat[Subfigure 1]{
\rule{6.4cm}{3.6cm}
}
\subfloat[Subfigure 2]{
\rule{6.4cm}{3.6cm}
}
\caption{Main Caption}
\label{fig:dummy}
\end{figure}
\end{document}
Thanks,
adin