I am trying to arange four images in a 2 by 2 grid. The caption of the entire figure (not the subfigure) should appear on the right side and not on the bottom. I tried using the caption and subcaption package and minipages and came up with this code:
\begin{figure*}[t!]
\centering
\begin{minipage}[l]{0.7\textwidth}
\begin{subfigure}{.33\linewidth}
\centering
\fakeimage
\caption{Colum 1}\label{fig:image1}
\end{subfigure}
\begin{subfigure}{.33\linewidth}
\centering
\fakeimage
\caption{Colum 2}\label{fig:image2}
\end{subfigure}
\bigskip
\begin{subfigure}{.33\linewidth}
\centering
\fakeimage
\end{subfigure}
\begin{subfigure}{.33\linewidth}
\centering
\fakeimage
\end{subfigure}
\end{minipage}
\begin{minipage}[r]{.10\textwidth}
\centering
\caption{This is the caption for all four images.}
\end{minipage}
\end{figure*}
Sadly, the caption does not appear right to the images but under the bottom right image. How can I fix this?
