PyXを使って太陽の天文記号をグラフに載せようと試みてきましたが、うまくいきませんでした。私が持っているコードは次のとおりです。
from pyx import *
from pylab import *
x=arange(1,5,0.1)
y=exp(-(x-3.0)**2/(2.0*0.5**2))/sqrt(2.0*pi*0.5**2)
######################
g=graph.graphxy(width=8,y=graph.axis.linear(title=r"Fraction of DM halos"),x=graph.axis.linear(min=1,title=r"Mass ($10^{11}M_{\sun}$)"))
g.plot(graph.data.values(x=x,y=y),styles=[graph.style.histogram()])
g.writeEPSfile("testhistogram")
追加してからを試しましtext.set(mode="latex")
たtext.preamble("\usepackage{mathabx}")
が、これは機能しません(このシンボルがmathabx LaTeXパッケージにあることがわかっているため)。何か案は?