将子图集拆分为两行

将子图集拆分为两行

是否可以将由三个子图组成的图形块拆分成两行?我想将第一个子图保留在第一行,将其他子图保留在第二行。

\begin{figure*}[t]
\centering
    \subfigure[sub1]{\includegraphics{path1}\label{fig:path1}}
    \subfigure[sub2]{\includegraphics{path2}\label{fig:path2}}
    \subfigure[sub3]{\includegraphics{path3}\label{fig:path3}}
\end{figure*}

答案1

下面是一个使用 subcaption 包和 threeparttable 包作为 tablenotes 环境的示例(环境不是必需的,因为您可以使用带有 \footnotesize 的简单文本)

\begin{图}[t!p]
         \begin{子图}[b]{0.2\textwidth}
                 \定心
                 \includegraphics[width=0.98\textwidth]{coolcat}
                 \caption{酷}
                 \label{fig2:coolcat}
         \end{子图}
         \begin{子图}[b]{0.4\textwidth}
                 \定心
                 \includegraphics[width=0.985\textwidth]{bossycat}
                 \caption{专横}
                 \label{fig2:bossycat}
         \结束{子图}%
         \begin{子图}[b]{0.4\textwidth}
                 \定心
                 \includegraphics[width=0.98\textwidth]{皱眉猫}
                 \caption{反光}
                 \label{fig2:皱眉猫}
         \end{子图}
% 留空行来换行         

\begin{subfigure}[b]{0.31\textwidth} \centering \includegraphics[width=0.985\textwidth]{scaredbabycat} \caption{Scared} \label{fig2:scared} \end{subfigure} \begin{subfigure}[b]{0.69\textwidth} \centering \includegraphics[width=\textwidth]{tiredcat} \caption{Tired} \label{fig2:tired} \end{subfigure} \begin{tablenotes} \item Images in the public domain. \end{tablenotes} \caption{Cats} \label{fig2} \end{figure}

得出的结果为:

在此处输入图片描述

相关内容