latex 如何一行中插入多个图片且只在最左边加标注

2024-11-15 11:35:22
推荐回答(1个)
回答(1):

比如你的图片名为 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}