我以为我知道{/Symbol x}
如何在gnuplot中工作,但我不知道。我需要得到一个偏导数符号(utf8代码U + 2202),我不能。我怎么能这样做我在网上找不到任何东西。这是文档设置:
set terminal postscript eps enhanced color font "Helvetica, 20"
set encoding utf8
谢谢
答案 0 :(得分:2)
使用任何基于cairo的终端(pdfcairo
或epscairo
)并将该字符直接插入到您的脚本中:
set encoding utf8
set terminal pdfcairo font ',20'
set output 'partial-derivative.pdf'
set xlabel '∂u/∂x'
plot x
答案 1 :(得分:1)
如果您确实需要使用postscript终端,请使用
{/Symbol \266}
您的gnuplot发行版应包含文件ps_guide.ps
。这解释了postscript中可用的所有字符代码。
总的来说,我会提出克里斯托夫建议使用开罗终端。结合UTF-8输入编码和适当的字体,您可以轻松地在输出中包含更多字符。
当我生成包含在TeX文档中的图表时,我倾向于使用与正文文本相同的字体(在下面的示例中为“TeX Gyre Pagella”)
set terminal pdfcairo enhanced color dashed font "TeX Gyre Pagella, 14" \
rounded size 16 cm, 9.6 cm
set encoding utf8