我正在尝试用Jpeg终端中的Times new roman字体制作一个情节。 Gnuplot 4.6安装在Windows中。我尝试使用JPEG终端,并以代码结束以下结果:
# this script for compare remaining ice area
reset
set term png large font "times new roman" 20 size 700,500 enhanced #500,400
set output 'Compare.png'
#
set xlabel "{/=15 {/Italic Time} (min)}"
set ylabel "{/=15 {/Italic Remaining ice area} (percent)}"
set xrange [0:75]
set yrange [0.5:1.01]
set key top right
plot 'ice_example.dat' u 1:2 w p pt 8 lc rgb 'red' lw 3 title 'Free surface LBM' ,\
'ice_mass.dat' u 1:2 w p pt 5 lc rgb 'black' lw 5 title 'Experiment'
unset multiplot
set term win
unset output
当我将term png
更改为term jpeg
时,不会生成输出文件。此外,它不适用于{/Times New Roman-Italic Time} (min)
标签。
谢谢你提前。