Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/68.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Rmarkdown Retain.tex文件_R_R Markdown_Tex - Fatal编程技术网

Rmarkdown Retain.tex文件

Rmarkdown Retain.tex文件,r,r-markdown,tex,R,R Markdown,Tex,在R中,当使用rmarkdown::render(…)编译降价文档时,如何保留编织生成的中间.tex文件 我已尝试设置clean=FALSE参数,但这会保留图形,而不是最终的tex文件或辅助文件,我需要检查这些文件以进行调试。您可以在YML标头中使用以下命令指定它: output: pdf_document: keep_tex: true --- 更多选择

在R中,当使用
rmarkdown::render(…)
编译降价文档时,如何保留编织生成的中间
.tex
文件


我已尝试设置
clean=FALSE
参数,但这会保留图形,而不是最终的tex文件或辅助文件,我需要检查这些文件以进行调试。

您可以在YML标头中使用以下命令指定它:

output:
  pdf_document:
    keep_tex: true
---
更多选择