LaTeX:Tikz多子图标注格式

如题:一幅大图中又分多个小图,现希望给每个小图加小图名,整个大图也要有一个图名。此外,图名必须能换行且句中。

必备宏包:

  • \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}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容