我是gnuplot的新手。我正在阅读手册,但是很难找到人们在脚本中使用的某些缩写的解释。例如,我正在使用一个脚本,该脚本显示:
f(x)=invnorm(x)
g(x)=norm(x)
plot \
"file.curve" u (f($3)):(f($2)) ti "Curve 1" ls 1 lw 3, \
"file.curve" u (f($3)):(f($2)) ti "Curve 2" ls 2 lw 3, \
"file.curve" u (f($3)):(f($2)) ti "Curve 3" ls 3 lw 3, \
f(1-g(x)) noti lt rgb "#FF0000" lw 0.75, \
f(12.5*g(x)) noti lt rgb "#808080" lw 0.75
我想我明白ti
表示title
,ls
对于line style
和lw
为line width
,但对于lt
和noti
?(我可以在哪里查找)?
这样,最后两行会做什么?