I would like to align one big image next to three different small ones with the help of the subcaption (wich is used in all the rest of my document). But I still don't get the posistions "right". The one-nextTo-two version looks okay (despite an unnecessary horizontal space in the beginning), but adding the third figure yield in the opening of a third column...
Can anybody help me to get this mess in the right form?
Thanks a lot in advance, Guntram
\documentclass[]{article}
\usepackage[utf8]{inputenc}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\ffigbox[\FBwidth]{
\begin{subfloatrow}
\ffigbox[\FBwidth]{\caption{image1}}{\includegraphics[width=2cm,height=8cm]{image1a}}%
\ffigbox[\FBwidth]{\caption{invisible?}}
{
\ffigbox[\FBwidth]{\caption{image1b}}{\includegraphics[width=2cm,height=2cm]{image1b}}%
\ffigbox[\FBwidth]{\caption{image1c}}{\includegraphics[width=2cm,height=5cm]{image1c}}%
}
\end{subfloatrow}
}{\caption*{image1}}
\end{figure}
\begin{figure}
\ffigbox[\FBwidth]{
\begin{subfloatrow}
\ffigbox[\FBwidth]{\caption{image2}}{\includegraphics[width=2cm,height=8cm]{image2a}}%
\ffigbox[\FBwidth]{\caption{invisible?}}
{
\ffigbox[\FBwidth]{\caption{image2b}}{\includegraphics[width=2cm,height=2cm]{image2b}}%
\ffigbox[\FBwidth]{\caption{image2c}}{\includegraphics[width=2cm,height=5cm]{image2c}}%
\ffigbox[\FBwidth]{\caption{image2d}}{\includegraphics[width=2cm,height=3cm]{image2d}}%
}
\end{subfloatrow}
}{\caption*{image2}}
\end{figure}
\end{document}

Do you have some idea, WHY my code doesn't work as expected?
– Guntram Apr 21 '14 at 21:36