如何在 LaTex 中的每个图像下放置标签?
How to put lables under each image in LaTex?
我正在使用背页来写我的论文。我想在每个图像下放置 (a)(b)(c)(d) 标签。我该怎么做?
\begin{figure}[ht!] %!t
\centering
\includegraphics[width=1.5in]{15_6277.png}
\includegraphics[width=1.5in]{16_6277.png}
\[\smallskipamount]
\includegraphics[width=1.5in]{17_6277.png}
\includegraphics[width=1.5in]{18_6277.png}
\[\smallskipamount]
\includegraphics[width=1.5in]{19_6277.png}
\includegraphics[width=1.5in]{ensemled_6277.png}
\caption{Experiments Results and Final Ensemble Result}
\label{Compare_S}
\end{figure}
放在图中的tabular
环境中即可;
\begin{figure}[!htbp]
\centering
\begin{tabular}{cc}% l,c,r
\includegraphics{} & \includegraphics{}\
(a) & (b)\
\includegraphics{} & \includegraphics{}\
(c) & (d)\
\end{tabular}
\caption{\label{fig:label}Caption}
\end{figure}
我正在使用背页来写我的论文。我想在每个图像下放置 (a)(b)(c)(d) 标签。我该怎么做?
\begin{figure}[ht!] %!t
\centering
\includegraphics[width=1.5in]{15_6277.png}
\includegraphics[width=1.5in]{16_6277.png}
\[\smallskipamount]
\includegraphics[width=1.5in]{17_6277.png}
\includegraphics[width=1.5in]{18_6277.png}
\[\smallskipamount]
\includegraphics[width=1.5in]{19_6277.png}
\includegraphics[width=1.5in]{ensemled_6277.png}
\caption{Experiments Results and Final Ensemble Result}
\label{Compare_S}
\end{figure}
放在图中的tabular
环境中即可;
\begin{figure}[!htbp]
\centering
\begin{tabular}{cc}% l,c,r
\includegraphics{} & \includegraphics{}\
(a) & (b)\
\includegraphics{} & \includegraphics{}\
(c) & (d)\
\end{tabular}
\caption{\label{fig:label}Caption}
\end{figure}