LaTeX:Tikz多子图标注格式

2021-03-01  本文已影响0人  胜负55开

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

必备宏包:


标准格式如下:

\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}
上一篇 下一篇

猜你喜欢

热点阅读