本文介绍了点(graphviz)语言的节点标签中的换行符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有人知道如何在节点的标签中添加换行符吗? \ n不起作用-而是出现了一些新节点.
Does anyone know how to put newline in the label of the node? \n is not working - instead some new nodes appear.
推荐答案
这对我有用记录:
digraph {
n[label="two\nlines"]
"on\nthree\nlines"
}
要么放入label属性(我的偏爱),要么将其用作节点的名称,但始终将其用双引号引起来.
Either put in in a label attribute (my preference), or use it as the node's name, but always enclose it with double quotes.
这篇关于点(graphviz)语言的节点标签中的换行符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!