使用matplotlib在tex模式下加粗字体

时间:2015-12-23 09:49:56

标签: python python-2.7 matplotlib latex

在阅读了很多关于该主题的帖子后,我决定使用以下代码

from matplotlib import rc, rcParams
...
rc('text', usetex=True)
rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]
grid.axes_llc.set_ylabel(r"$\mathbf{Im(\boldsymbol{\alpha})}$", weight='bold', size='18')

这会出现以下错误:

RuntimeError: dvipng was not able to process the following file:
/home/lab/.cache/matplotlib/tex.cache/92589d6907b2844de9b825e2eaeaa998.dvi
Here is the full report generated by dvipng: 

报告是空的!我尝试将latex目录添加到路径中。我在ubuntu上使用python 2.7。如何让它理解" \ boldsymbol"命令?或者还有什么我可以做的让希腊字体变粗?

0 个答案:

没有答案