How is it possible to import figures into a somewhat triangular orientation? By triangular orientation I mean having one figure and then a further two figures underneath where all figures have a different caption.
I can place figures side by side with the following:
\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics{Figures/fig1.pdf}
\caption{blah blah}
\label{fig:blah1}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics{Figures/fig2.pdf}
\caption{blah blah}
\label{fig:blah2}
\end{minipage}
\end{figure}
I would now like to place another figure on top of this to give this triangular orientation I mentioned. How can this be achieved?

