带有 epslatex 和多图的虚假“-”文本

Spurious '-' text with epslatex and multiplot

以下 gnuplot 片段生成了一个多图,显示了通过 stdin 移植的六个数据图,但使用的特殊文件名“-”也打印在输出中:

set term epslatex color
set output 'mwe.tex'
set multiplot layout 3,2 scale 1,1 columnsfirst
set xrange [-3.1415:3.1415]
set yrange[-1.0:1.0]
set cbrange [-1:1]
set size ratio -1.0
set palette rgb 33,13,10
unset colorbox
plot '-' with image
-3.1416 -1.00 0.00
-3.1089 -1.00 0.00
 (...)
e
(...)
unset multiplot

(在 unset multiplot 命令之前,'plot' 命令和后面的内容,直到并包括 'e',使用不同的输入重复六次。)

显示输出 here。特殊文件名“-”必须包含在 plot 命令中以绘制内联数据,但它不应显示在结果图中。如何避免这种行为?

在 epslatex 中使用 'standalone' term 选项时问题仍然存在,但在使用其他终端时不会出现。

我使用 gnuplot 4.6 补丁 2.

根据Whosebug规则“评论中没有答案”,这里再次作为答案。还要检查 help key 和那里的选项。

尝试:

set key noautotitle

plot '-' with image notitle