如何使用TikZ终端在gnuplot 5中生成虚线?

时间:2015-02-10 17:39:23

标签: gnuplot

我最近升级到gnuplot 5并且无法使用TikZ终端生成虚线。运行这些命令:

set term tikz
set output "test.tex"
test

在gnuplot 4.6(第一张图片)中生成虚线类型,但在gnuplot 5(第二张图片)中只生成实线类型。有没有办法解决这个问题而不降级?

我尝试为dashlength终端选项设置不同的值,但这没有帮助。

1 个答案:

答案 0 :(得分:7)

随着5.0 gnuplot改变了处理虚线的方式。默认情况下,所有线型都是实线,这是test命令显示的内容。

要启用虚线,请使用新的dashtype关键字,例如

plot for [i=1:4] i*x dashtype i

适用于支持虚线的所有终端。

注意,对于dashtype,您还可以指定自己的短划线模式。

示例脚本:

set terminal lua tikz linewidth 3 standalone
set output 'dash.tex'    
unset key

set linetype 1 dashtype 2
set linetype 2 dashtype '..-'
set linetype 3 dashtype (2,2,4,4,6,6)
plot for [i=1:3] i*x

enter image description here