美文网首页
LaTeX:Tikz多子图标注格式

LaTeX:Tikz多子图标注格式

作者: 胜负55开 | 来源:发表于2021-03-01 22:54 被阅读0次

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

    必备宏包:

    • \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}
    

    相关文章

      网友评论

          本文标题:LaTeX:Tikz多子图标注格式

          本文链接:https://www.haomeiwen.com/subject/qvpzfltx.html