One option would be using the/my subcaption package. It offers a command called
\phantomcaption
which does all a regular
\caption
does (incrementing the figure or sub-figure counter, generating an anchor for
\label
and
\ref
, ...) but does not actually typeset a caption text.
For example:
Code: Select all
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{subcaption}
\begin{document}
\verb|\ref{fig:5.2a}| gives \ref{fig:5.2a} and
\verb|\ref{fig:5.2b}| gives \ref{fig:5.2b}.
\begin{figure}
\centering
\begin{subfigure}{0.8\linewidth}
\includegraphics[width=\hsize]{52a}
\phantomcaption
\label{fig:5.2a}
\end{subfigure}
\begin{subfigure}{0.8\linewidth}
\includegraphics[width=\hsize]{52b}
\phantomcaption
\label{fig:5.2b}
\end{subfigure}
\caption{(a) Study of convergence..., (b) zoomed picture of the encircled
portion of (a).....}
\end{figure}
\end{document}