并排 3 张图片

并排 3 张图片

我想将 3 张图片并排放置。实际上,我就是这样做的,但它们并没有并排放置(见下图)。还有什么办法可以让这 3 张图片只显示 1 个标题吗?

\begin{figure}[ht]


\begin{minipage}[b]{0.3\linewidth}
\centering
\includegraphics[scale=1]{i/houghtrain.png}
\caption{default}
\label{fig:figure1}
\end{minipage}

\hspace{0.3cm}


\begin{minipage}[b]{0.4\linewidth}
\centering
\includegraphics[width=\textwidth]{i/houghframe.png}
\caption{default}
\label{fig:figure2}
\end{minipage}

\hspace{0.3cm}

\begin{minipage}[b]{0.4\linewidth}
\centering
\includegraphics[width=\textwidth]{i/houghspace.png}
\caption{default}
\label{fig:figure3}
\end{minipage}
\end{figure}

他们的定位不太好:

在此处输入图片描述

如果需要的话,我们可以超出文档的边缘

答案1

如果您只想要并排的三幅图像,它们可以像定位三个字母或盒子一样定位,不需要minipage包装器等。我还添加了p您的可选参数,因为没有它会使浮点数更有可能到达文档的末尾。

\begin{figure}[htp]

\centering
\includegraphics[width=.3\textwidth]{i/houghtrain.png}\hfill
\includegraphics[width=.3\textwidth]{i/houghframe.png}\hfill
\includegraphics[width=.3\textwidth]{i/houghspace.png}

\caption{default}
\label{fig:figure3}

\end{figure}

相关内容