如题:一幅大图中又分多个小图,现希望给每个小图加小图名,整个大图也要有一个图名。此外,图名必须能换行且句中。
必备宏包:
- \usepackage{subfig} % 子图宏包
- \usepackage[justification = centering, labelsep =period]{caption} % 多行图名都居中 + 图分隔用点(默认是冒号)
标准格式如下:
\begin{figure}
\centering % 整体居中
\subfloat[子图1]{
\begin{tikzpicture}
\Vertex[color = white, size = 1.8]{A}
\Text[x = 0, y = 0, style = {align = center}, fontsize = \large]{本职工作}
\end{tikzpicture}
}
\hspace{10pt} % 间隔10pt
\subfloat[子图2]{
\begin{tikzpicture}
\Vertex[color = white, size = 1.8]{A}
\Text[x = 0, y = 0, style = {align = center}, fontsize = \large]{本职工作}
\end{tikzpicture}
}
\hspace{10pt}
\subfloat[子图3]{
\begin{tikzpicture}
\Vertex[color = white, size = 1.8]{A}
\Text[x = 0, y = 0, style = {align = center}, fontsize = \large]{本职工作}
\end{tikzpicture}
}
\hspace{10pt}
\subfloat[子图4 \\ 图名可换行]{
\begin{tikzpicture}
\Vertex[color = white, size = 1.8]{A}
\Text[x = 0, y = 0, style = {align = center}, fontsize = \large]{本职工作}
\end{tikzpicture}
}
\caption{左图+右图 \\ 也可以换行且句中}\label{pic:total}
\end{figure}
网友评论