我试图在gnuplot postscript输出的同一页面上绘制多个图。虽然,我喜欢这些情节的样子,但我能做些什么来避免情节上的文字? (参见下面的代码,以及情节)。如果你看不到情节上的文字,它会说:“'../ binsam_Omidi.dat'使用5:($ 1 == 1?$ 6:1/0)”
reset
set term postscript eps color size 10,10
set output "../Results/phasespace_bins.ps"
set multiplot layout 4,5 # engage multiplot mode
set size square
set size ratio -1
plot '../binsam_Omidi.dat' using 5:($1==1?$6:1/0) w p ps 1 pt 7
set size 0.4,0.4 # set the size of the second plot in plot units
set origin 0.15,0.5 # set the origin for the second plot
plot '../binsam_Omidi.dat' using 5:($1==1?$6:1/0) w p ps 1 pt 7
unset multiplot
谢谢!
答案 0 :(得分:2)
这是情节的传奇(关键)条目。您可以使用title
选项指定自己的标题,例如
plot x title 'my title'
如果未指定自己的标题,则使用plot命令的代码。这就是你所看到的。
要使用notitle
或title ''
单个图表没有键输入。如果您不想使用任何密钥,请使用unset key
。