答案1
大概你应该阅读@cfr 的回答—— 这个比较全面。
但要想当场调整,你可以像这样:
\documentclass{standalone}
\usepackage{tikz}
\usepackage{lmodern}
\usetikzlibrary{mindmap,trees,shadows}
\begin{document}
\begin{tikzpicture}[
mindmap, concept color=blue!70, grow cyclic,
]
\node[concept] {Root}
child[concept]{ node[concept]{Level 1 A} }
child[concept]{ node[concept]{Level 1 B}
child[concept, font=\fontsize{10pt}{12pt}\selectfont]{
node[concept]{Level 2 10pt} }
child[concept, font=\fontsize{12pt}{14pt}\selectfont]{
node[concept]{Level 2 12pt} }
child[concept, font=\fontsize{14pt}{17pt}\selectfont]{
node[concept]{Level 2 14pt} }
};
\end{tikzpicture}
请记住,也许您需要调整text width
和minimum size
按键。