latex插入两张并列图片
时间: 2023-09-21 15:13:12 浏览: 118
latex插入图片
可以使用如下代码实现:
\begin{figure}[htbp]
\centering
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{figure1.png}
\caption{图片1}
\end{minipage}
\begin{minipage}[t]{0.48\textwidth}
\centering
\includegraphics[width=\textwidth]{figure2.png}
\caption{图片2}
\end{minipage}
\end{figure}
注意:需要在文档开头加入如下命令以使用图形包:
\usepackage{graphicx}
阅读全文