[Tex/LaTex] How to put 5 images with different sizes in Latex

graphics

I want to put together five images in Latex as shown in the image:

1

I tried tabular, subfigure, subfloat, but I didn't manage to get to something similar to that. I'm new to Latex!

Thank you for the help.

This is my code which get me this images enter image description here:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\begin{document}
\begin{tabular}{llp{5cm}}
    Caption & Caption & \\
    \hspace{-100px}
    \includegraphics[width=6cm]{mean_fall.png}
    &
    \hspace{-50px}
    \includegraphics[width=6cm]{mean_spring.png}
    & Caption\\
    Caption & Caption & 
    \hspace{-100px}
    \includegraphics[width=10cm]{mean_annual.png}
    \vspace{-150px}\\
    \hspace{-100px}
    \includegraphics[width=6cm]{mean_summer.png}
    &
    \hspace{-50px}
    \includegraphics[width=6cm]{mean_winter.png} 
    & \\ 
\end{tabular}
\end{document} 

Best Answer

mwe

\documentclass{article}
\usepackage{graphicx}
\usepackage{multicol}
\begin{document}
\begin{figure}
\belowcaptionskip1ex
\begin{multicols}{3}
\caption{Image A}\includegraphics[width=\linewidth]{example-image-a}
\caption{Image  B}\includegraphics[width=\linewidth]{example-image-b}
\caption{Image  C}\includegraphics[width=\linewidth]{example-image-c}
\caption{Empty Image}\includegraphics[width=\linewidth]{example-image-plain}\newpage\vspace*{\fill}
\caption{Image Image}\includegraphics[width=\linewidth]{example-image}\vspace*{\fill}
\end{multicols}
\end{figure}
\end{document}