在gnuplot xlabel中加入重音字符

时间:2017-07-27 15:02:56

标签: character-encoding gnuplot symbols

我在MacOSX上运行gnuplot版本5.0补丁级别5。

我的gnuplot MWE是:

set terminal postscript eps size 4.5,3.5 enhanced color font 'Times-Roman,25' linewidth 2
set out "plot.eps"

set xlabel "~{/Symbol l}{.8\^}_s"
set ylabel "Ylabel" offset 1.5
plot [-10:10] sin(x)

但是我收到了错误

     warning: enhanced text parser - spurious }
     warning: enhanced text parser - spurious }

这是行

的问题
set xlabel "~{/Symbol l}{.8\^}_s"

如果我写这个,它可以正常工作:

set xlabel "~{/Symbol l}{.8-}_s"

但是我想在lambda符号的顶部使用这个重音 ^ 。怎么做?

0 个答案:

没有答案