简短的问题:如何_
在 gnuplot 的标题中显示(下划线)字符,该字符是从 gnuplot 中的变量名分配的?
详细信息:我有类似以下代码:
items = "foo_abc foo_bcd bar_def"
do for [item in items] {
set title item
set output item.eps
plot item."-input.txt" using 1:2 title item with linespoints
}
这适用于 gnuplot,只是标题从 foo_abc 更改为 foo a bc。我不知道是否要使用转义字符,因为我不希望它出现在文件名中。我用单引号和双引号尝试了几个不同的选项,但我还没有找到我需要的。