答案 0 :(得分:1)
我认为您在问题中将实际与预期混为一谈
digraph {
// create a forest hanging from the ceiling
node[shape=box]
edge[dir=back]
a->b->c
d->e->f->g
h->i
// ground the forest
ground_node[style=invis]
subgraph {
c;g;i
} -> ground_node [style=invis]
}