如何在Matplotlib轴标签中获得LaTeX风格的verbatim / ttt文本?

时间:2017-02-13 17:26:25

标签: matplotlib

我希望在带有Matplotlib的轴标签中获得一些LaTeX风格的逐字文本that looks, for example, like this。我该怎么做?

1 个答案:

答案 0 :(得分:0)

要使轴标签以等宽字体显示,可以使用等宽字体系列。

import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties

font = FontProperties()
font.set_family("monospace")

plt.plot([2,1,3])
plt.xlabel("That is verbatim", fontproperties=font)
plt.ylabel("That is normal")

plt.show()

enter image description here