5

我在 LaTeX 文档中安装了pgfSweave颜色语法包,但在涉及 LaTeX 依赖项时我搁浅了。我已经pgf通过 MikTeX 安装了该软件包,Package Manager (Admin)并且相信它是最新的(我查看了 MiKTeX 安装文件夹中的软件包文件夹,但我没有看到任何版本号)。我错过了什么?

> library(pgfSweave)
Loading required package: stashR
Loading required package: filehash
filehash: Simple key-value database (2.1-1 2010-10-04)
A Set of Tools for Administering SHared Repositories (0.3-3 2009-03-26)
Loading required package: highlight
Loading required package: tools
Loading required package: codetools
Loading required package: parser
Loading required package: Rcpp
Loading required package: optparse
Loading required package: getopt
Loading required package: formatR
tikzDevice: A Device for R Graphics Output in PGF/TikZ Format (v0.5.3)
Checking for a LaTeX compiler...


A working LaTeX compiler was found by checking:
    The PATH using the command pdflatex

Global option tikzLatex set to:
    C:\PROGRA~2\MIKTEX~1.9\miktex\bin\pdflatex.exe

MiKTeX-pdfTeX 2.9.4052 (1.40.11) (MiKTeX 2.9)
Copyright (C) 1982 D. E. Knuth, (C) 1996-2006 Han The Thanh


Error : .onLoad failed in loadNamespace() for 'pgfSweave', details:
  call: requirePGFVersion("2.10")
  error: PGF >= 2.10 is required to use pgfSweave
In addition: Warning message:
running command 'C:\PROGRA~2\MIKTEX~1.9\miktex\bin\pdflatex.exe -interaction=batchmode -output-directory C:\Users\romunov\AppData\Local\Temp\Rtmply4jAb test-for-pgf.tex' had status 1 
Error: package/namespace load failed for 'pgfSweave'
4

1 回答 1

5

在 MikTex 存储库中,使用的版本显然是 2.00。最新版本 2.10 可以在这里下载。安装说明可以在 zip 文件中包含的手册中找到 ...\pgf_2.10.tds\doc\generic\pgf

如果根据安装说明移动整个文件夹。归结为将相关的 gpf 文件夹从 zip 文件中的目录结构复制到 miktex 安装中的目录结构中。最好尝试符合 TDS 的安装,texmf/将安装说明中的 替换为 miktex 安装文件夹。

不要忘记通过 miktex 设置应用程序刷新 FNDB(文件名数据库)。

或者,您可以卸载 pgf 包并将解压缩的目录树放在 Tex 可以找到它的地方。同样,不要忘记刷新 FNDB。请注意,安装的 pgf 包将在 MikTex 目录树的不同位置有文件夹。因此,不要只是将您找到的所有内容粘贴到您在目录系统中找到的一个文件夹中。


编辑 :

要了解 tex 发行版中加载的 pgf 版本,请尝试以下小文档:

\documentclass{article}
\usepackage{tikz}
\begin{document}
\pgfversion
\end{document}
于 2011-04-13T10:02:10.630 回答