I have five figures to put in the following layout:
So far I have managed to obtain the above layout (using the following script), except for the labels of the sub-figures (a,b,c,d,e) that I want to be added to the figures (inside the sub-figures in the down left corner).
\begin{figure}
\captionsetup[subfigure]{labelformat=empty}
\begin{minipage}{.25\textwidth}
\begin{subfigure}{\textwidth}
\subcaption{Title1}
\vspace{0.1cm}
\includegraphics[width=1\textwidth,trim=2cm 1cm 2cm 1cm]{Figure_1}
\hspace{1cm}
\end{subfigure}
\begin{subfigure}{\textwidth}
\vspace{0.3cm}
\subcaption{Title3}
\vspace{0.1cm}
\includegraphics[width=1\textwidth,trim=2cm 1cm 2cm 1cm]{Figure_3}
\hspace{1cm}
\end{subfigure}
\end{minipage}
\hfill
\begin{minipage}{.25\textwidth}
\begin{subfigure}{\textwidth}
\subcaption{Title2}
\vspace{0.1cm}
\includegraphics[width=1\textwidth,trim=2cm 1cm 2cm 1cm]{Figure_2}
\hspace{1cm}
\end{subfigure}
\begin{subfigure}{\textwidth}
\vspace{0.3cm}
\subcaption{Title4}
\vspace{0.1cm}
\includegraphics[width=1\textwidth,trim=2cm 1cm 2cm 1cm]{Figure_4}
\hspace{1cm}
\end{subfigure}
\end{minipage}
\hfill
\begin{minipage}{.45\textwidth}
\begin{subfigure}{\textwidth}
\subcaption{Title5}
\vspace{0.1cm}
\includegraphics[width=\textwidth,trim=1cm 0cm 2cm 0.5cm]{Figure_5}
\end{subfigure}
\end{minipage}
\end{figure}
{{\bf Insert Caption Here}
I would appreciate it if someone could help me to achieve this.
Thank you in advance!

