我的情节
有一个gnuplot标签plot f(x) title 'Before(w)' with lines ls 1
在我的标签中有Before(w)
。我希望字母w
的颜色为红色。我该怎么办?
我能够找到改变整个标签颜色的代码(http://www.gnuplot.info/demo_4.6/textcolor.html),但这不是我想要的。
感谢。
工作示例
set terminal postscript eps size 3.5,2.62 enhanced color \
font 'Helvetica,20' linewidth 2
set output 'plot2.eps'
set style line 1 linecolor rgb '#0060ad' linetype 1 linewidth 2 #(gnuplotting)
f(x) = exp(-x*x)
plot f(x) title 'Before(w)' with lines ls 1