我正在尝试使用 XeLaTeX、knitr 和 tikz - 并因 ghostscript 错误而失败。我尝试了许多不同的方法,情况如下:
- XeLaTeX 与 knitr:作品
- PDFLaTeX 与 knitr:作品
- PDFLaTeX 与 knitr 和 tikz:作品
- 带有knitr和tikz的XeLaTeX:失败
我制作的简单文档在这里http://paste.lisp.org/+31GJ,主要部分是这样的:
<<xetex-tikz, eval=FALSE, echo=FALSE>>=
options(tikzDefaultEngine='xetex')
@
A plot:
<<test, echo=FALSE,dev='tikz'>>=
plot(10,10)
@
错误消息也在那里的注释中,但我将其粘贴在这里:
GPL Ghostscript 9.14: Unrecoverable error, exit code 1
** WARNING ** Filtering file via command -->rungs -q -dNOPAUSE -dBATCH -dEPSCrop -sDEVICE=pdfwrite -dCompatibilityLevel=1.5 -dAutoFilterGrayImages=false -dGrayImageFilter=/FlateEncode -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -sOutputFile='/tmp/xdvipdfmx.45a08580e905757a9f5e6fc456cb9f8b' '/dev/null' -c quit<-- failed.
** WARNING ** Image format conversion for "/dev/null" failed...
** WARNING ** Image width=0.0!
** WARNING ** Image height=0.0!
** ERROR ** pdf_ref_obj(): passed invalid object.
为了避免旧软件包出现任何问题(例如,RHEL5 有旧版本的 texlive),我在本地安装了以下内容:
TeXlive 2013:
$ type xelatex
xelatex is hashed (/usr/local/texlive/2013/bin/x86_64-linux/xelatex
$ xelatex -version
XeTeX 3.1415926-2.5-0.9999.3-2013060708 (TeX Live 2013)
kpathsea version 6.1.1
GNU R
$ type R
R is /usr/local/bin/R
$ R --version
R version 3.0.3 (2014-03-06) -- "Warm Puppy"
Copyright (C) 2014 The R Foundation for Statistical Computing
Platform: x86_64-unknown-linux-gnu (64-bit)
鬼脚本
$ type ghostscript
ghostscript is /usr/local/bin/ghostscript
$ ghostscript --version
9.14
我将 R_LATEXCMD 设置为 xelatex (在使用 pdflatex 之前,这意味着 knit 会因为我使用 XeTeX 包而失败),这是我所做的唯一全局变量或附加设置;路径似乎是正确的,例如:
$ kpsewhich tikz
/usr/local/texlive/2013/texmf-dist/tex/plain/pgf/frontendlayer/tikz.tex
在 RI 上更新了软件包并安装了 knitr 和 tikzDevice(最新版本,通过 install.package)。
任何指针将不胜感激;XeLaTeX+knitr+tikz 组合并不特别奇特:在 knitr 图形手册中建议使用 tikz,并且需要使用与主文档相同的字体,并且 XeLaTeX 是一种非常常见的引擎选择 - 我需要它提供的 unicode 支持以使用 Charis SIL、IPA 字符等。