**
1.\usepackage{subfig}和\subfloat{}
**
需要注意的是使用了\newline来另起一行。
......
\usepackage{graphicx}
\usepackage{subfig}
......
\begin{document}
\begin{figure*}[ht]
\subfloat[img 1]{\includegraphics[width=0.3\textwidth]{1.jpg}}
\hfill
\subfloat[img 2]{\includegraphics[width=0.3\textwidth]{2.jpg}}
\newline
\subfloat[img 3]{\includegraphics[width=0.3\textwidth]{3.jpg}}
\hfill
\subfloat[img 4]{\includegraphics[width=0.3\textwidth]{4.jpg}}
\caption{Caption}
\end{figure*}
......
\end{document}