4

I would like to organize 3 figures as it's shown in the figure below:

enter image description here

Can anyone help?

Werner
  • 603,163

1 Answers1

4

Something like this? (The [b] position specifiers are needed to bottom-align subfigures b and c.)

enter image description here

\documentclass[demo]{report} % omit 'demo' option in real document
\usepackage{graphicx,subcaption}
\begin{document}
\setcounter{chapter}{1} % just for this example

\begin{figure}
\begin{minipage}[b]{0.45\textwidth}
\begin{subfigure}[b]{\linewidth}
\includegraphics[width=\linewidth]{a}
\caption{Caption A}
\end{subfigure}

\vspace*{5mm} % vertical whitespace
\begin{subfigure}[b]{\linewidth}
\includegraphics[width=\linewidth]{b}
\caption{Caption B}
\end{subfigure}
\end{minipage}
\hfill        % horizontal whitespace
\begin{subfigure}[b]{0.45\textwidth}
\includegraphics[width=\linewidth,height=1.5\linewidth]{c}
\caption{Caption C}
\end{subfigure}

\caption{Caption Bla}
\end{figure}
\end{document}
Mico
  • 506,678
  • The figures don't appear in the format that you show. They appear in a vertical line – Raquel Gomes Jun 21 '16 at 09:20
  • @RaquelGomes - The screenshot is based exactly on the code I've posted. In your code, did you possibly insert one or more blank lines immediately before or after the \hfill instruction? – Mico Jun 21 '16 at 09:24
  • 1
    Yes, I add put a blank line. The problem is solved. Thanks – Raquel Gomes Jun 21 '16 at 09:28