latex 如何把三个不同的图放在一行且每个图都有注释

2024-12-19 21:15:57
推荐回答(2个)
回答1:

\begin{figure}[htbp]
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.2in, height=2.0in]{1.eps}
\caption{fig1}
\label{fig:side:a}
\end{minipage}%
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.2in, height=2.0in]{2.eps}
\caption{fig2}
\begin{minipage}[t]{0.3\linewidth}
\centering
\includegraphics[width=2.2in, height=2.0in]{3.eps}
\caption{fig2}
\label{}
\end{minipage}
\end{figure}
在\caption{}中填写图形的注释

回答2:

直接使用\includegraphics即可,只要图片宽度能放在一行就可以啊
注释?你指的是标题么?可以使用subfig或subcaption宏包