【发布时间】:2018-09-19 10:12:13
【问题描述】:
使用 gnuplot 5.0 patchlevel 5,我正在尝试创建一个包含等高线图的 eps 文件。但是,等高线伴随着网格并且没有要求的颜色。使用 png 终端的输出就好了。
这是我用来生成 eps 图片的最少代码:
set terminal epscairo
set output "test.eps"
set pm3d map impl
set style increment user
set contour
do for [i=1:5] { set style line i lc rgb "black" lw 3}
splot "data.dat" w pm3d notitle
eps image created by gnuplot with the funny feature around the contour
用 png 替换 epscairo 终端可以得到所需的输出:
png image created by gnuplot, this how I would like the eps image to look like
我使用的数据文件可以在这里找到: data.dat
【问题讨论】:
-
查看stackoverflow.com/a/18954245/2604213了解这个问题的详细解释
-
我不认为我有这种问题。我在 eps 图中看到的只是一个额外的网格和轮廓线颜色的变化,没有莫尔条纹。
标签: gnuplot