如何使用 bash shell 进行 gnuplot 显示希腊字母?

如何使用 bash shell 进行 gnuplot 显示希腊字母?

我想为 gnuplot 编写一个 bash shell 来自动生成数字。但我的数字里面包含希腊字母。我已经知道它们的ASCII码,运行后如何正确显示它们?

例如,我set xlabel \"Cn = 0.74, \226 = 0.83 \"用bash脚本编写,但\226不显示希腊字母\Gamma。

实际上我也想将 n 显示为 C 的下标,但是 C_n 在 gnuplot 的 bash 脚本中不起作用,只显示 C_n,我该怎么做?

答案1

也许最简单的方法就是直接包含 utf8 格式的内容。这是一个例子:

#!/bin/sh

gnuplot <<EOF
set output 'output.pdf'
set term pdfcairo
set xlabel 'µΓ'
plot x
EOF

exit 0

相关内容