Consider the following code
\begin{figure}[h!]
\centering
\begin{minipage}{\linewidth}
\centering
\begin{subfigure}[b]{.4\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{}
\end{subfigure}
\centering
\begin{subfigure}[b]{.4\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{}
\end{subfigure}
\end{minipage}
\par\medskip
\caption{Example main caption}
\end{figure}
which gives
Is it possible to raise the \caption{}
of a single subfigure? For example, get something like
I have tried something like \vspace{-2mm}\caption{}\vspace{2mm}
, but it does not seem to work. Any ideas?