60

我最近将我的笔记本电脑升级到了 Snow Leopard,将 TeX 更新到了 3.1415926 版(TeX Live 2011/MacPorts 2011_5),并安装了 Python 2.7.3。在所有这些安装之后,我运行 macport selfupdate 和 macport upgrade outdated。但是,现在当我尝试在 matplotlib 中使用 TeX 时,我收到以下信息:

LaTeX was not able to process the following string:'lp'
Here is the full report generated by LaTeX: 

This is pdfTeX, Version 3.1415926-2.3-1.40.12 (TeX Live 2011/MacPorts 2011_5)
 restricted \write18 enabled.  
entering extended mode (./64a53cc27244d5ee10969789771e33fa.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, dumylang, nohyphenation, cz
ech, slovak, dutch, ukenglish, usenglishmax, basque, french, german-x-2009-06-1
9, ngerman-x-2009-06-19, german, ngerman, swissgerman, italian, polish, portugu
ese, spanish, catalan, galician, ukenglish, loaded.
(/opt/local/share/texmf-texlive-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/opt/local/share/texmf-texlive-dist/tex/latex/base/size10.clo))

! LaTeX Error: File `type1cm.sty' not found.

Type X to quit or <RETURN> to proceed, or enter new name. (Default extension: sty)


l.3 \renewcommand
             {\rmdefault}{pnc}^^M
No pages of output.

与上一个问题类似,我尝试通过以下方式在我的 python 代码中设置路径:

os.environ['PATH'] = os.environ['PATH'] + ':/opt/local/bin/latex'

既然which latex屈服了/opt/local/bin/latex。但是,这不起作用,并显示相同的错误消息。我还尝试了 tex 的路径,以及上一个问题中的示例。不用找了。

然后我尝试通过以下方式强制可能丢失的包:

matplotlib.rcParams['text.latex.preamble']=[r"\usepackage{amsmath}"]

但是,这也不起作用。

我可以让我的情节发挥作用的唯一方法是说rc('text', usetex=False),这并不理想。任何帮助将非常感激。

4

4 回答 4

68

在 Ubunutu 14.04 机器上,上述答案的组合有效。我sudo apt-get installdvipng,texlive-latex-extratexlive-fonts-recommended包 并且成功了:

$ sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended 

编辑:从 Matplotlib 3.2.1 开始,您现在还需要该包cm-super (请参阅https://github.com/matplotlib/matplotlib/issues/16911

$ sudo apt-get install dvipng texlive-latex-extra texlive-fonts-recommended cm-super
于 2016-05-13T20:33:33.587 回答
54

错误消息说您缺少type1cm包裹。似乎MacPorts 将其作为texlive-latex-extra.

于 2012-07-06T07:32:49.763 回答
40

我必须将cm-super软件包安装在 ubuntu 衍生版本中(从 Ubuntu 18.04 派生的 jupyter/minimal-notebook )$ sudo apt-get install cm-super

于 2020-03-27T16:13:06.797 回答
0

在 Arch 上,你必须安装三个包:texlive-core, texlive-latexextra, texlive-fontsextra.

于 2020-12-02T19:57:31.413 回答