背景
subcaption是可以取代subfig和subfigure的包,可以用于插图、子图。
导入的包
\usepackage{subcaption}
Please note: This package is incompatible with the subfigure and subfig packages.
插图
单图
\begin{figure}[ht]
\centering
\includegraphics[scale=0.6]{e1-1.png}
\caption{ 描述图像
}
\label{environment1}
\end{figure}
需要注意的是:\caption{}
在\label{}
前面
子图
\begin{minipage}[t]{0.3\textwidth}
\centering
\includegraphics{1.png}
\subcaption*{(a)} %子图编号。subcaption右上角加星号证明:可以自定义这个标号的形式,大括号里写的是自定义的标号。
\label{PT(a)}%用于索引子图
\end{minipage}
\begin{minipage}[t]{0.3\textwidth}
\centering
\includegraphics{4.png}
\subcaption*{(b)}
\label{PT(b)}%用于索引子图
\end{minipage}
\caption{Figure (a) shows ……, and Figure (b) shows ……. 两个图的共同描述}
\label{PT}%用于索引这个大图
\end{figure}
索引图、子图采用\ref{}
,例如\ref{PT}
代表索引 Figure 4
参考连接