我使用 gnuplot 在我的 .eps 图形上没有颜色

I don't have color on my .eps figure using gnuplot

我想用 gnuplot 追踪一些曲线。我最近更换了电脑,现在我有一个 MacOSX 10.9.5 在我的另一台计算机上,颜色出现在我的 .eps 图形中,但我的 Mac 不再出现,并且出现一条错误消息:“· Times not found, using Courier.”我认为这是另一个问题。 我的 gnuplot 版本是版本 5.0 补丁级别 0.

这是我用 gnuplot 加载的 trace.p

$ gnuplot

gnuplot > 加载 "trace.p"

set autoscale
unset logscale
unset label
set term postscript enhanced 'Times'
set output"E_Hxc_bath_exact_weak.eps"
set title "E^{bath,exact}_{Hxc}/U, E^{bath,weak}_{Hxc}/U functions of U/t with potential more or equal to second-order set to 0"
set xlabel "U/t"
set ylabel "E^{bath}_{Hxc}/U"
set xrange [0.7:10]
set yrange [-7:10]
set key left top
set style line 1 lt 1 lc rgb "red" lw 3
set style line 2 lt 2 lc rgb "red" lw 3
set style line 3 lt 3 lc rgb "red" lw 3
set style line 4 lt 1 lc rgb "green" lw 3
set style line 5 lt 2 lc rgb "green" lw 3
set style line 6 lt 3 lc rgb "green" lw 3
set style line 7 lt 1 lc rgb "black" lw 3
set style line 8 lt 2 lc rgb "black" lw 3
set style line 9 lt 1 lc rgb "blue" lw 3
set style line 10 lt 2 lc rgb "blue" lw 3
set style line 11 lt 3 lc rgb "blue" lw 3
set style line 12 lt 1 lc rgb "violet" lw 3
set style line 13 lt 2 lc rgb "violet" lw 3

plot (0.25 - (3/4)/(sqrt(1+64/(x**2)) + 2*sqrt(1+16/(x**2)))) with lines ls 7 title "exact", (0.25 - 3*(x**2)/64 + (x**3)/(2*16*16)) with lines ls 1 title "weak";

有些行肯定是没用的,但是不知道为什么结果是无色的,可能是漏了一个应用什么的...

尝试将 color 标志添加到脚本中的 set term 行。

没有出现的虚线,是因为在5.0版本中,命令改变了,不再是linetype而是dashtype。

请参阅 Gnuplot line types 的回复以获得更精确的信息。