如何在.py文件中使用Matplotlib在图表的图例中编写Latex公式?

时间:2012-12-24 01:46:44

标签: python matplotlib latex

我正在用Python编写脚本(.py文件),我正在使用Matplotlib来绘制数组。 我想在情节中添加带有公式的图例,但我无法做到。 我之前在IPython或终端中做过这个。在这种情况下,写下这样的东西:

legend(ur'$The_formula$')

工作得很好。但是,当我从终端/ IPython调用我的.py脚本时,这不起作用。

2 个答案:

答案 0 :(得分:24)

最简单的方法是在绘制数据时分配标签, e.g:

import matplotlib.pyplot as plt
ax = plt.gca()  # or any other way to get an axis object
ax.plot(x, y, label=r'$\sin (x)$')

ax.legend()

答案 1 :(得分:5)

为标签编写代码时,它是:

import pylab

# code here

pylab.plot(x,y,'f:', '$sin(x)$')

所以也许pylab.legend('$latex here$')

编辑:

u用于unicode字符串,只需r'$\latex$'