pdfcairo输出中的GNUplot实线垂直线

时间:2013-03-04 13:37:28

标签: osx-snow-leopard gnuplot

My Aqua终端输出显示我想要的实线:底部边框和x和y网格。

当我将输出更改为pdfcairo时,我无法找到使xgrid线条变为实心的方法。这是一个已知的问题吗?

set terminal pdfcairo size 13.5,9.8 solid screen 0,.3 lt 1 lw 2

GNUplot 4.6.1
OSX 10.6.8

1 个答案:

答案 0 :(得分:0)

如果您想要网格的实线,我会为网格使用实线型,而不是依赖终端设置:

set term pdfcairo size 13.5,9.8 solid
set output 'foo.pdf'
set grid lt 1 lc rgb 'black'
plot sin(x)

作为旁注,我的 您pdfcairo命令的screen 0,.3部分set term窒息。我不确定它在做什么,但我很确定这不是你想要的。