subgraph name 属性必须要以cluster开头。
A Quick Introduction to GraphvizAn awesome tool for software documentation and visualizing graphs https://www.worthe-it.co.za/blog/2017-09-19-quick-introduction-to-graphviz.html
https://www.worthe-it.co.za/blog/2017-09-19-quick-introduction-to-graphviz.html

digraph {
  rankdir="LR"
  // the normal ranking algorithm doesn't know what to
  // do with clusters with rank="same".
  // If you opt in to the 'new' ranking algorithm, it
  // works as expected.
  newrank="true"
  A -> B
  A -> C
  B -> C
  C -> D
  subgraph cluster_subs {
    label="Bs and Cs"
    rank="same"
    B
    C
  }
}
 














![[Vulnhub] Tr0ll3 aircrack-ng+lynx](https://img-blog.csdnimg.cn/img_convert/287530895ffb6066ffc809665374506a.jpeg)




