在中间位置的每个子图像下添加标签(使用 includegraphics)

在中间位置的每个子图像下添加标签(使用 includegraphics)

我只是想知道如何才能在每个子图像下添加标签,并且标签应该在每个图像下的行中以及中间根据下一行中的每个子图像进行放置。(我有两行 4 幅图像。)这是我的代码:

\begin{figure}
\centering
\includegraphics[width=1in]{box-eps-converted-to.pdf}
\includegraphics[width=1in]{ori_phantom_py-eps-converted-to.pdf} \\
\includegraphics[width=1in]{ct_thorax-eps-converted-to.pdf} 
\includegraphics[width=1in]{ct_chest-eps-converted-to.pdf}
\end{figure}

提前致谢!

答案1

在此处输入图片描述

使用子字幕如下:

\documentclass{article}
\usepackage{caption,subcaption}
\usepackage[demo]{graphicx}

\begin{document}
\begin{figure}
\centering
    \begin{subfigure}[b]{1in}
\includegraphics[width=\linewidth]{box-eps-converted-to.pdf}
    \caption{}
    \end{subfigure}\hfil
    \begin{subfigure}[b]{1in}
\includegraphics[width=\linewidth]{ori_phantom_py-eps-converted-to.pdf} 
   \caption{}
    \end{subfigure}

    \begin{subfigure}[b]{1in}
\includegraphics[width=\linewidth]{ct_thorax-eps-converted-to.pdf}
   \caption{}
    \end{subfigure}\hfil
    \begin{subfigure}[b]{1in}
\includegraphics[width=\linewidth]{ct_chest-eps-converted-to.pdf}
   \caption{}
   \end{subfigure}
\end{figure}
\end{document}

答案2

我使用 subcaption 包。下面给出了关于如何使用它的非常好的描述:

https://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions

它包括如何添加标题和单独的标签。

相关内容