Rmarkdown 保留 .tex 文件
Rmarkdown Retain .tex file
在 R 中,当使用 rmarkdown::render(...)
编译 markdown 文档时,如何保留 knitting 生成的中间 .tex
文件。
我已经尝试设置 clean=FALSE
参数,但这保留了数字,而不是最终的 tex 文件或辅助文件,我需要检查这些文件以进行调试。
您可以在 YML header 中指定它:
output:
pdf_document:
keep_tex: true
---
在 R 中,当使用 rmarkdown::render(...)
编译 markdown 文档时,如何保留 knitting 生成的中间 .tex
文件。
我已经尝试设置 clean=FALSE
参数,但这保留了数字,而不是最终的 tex 文件或辅助文件,我需要检查这些文件以进行调试。
您可以在 YML header 中指定它:
output:
pdf_document:
keep_tex: true
---