matplotlib文本中未呈现的乳胶颜色

时间:2019-03-23 03:09:24

标签: python matplotlib latex

Tex的\textcolor在我的脚本中似乎被忽略了

import matplotlib as matplotlib
from matplotlib import pyplot as plt

matplotlib.rcParams.update({'text.usetex': True})

matplotlib.rc(
    'text.latex', preamble=r"\usepackage{xcolor}")

fig, ax = plt.subplots()
ax.set_ylabel(r'\textcolor{red}{aaaaaaa}')
plt.show()

不给我红色文字,它会产生:

enter image description here

我想念什么吗?

1 个答案:

答案 0 :(得分:1)

它在这里有更详细的解释:https://matplotlib.org/users/usetex.html,但似乎仅在将其导出到ps文件时才起作用。对我来说,如果您将其另存为ps文件,则它会以彩色显示,而同一行的文件无法使用。

此处有一些解决方法。

import matplotlib as matplotlib
from matplotlib import pyplot as plt

matplotlib.rcParams.update({'text.usetex': True})
matplotlib.rc('text.latex', preamble=r"\usepackage{xcolor}")

fig, ax = plt.subplots()
ax.set_ylabel(r"aaaaaaa", color='r')

#plt.savefig(r"foo.ps")
# you can include the above line if you're using your old code.

plt.show()