我发现的当前解决方案是使用 minipages 将两个图形并排显示,但它也会在它们之间增加很多空间。我希望这两个图像紧挨着,没有空间。
\begin{document}
\begin{figure}
\centering
\begin{minipage}{0.4\textwidth}
\centering
\href{https://link}{\includegraphics[width=5cm,height=5cm,keepaspectratio]{"image1".jpg}}
\end{minipage}\hfill
\begin{minipage}{0.4\textwidth}
\centering
\href{https://link}{\includegraphics[width=5cm,height=5cm,keepaspectratio]{"image2".jpg}}
\end{minipage}
\end{figure}
\end{document}