一段时间以来,我试图找到我的问题的答案,但找不到适合我的东西。我的问题是:如何使用 Xelatex 在 Matplotlib 中编译文本?
我知道有这个页面: http: //matplotlib.org/users/pgf.html
但是,我想不出可行的方法。我现在所做的:
import matplotlib as mpl
mpl.use("pgf")
## TeX preamble
preamble = """
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
"""
params = {"text.usetex": True,
'pgf.texsystem': 'xelatex',
'pgf.preamble': preamble}
mpl.rcParams.update(params)
import matplotlib.pyplot as plt
plt.plot([1, 2, 3])
plt.xlabel(r'\textsc{Something in small caps}', fontsize=20)
plt.ylabel(r'Normal text ...', fontsize=20)
plt.savefig('test.pdf')
运行此代码会产生以下警告:/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/backends/backend_pgf.py:51: UserWarning: error getting fonts from fc-list warnings.warn('从 fc-list 获取字体时出错', UserWarning)
创建了一个输出文件,但我没有错误的字体(不是 Linux Libertine),即使我已经安装了字体并且能够将它与 XeLaTex 一起使用(我能够使用设置的 xelatex 编写一个 pdf 文件Linux Libertine 字体)。
任何帮助将非常感激....