4 images in latex code example
Example: latex 4 pictures 2x2
\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{mwe}
\begin{document}
\begin{figure*}
\centering
\begin{subfigure}[b]{0.475\textwidth}
\centering
\includegraphics[width=\textwidth]{Example-Image}
\caption[Network2]%
{{\small Network 1}}
\label{fig:mean and std of net14}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.475\textwidth}
\centering
\includegraphics[width=\textwidth]{Example-Image}
\caption[]%
{{\small Network 2}}
\label{fig:mean and std of net24}
\end{subfigure}
\vskip\baselineskip
\begin{subfigure}[b]{0.475\textwidth}
\centering
\includegraphics[width=\textwidth]{Example-Image}
\caption[]%
{{\small Network 3}}
\label{fig:mean and std of net34}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.475\textwidth}
\centering
\includegraphics[width=\textwidth]{Example-Image}
\caption[]%
{{\small Network 4}}
\label{fig:mean and std of net44}
\end{subfigure}
\caption[ The average and standard deviation of critical parameters ]
{\small The average and standard deviation of critical parameters: Region R4}
\label{fig:mean and std of nets}
\end{figure*}
\end{document}