图谱: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 1: | Line 1: | ||
{ | digraph G { | ||
// 定义节点 | |||
"气候变化" [shape=ellipse, style=filled, color=lightblue]; | |||
" | "空气污染" [shape=ellipse, style=filled, color=lightgreen]; | ||
" | "可再生能源" [shape=ellipse, style=filled, color=lightyellow]; | ||
"能源效率" [shape=ellipse, style=filled, color=lightpink]; | |||
// 定义边 | |||
"气候变化" -> "空气污染" [label="导致"]; | |||
"气候变化" -> "可再生能源" [label="减缓"]; | |||
"可再生能源" -> "能源效率" [label="提升"]; | |||
} | } | ||
Revision as of 03:40, 24 April 2025
digraph G {
// 定义节点 "气候变化" [shape=ellipse, style=filled, color=lightblue]; "空气污染" [shape=ellipse, style=filled, color=lightgreen]; "可再生能源" [shape=ellipse, style=filled, color=lightyellow]; "能源效率" [shape=ellipse, style=filled, color=lightpink];
// 定义边 "气候变化" -> "空气污染" [label="导致"]; "气候变化" -> "可再生能源" [label="减缓"]; "可再生能源" -> "能源效率" [label="提升"];
}