R Markdown:PDF文档编译错误(pdf后端)

时间:2019-10-24 12:18:34

标签: latex r-markdown

我决定将论文写在rmarkdown中,并且在将文档编织为pdf时遇到问题。这是一个非常大的文件。该文档适用于html_output,但在使用pdf_output进行编译时存在问题。当我使用keep_tex保存乳胶文件时,我可以运行它,并安全地输出pdf_document(存在一些格式问题)。

date: "8/12/2019"
output: 
 pdf_document:
    keep_tex : true
    latex_engine : lualatex
    includes :
      before_body : Title.sty
    fig_width : 6
    fig_height : 4
    fig_caption : TRUE
    citation_package: biblatex
bibliography: Bibliographytxt.bibtex



output file: Test.knit.md

tlmgr search --file --global "/biblatex-dm.cfg"
tlmgr search --file --global "/Test.bbl"
! error:  (file "Test_files/figure-latex/""Decision_Trees-1".png) (pdf backend):

Error: Failed to compile Test.tex. See https://yihui.name/tinytex/r/#debugging for debugging tips. See Test.log for more info.
In addition: Warning messages:
1: In readLines(log) : incomplete final line found on 'Test.log'
2: In parse_packages(logfile, quiet = c(TRUE, FALSE, FALSE)) :
  Failed to find a package that contains biblatex-dm.cfg
3: In parse_packages(logfile, quiet = c(TRUE, FALSE, FALSE)) :
  Failed to find a package that contains Test.bbl
Execution halted

有人知道R为什么要读取文件吗?

! error:  (file "Test_files/figure-latex/""Decision_Trees-1".png) (pdf backend):

正在以双引号读取文件Decision_Trees-1!

应该不读取“ Test_files / figure-latex / Decision_Trees-1.png”。

此外,当我尝试加载pdf或png格式的文件时,knitr :: include_graphics(“ Mypdf.pdf”)似乎也不起作用。

请帮助。

0 个答案:

没有答案