gpt4 book ai didi

linux - 使用 neato 问题进行编译

转载 作者:太空宇宙 更新时间:2023-11-04 04:24:29 25 4
gpt4 key购买 nike

我正在尝试使用neato将一个非常简单的图形(3个对齐的节点)输出为png。源文件,开头为:

graph {
graph [size="8,5"];
node [label="\N", pin=true, shape=circle];
0 [pos="0,0", pin=true, style=filled];
1 [pos="0,60", pin=true, style=filled];
2 [pos="0,120", pin=true, style=filled];
1 -- 0;
2 -- 1;
3 -- 2;
}

遗憾的是,节点 (1,2,3) 的标签未显示在输出图像 (png) 中。当从另一台 Unix 计算机运行时,相同的源文件会产生不同的结果,但我无法看出哪些库或配置可能不同。知道出了什么问题吗?

最佳答案

如果删除明确的尺寸和定位信息,它是否可以正确呈现?也就是说,如果你给它...

graph {
node [label="\N", pin=true, shape=circle, style=filled];
0;
1;
2;
1 -- 0;
2 -- 1;
3 -- 2;
}

...节点标签是否正确显示?此输入在 graphviz 2.28.0 和 2.12 下都能正确呈现。

关于linux - 使用 neato 问题进行编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10336119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com