我用谷歌搜索了stackexchange、stackoverflow。如何从 http://gnuplot.sourceforge.net/demo/simple.html 用那里的颜色重现绘图?
使用给定的脚本
# set terminal pngcairo transparent enhanced font "arial,10" fontscale 1.0 size 500, 350
# set output 'simple.1.png'
set key inside left top vertical Right noreverse enhanced autotitles box linetype -1 linewidth 1.000
set samples 50, 50
plot [-10:10] sin(x),atan(x),cos(atan(x))
在 gnuplot (windows 7) 上总是产生一个颜色为绿色、红色、蓝色的图:http: //imageshack.us/photo/my-images/23/unbenanntfkh.png/
我知道我可以为每个函数指定颜色。我在哪里可以更改(全局)我的绘图中的颜色?