66

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

legend(ur'$The_formula$')

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

4

2 回答 2

73

最简单的方法是在绘制数据时分配标签,例如:

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()
于 2012-12-24T03:14:54.013 回答
10

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

import pylab

# code here

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

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

编辑:

u用于 unicode 字符串,请尝试r'$\latex$'

于 2012-12-24T01:51:39.553 回答