There are already a few questions regarding this layout:
- How do I do complex positioning of my subfigures?
- Is the following layout possible with the subfigure package?
- Sub-figures of different sizes grid layout
However, none of them seems to consider aligning the subcaptions.
(1) A workaround is to add empty lines.
(2) I was trying to resolve this properly. For a simple layout with two or more figures next to each other, one can use the command \subcaptionbox from the package subcaption.sty.
I have created my own attempt using the \subcaptionbox command in minipages. As far as I can tell there is only a small problem in the subcaption of image 2 which is not centered if it spans over a second line as the other subcaptions do. This issue disappears if you remove the second line from this subcaption
\documentclass[draft]{article}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{mwe}
\newsavebox{\bigimage}
\begin{document}
\begin{figure}
\sbox{\bigimage}{%
\subcaptionbox
{large image}
[0.5\linewidth]
{\includegraphics[width=\linewidth,height=350pt]{example-image-c}}%
}
\begin{minipage}[b][\ht\bigimage]{0.5\linewidth}
\subcaptionbox{small image 1}[\linewidth]{\includegraphics[width=\linewidth]{example-image-a}}
\vfill
\subcaptionbox{small image 2\\ with a second caption line}[\linewidth]{\includegraphics[width=\linewidth]{example-image-b}}
\end{minipage}%
\begin{minipage}[b][\ht\bigimage]{0.5\linewidth}
\usebox{\bigimage}
\end{minipage}
\caption{caption for figure}
\label{fig:figure}
\end{figure}
\end{document}
Update
I just noticed a second issue regarding the numbering of the subcaptions. Figure 1 should have (a), Figure 2 (b) and Figure 3 (c).




\captionsetup[subfigure]{justification=centering}. – Hotschke Jun 08 '18 at 08:26