latex并排放三张图
时间: 2023-09-17 21:00:59 浏览: 197
在LaTeX中,要实现三张图的并排显示,我们可以使用subfigure或subfig宏包来实现。以下是一个示例代码:
\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}[htbp]
\centering
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{image1.jpg}
\caption{图1}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{image2.jpg}
\caption{图2}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.3\textwidth}
\includegraphics[width=\textwidth]{image3.jpg}
\caption{图3}
\end{subfigure}
\caption{三张图的并排显示}
\end{figure}
\end{document}
在这个示例中,我们使用了subfigure宏包,在figure环境内创建了一个subfigure环境。每个subfigure环境内可以插入一张图片,并使用caption命令为每张图片添加标题。通过修改子图宽度可以控制三张图在水平方向的占比。在figure环境外的\caption命令则为整个并排图添加一个总标题。
以上代码生成的结果是三张图片并排显示,并且每张图片都有独立的标题。使用这种方式,我们可以在LaTeX中方便地实现多张图的并排显示。
阅读全文