当我尝试制作pdf时,以下MWE给出了错误
---
title: "Effects of Storm Events on People and Economy"
output: pdf_document
---
```{r }
plot(1,2)
```
错误
! Package pdftex.def Error: File `test\%5Bexported\%5D_files/figure-latex/unnam
ed-chunk-1-1.pdf' not found.
Error: Failed to compile test[exported].tex. See https://yihui.name/tinytex/r/#debugging for debugging tips. See test[exported].log for more info.
Execution halted
似乎在正确的位置查找图,并且基本上在文件夹“ ./test[exported]_files/”中生成正确的图。
我该如何解决?我到处看,很难看到类似的错误以及如何解决。我做了devtools::install_github('yihui/tinytex')
,但我认为它没有用。
为此,我当前的设置是带有多模式设置的Emacs 24(对于html文档而言效果极佳)
另一条路线
我尝试走knit2pdf("./test.Rmd")
的路线,但出现此错误
Error in tinytex::latexmk(basename(out), engine = compiler, ...) :
The input file 'test.md' does not have the .tex extension
请帮助!