想要制作如下的思维导图:
图片链接不再可用。
我试过这个:

digraph Alf {
size = "15";
node [ shape = record , style=filled, fillcolor="#efefef",fontname=Helvetica, fontsize=10.5, fontcolor="#2b2b2b", height=0.25, width=1, penwidth=0 ];
edge [arrowhead=normal,arrowsize=0.5,len=0.5, color="#bfbfbf"];

root [label ="Autors i teories de la comunicació no verbal"];
1 [ label="es concreta en", fontcolor="#00aeef", fontsize=9.5, fillcolor=white ];

root->1;
1->"LOE"
1->"Estratègies";
1->"Activitats";
1->"Recursos";

2 [label="programes d'aprenentatge", fontcolor="#00aeef", fontsize=9.5, fillcolor=white];

"LOE"->2
"Estratègies"->2;
"Activitats"->2;
"Recursos"->2;

3 [label="es pot fer gràcies a", fontcolor="#00aeef", fontsize=9.5, fillcolor=white];
2->"Comunicació no verbal"->3;

3->"Recordatori de\nconductes innates";
3->"Intencionalitat";
3->"Observació";
3->"Imitació";
}
这是什么产生的。非常相似,但不一样 :-( 如您所见。
Graphviz:改进思维导图-LMLPHP
谁能告诉我最接近的解决方案或改进代码?

最佳答案

我相信你想要一个 shapepoint 的节点,如下所示:

digraph Alf {
size = "15";
node [ shape = record , style=filled, fillcolor="#efefef",fontname=Helvetica, fontsize=10.5, fontcolor="#2b2b2b", height=0.25, width=1, penwidth=0 ];
edge [arrowhead=normal,arrowsize=0.5,len=0.5, color="#bfbfbf"];

root [label ="Autors i teories de la comunicació no verbal"];
1 [shape=point penwidth height=0 width=0]


root->1 [ label=" es concreta en", fontcolor="#00aeef", fontsize=9.5, fillcolor=white arrowhead=none fontname=Helvetica];

1->"LOE"
1->"Estratègies";
1->"Activitats";
1->"Recursos";

2 [shape=point penwidth height=0 width=0]



"LOE"->2 [arrowhead=none];
"Estratègies"->2 [arrowhead=none];
"Activitats"->2 [arrowhead=none];
"Recursos"->2 [arrowhead=none];


3 [shape=point penwidth=0 height=0 width=0];

2->"Comunicació no verbal" [label=" programes d'aprenentatge", fontcolor="#00aeef", fontsize=9.5, fillcolor=white fontname=Helvetica];
"Comunicació no verbal" -> 3 [label=" es pot fer gràcies a" fontcolor="#00aeef" fontsize=9.5 fillcolor=white arrowhead=none fontname=Helvetica];

3->"Recordatori de\nconductes innates";
3->"Intencionalitat";
3->"Observació";
3->"Imitació";
}

关于Graphviz:改进思维导图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9168535/

10-12 15:00