我已经安装了 TinyTeX,现在正在尝试将通用的“Untitled.Rmd”文件编织成 PDF,
> install.packages("tinytex")
> tinytex::install_tinytex()
> options(tinytex.verbose = TRUE)
> rmarkdown::render("Untitled.Rmd", output_format = "pdf_document")
返回此错误消息:
tlmgr search --file --global "/grffile.sty"
! LaTeX Error: File `grffile.sty' not found.
! Emergency stop.
<read *>
Error: Failed to compile Untitled.tex. See https://yihui.name/tinytex/r/#debugging for debugging tips. See Untitled.log for more info.
In addition: Warning message:
In parse_packages(logfile, quiet = c(TRUE, FALSE, FALSE)) :
Failed to find a package that contains grffile.sty
我已经尝试安装该软件包,但这似乎没有帮助。
> tinytex::tlmgr_install("grffile")
其他人遇到过这个问题吗?到目前为止,当第二个 LaTeX 发行版不存在时,我已经能够在 Windows 和 MacOS 上重现此错误。
我刚刚遇到了与pdflatex相同的问题。包 grffile 几天前在 2019 年 11 月 8 日更新。变更日志揭示了原因:
我从我的文档中删除了所有对 grffile 的引用,它们现在编译得很好。
将此添加到 .rmd 文件的顶部