Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用点语言制作了一棵树,类似于这里的树。
有什么办法可以让树向右扩展,而不是向下扩展(所以根节点在左边,子节点在右边)。
这很容易,只要您坚持基本布局:将rankdir ="LR" 放在顶部定义附近。就像是
digraph unix { size="6,6"; rankdir="LR"; ... }