插入多个子标题(a、b、...),对齐于流程图下方

插入多个子标题(a、b、...),对齐于流程图下方

我有一个图形表示系统从左到右在 5 个状态之间转换。我想在每个状态 (a)、(b) 等下方添加一个对齐的子标题。由于所有状态都包含在一个图形中,这超出了我目前对 Latex 的理解。

这是我打印图形的代码:

\begin{figure*}[b!] 
  \centering
  \includegraphics[width=\textwidth]{Figure_1.eps}
  \caption{\label{fig:static_analysis} Transition graphs.}
\end{figure*}

作为参考,单个图形和标题的最终状态应该是这样的:

--    --    --    --    --
-- -> -- -> -- -> -- -> --
--    --    --    --    --
(a)   (b)   (c)   (d)   (e)
 Fig. X: Transition states

我可以手动插入子标题吗?还是需要将图形拆分成单独的块?前者是首选,因为状态之间有一些过渡箭头。

答案1

使用minipages 表示子图,使用\caption*s 表示子标题:

\documentclass{article}

\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage{lipsum}
\begin{document}

\lipsum[1]

\begin{figure}
    \centering
    \begin{minipage}{0.15\textwidth}
        \includegraphics[width = \textwidth]{a}
        \caption*{(a)}
    \end{minipage} \hfill \(\rightarrow\) \hfill
    \begin{minipage}{0.15\textwidth}
        \includegraphics[width = \textwidth]{b}
        \caption*{(b)}
    \end{minipage} \hfill \(\rightarrow\) \hfill
    \begin{minipage}{0.15\textwidth}
        \includegraphics[width = \textwidth]{c}
        \caption*{(c)}
    \end{minipage} \hfill \(\rightarrow\) \hfill
    \begin{minipage}{0.15\textwidth}
        \includegraphics[width = \textwidth]{d}
        \caption*{(d)}
    \end{minipage} \hfill \(\rightarrow\) \hfill
    \begin{minipage}{0.15\textwidth}
        \includegraphics[width = \textwidth]{e}
        \caption*{(e)}
    \end{minipage}
    \caption{Transition states}
\end{figure}

\lipsum[2]

\end{document}

(您可以删除由 引入的虚拟文本\lipsum。)它看起来像这样:

在此处输入图片描述

相关内容