如何在GNUPlot

时间:2016-04-27 08:31:26

标签: gnuplot

如何使用

在gnu图中输入标签的dirac bra-ket表示法

set term post eps enhanced color "Arial" 11

set output "1.eps"

相似

enter image description here

2 个答案:

答案 0 :(得分:4)

使用符号编号。 361! E.g:

set label '|1,0{/Symbol \361}' at 1,2

(或xlabel,或title等...)

enter image description here

答案 1 :(得分:3)

在这种情况下,最好使用epslatex终端,以便您可以使用完整的乳胶功能:

s(x) = 1./sqrt(2.*pi) * exp(-x**2/2.)
set term epslatex standalone header '\usepackage{amsmath}'
set output 'plot.tex'
set xlabel '$r$'
set ylabel 'WF amplitude'
plot s(x) title '$\langle 1s | r \rangle \langle r | 1s \rangle$'

只需运行latexpdflatex

pdflatex plot.tex

以上看起来像这样:

enter image description here