终端qt和gnuplot 5.0中的代码
/usr/lib/google-cloud-sdk/bin/bq
在gnuplot提示符下工作。
但是,plot x; set xlabel 'Magnetic field {/Symbol Mu}_0'
在命令行脚本
{/Symbol mu}_0
我得到了
`/usr/local/bin/gnuplot -e "plot x; set xlabel 'Magnetic field {/Symbol m}_0 H / mT'`;
如何在gnuplot标签中用下划线写下符号?
答案 0 :(得分:2)
要获得带有下标零的μ字符,请使用utf8编码的标签
gnuplot -p -e "set encoding utf8; set xlabel 'Magnetic field µ₀ H / mT'; plot x"
或
gnuplot -p -e "set xlabel 'Magnetic field {/Symbol m}_0 H / mT'; plot x"