There is a beautiful post where it is explained more or less what I would like to do.
Actually, I am not using subfigure, but \usepackage{subfig}. Therefore, I've tried to implement the example with the subfig solution. My entire document is using subfig, I would not change to subfigure now.
Here is the code I am using:
\begin{figure}[tb]
\centering
\sbox{\bigleftbox}{%
\begin{minipage}[b]{.5\textwidth}
\centering
\vspace*{\fill}
\subfloat[Image 1]
{\includegraphics[height=5cm]%
{images1}%
\label{image1}}
\end{minipage}%
}\usebox{\bigleftbox}%
\begin{minipage}[b][\ht\bigleftbox][s]{.5\textwidth}
\centering
\subfloat[Image 2]
{\includegraphics[width=0.9\linewidth]%
{images2}%
\label{image2}}
\vfill
\subfloat[Image 3]
{\includegraphics[width=0.9\linewidth]%
{images3}%
\label{image3}}
\end{minipage}
\caption{%
Figure}
\label{figure}
\end{figure}
In the attached picture I can see the result and it is not glorious. I would not like to change the change the size of the picture. The size shall remain the same. The problem is that 1) the left picture is not vertically centered with respect with the two other images, 2) the caption of the figure is not at the bottom of the last picture, and 3) the title of the next section is entering the figure.
How is it possible to solve all these problems using subfig and not subfigure?
I would be very thankful for your help.





\documentclass{...}and ending with\end{document}. – Zarko Mar 12 '19 at 18:16subfigand insisting in it in combination of thesaveboxan and theminipagesmakes the result and your demand really strange. If you really are open to useminipages, than thesubcaptionpackage should be enough for your approach and thesubfigcould not help somehere. – koleygr Mar 12 '19 at 18:55subfigpackage could be used for it (doesn't really use it often but if this was the case thesubcaptionpackage and theminipagesshould be enough). Commenting just to explain the above comment and to suggest to to have a look (whenever you find time) at thesubcaptionpackage that is better cooperating withminipagesand such cases as this one. – koleygr Mar 12 '19 at 19:51