我使用devtools和roxygen2在RStudio中创建了一个R包。我已经打开了项目文件,现在我想把我的功能的所有文档都整理成一本pdf参考手册。我运行
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(它位于我的Applications文件夹中)。我是R和LaTeX的初学者,所以当它说我没有安装可工作的TeX二进制时,我不确定错误消息是什么意思。我应该如何继续?
经过深入研究,我发现我遇到的错误与约塞米蒂升级。
解决方法是按照此处的建议从终端启动RStudio。
当我这样做的时候,我能够很好地制作参考手册。