如何使用LaTeX括号在Matplotlib中标记轴?

时间:2014-01-31 17:00:49

标签: python matplotlib latex

如何使用LaTeX表达式$\langle B_{\mathrm{e}} \rangle$在Matplotlib中标记轴? 我需要用漂亮的“<”来标记我的轴。和“>”乳胶支架。

1 个答案:

答案 0 :(得分:3)

尝试ax.set_ylabel(r'$\langle B_{\mathrm{e}} \rangle$')标记Y轴,或ax.set_title(r'$\langle B_{\mathrm{e}} \rangle$')标记轴标题。