思维导图不允许我有超过 6 个兄弟姐妹

思维导图不允许我有超过 6 个兄弟姐妹

我正在尝试制作思维导图,但无论我放入哪个角度,甚至扩大距离以腾出更多空间,它似乎都只允许我有 6 个兄弟姐妹:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\begin{document}
\begin{tikzpicture}[mindmap, concept color=black, text=white, level 1 concept/.append style={level distance=200,sibling angle=10}]
  \node[concept] {Metaverse}[clockwise from=0]
    child[concept color=green!50!black] {
      node[concept] {Programmes}
      [clockwise from=60]
      child { node[concept] {Commis chef} }
      child { node[concept] {ESOL} }
      child { node[concept] {Retrofit} }
      child { node[concept] {Construction} }
      child { node[concept] {Early years}}
      child { node[concept] {Electrical Engineering}}
      child { node[concept] {EV design point}}
      child { node[concept] {Health and social}}
      child { node[concept] {Nursing}}
      child { node[concept] {Plumbing and social}}
      child { node[concept] {Renewable energy}}
      child { node[concept] {Welding and fabication}}
      child { node[concept] {Unassigned programmes}}
    }
    child[concept color=blue] {
      node[concept] {Functional skills}
      [clockwise from=0]
      child { node[concept] {level} }
      child { node[concept] {access} }
    }
    child[concept color=red] { node[concept] {Concept} }
    child[concept color=orange] { node[concept] {Use} };
\end{tikzpicture}
\end{document}

抱歉,这是我的第一个思维导图,我不知道我在做什么,而且我在手册中看不到它有限制。

答案1

在此处输入图片描述我做了一些实验,发现可以按级别定义样式:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\begin{document}
\begin{tikzpicture}[mindmap, concept color=black, text=white,%
                   level 1 concept/.append style={level distance=200,sibling angle=40},%
                   level 2 concept/.append style={level distance=100,sibling angle=25}]
  \node[concept] {Metaverse}[clockwise from=0]
    child[concept color=green!50!black] {
      node[concept] {Programmes}[clockwise from=150]
      child { node[concept] {Commis chef} }
      child { node[concept] {ESOL} }
      child { node[concept] {Retrofit} }
      child { node[concept] {Construction} }
      child { node[concept] {Early years}}
      child { node[concept] {Electrical Engineering}}
      child { node[concept] {EV design point}}
      child { node[concept] {Health and social}}
      child { node[concept] {Nursing}}
      child { node[concept] {Plumbing and social}}
      child { node[concept] {Renewable energy}}
      child { node[concept] {Welding and fabication}}
      child { node[concept] {Unassigned programmes}}
    }
    child[concept color=blue] {
      node[concept] {Functional skills}
      [clockwise from=0]
      child { node[concept] {level} }
      child { node[concept] {access} }
      child { node[concept] {bccess} }
      child { node[concept] {cccess} }
      child { node[concept] {dccess} }
      child { node[concept] {eccess} }
      child { node[concept] {fccess} }
      child { node[concept] {gccess} }
    }
    child[concept color=red] { node[concept] {Concept} }
    child[concept color=orange] { node[concept] {Use} };
\end{tikzpicture}
\end{document}

为了测试,我添加了一些蓝色气泡。

然而,纸张用完是相当容易的。

答案2

当你玩角度时……

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\begin{document}
\begin{tikzpicture}[mindmap, concept color=black, text=white]
  \node[concept] {Metaverse}[clockwise from=0]
    child[concept color=green!50!black, level distance=200, sibling angle=27] {
      node[concept] {Programmes}
      [clockwise from=90]
      child { node[concept] {Commis chef} }
      child { node[concept] {ESOL} }
      child { node[concept] {Retrofit} }
      child { node[concept] {Construction} }
      child { node[concept] {Early years}}
      child { node[concept] {Electrical Engineering}}
      child { node[concept] {EV design point}}
      child { node[concept] {Health and social}}
      child { node[concept] {Nursing}}
      child { node[concept] {Plumbing and social}}
      child { node[concept] {Renewable energy}}
      child { node[concept] {Welding and fabrication}}
      child { node[concept] {Unassigned programmes}}
    }
    child[concept color=blue, level distance=150, sibling angle=90] {
      node[concept] {Functional skills}
      [clockwise from=-90]
      child { node[concept] {level} }
      child { node[concept] {access} }
    }
    child[concept color=red, level distance=150, sibling angle=90] { node[concept] {Concept} }
    child[concept color=orange, level distance=150, sibling angle=90] { node[concept] {Use} };
\end{tikzpicture}
\end{document}

相关内容