2014-11-02 132 views
0

我使用devtools和roxygen2在RStudio中创建了一个R包。我打开了项目文件,现在我想为我的功能提供所有的文档,并将它们放到一个pdf参考手册中。我跑r - 关于TeX二进制的Rd2pdf错误

system("R CMD Rd2pdf .") 

这给了我以下错误:

# Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, : 
# Running 'texi2dvi' on 'Rd2.tex' failed. 

# Output: 
# You don't have a working TeX binary (tex) installed anywhere in 
# your PATH, and texi2dvi cannot proceed without one. If you want to use 
# this script, you'll need to install TeX (if you don't have it) or change 
# your PATH or TEX environment variable (if you do). See the --help 
# output for more details. 

# For information about obtaining TeX, please see http://www.tug.org. If 
# you happen to be using Debian, you can get it with this command: 
# apt-get install tetex-bin 
# Error in running tools::texi2pdf() 

我使用的是OS X 10.10和我有安装MacTEX都(它坐在我的应用程序文件夹)。我是R和LaTeX的初学者,所以我不确定错误消息是什么意思,表示我没有安装工作的TeX二进制文件。我应该如何继续?

回答

2

经过挖掘,我发现我得到的错误与优胜美地升级 有关。

解决方法是按照here上的建议从终端启动RStudio。

当我这样做时,我能够生成参考手册就好了。