PlantUML:思考マップ
思考マップ - 思考マップの作り方
https://plantuml-proxy.vercel.app/svg/https://scrapbox.io/api/code/suto3/PlantUML:思考マップ/tm.pu#.svg
code:tm.pu
@startdot
digraph G {
label="思考マップのテンプレート";
node fontsize = 12, shape = box, style=rounded;
Tlabel = "メインテーマ", shape=oval;
T -> ノードA label = エッジ1;
T -> ノードB label = エッジ2;
T -> ノードC label = エッジ3;
T -> ノードD label = エッジ4;
T -> ノードE label = エッジ5;
ノードA -> ノードB;
ノードB -> ノードC;
ノードC -> ノードD;
ノードD -> ノードAlabel = ループ;
ノードB -> ノードE;
ノードC -> ノードE;
}
@enddot
#PlantUMLの使い方