比如你的图片名为 1.jpg~5.jpg,你可以这样写:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
Text here
\begin{minipage}[c]{0.75\textwidth}
\includegraphics[width=0.15\textwidth]{1.jpg}
\includegraphics[width=0.15\textwidth]{2.jpg}
\includegraphics[width=0.15\textwidth]{3.jpg}
\includegraphics[width=0.15\textwidth]{4.jpg}
\includegraphics[width=0.15\textwidth]{5.jpg}
\end{minipage}
\end{document}