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 がインストールされています (アプリケーション フォルダにあります)。私は R と LaTeX の初心者なので、動作する TeX バイナリがインストールされていないというエラー メッセージの意味がわかりません。どのように進めればよいですか?