首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >matplotlib pgf savefig(pdf)失败

matplotlib pgf savefig(pdf)失败
EN

Stack Overflow用户
提问于 2014-05-06 23:30:29
回答 1查看 2.3K关注 0票数 1

在fedora 20上的现代texlive安装中,使用pgf后端在savefig ('blah.pdf')中失败。

示例:

代码语言:javascript
复制
# -*- coding: utf-8 -*-

import matplotlib as mpl
mpl.use("pgf")
pgf_with_rc_fonts = {
    "font.family": "serif",
    "font.serif": [],                   # use latex default serif font
    "font.sans-serif": ["DejaVu Sans"], # use a specific sans-serif font
}
mpl.rcParams.update(pgf_with_rc_fonts)

import matplotlib.pyplot as plt
plt.figure(figsize=(4.5,2.5))
plt.plot(range(5))
plt.text(0.5, 3., "serif")
plt.text(0.5, 2., "monospace", family="monospace")
plt.text(2.5, 2., "sans-serif", family="sans-serif")
plt.text(2.5, 1., "comic sans", family="Comic Sans MS")
plt.xlabel(u"µ is not $\\mu$")
plt.tight_layout(.5)

回溯:

代码语言:javascript
复制
Traceback (most recent call last):
  File "testpgf.py", line 20, in <module>
    plt.tight_layout(.5)
  File "/usr/lib64/python2.7/site-packages/matplotlib/pyplot.py", line 1255, in tight_layout
    fig.tight_layout(pad=pad, h_pad=h_pad, w_pad=w_pad, rect=rect)
  File "/usr/lib64/python2.7/site-packages/matplotlib/figure.py", line 1600, in tight_layout
    renderer = get_renderer(self)
  File "/usr/lib64/python2.7/site-packages/matplotlib/tight_layout.py", line 222, in get_renderer
    renderer = canvas.get_renderer()
  File "/usr/lib64/python2.7/site-packages/matplotlib/backends/backend_pgf.py", line 925, in get_renderer
    return RendererPgf(self.figure, None, dummy=True)
  File "/usr/lib64/python2.7/site-packages/matplotlib/backends/backend_pgf.py", line 409, in __init__
    self.latexManager = LatexManagerFactory.get_latex_manager()
  File "/usr/lib64/python2.7/site-packages/matplotlib/backends/backend_pgf.py", line 223, in get_latex_manager
    new_inst = LatexManager()
  File "/usr/lib64/python2.7/site-packages/matplotlib/backends/backend_pgf.py", line 305, in __init__
    cwd=self.tmpdir)
  File "/usr/lib64/python2.7/subprocess.py", line 711, in __init__
    errread, errwrite)
  File "/usr/lib64/python2.7/subprocess.py", line 1308, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory
EN

回答 1

Stack Overflow用户

发布于 2014-05-07 02:09:26

好的,问题是,根据http://matplotlib.org/1.3.1/users/pgf.html,默认的tex处理器是xelatex,它没有安装。1) sudo yum install texlive-xetex-bin或2)将pgf设置为使用其他latex处理器:

代码语言:javascript
复制
pgf_with_pdflatex = {
    "pgf.texsystem": "lualatex",
    "pgf.preamble": [
        r'\usepackage{amsmath}',
        r'\usepackage[scientific-notation=true]{siunitx}',
    ##      r"\usepackage[utf8x]{inputenc}",
    ##      r"\usepackage[T1]{fontenc}",
        ]
}
mpl.rcParams.update(pgf_with_pdflatex)
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/23498920

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档