这可能听起来像一个愚蠢的问题,但是当我使用RStudio服务器从Rmd文件编译pdf文档时,我想知道.tex文件保存在哪里。 我添加了keep_tex选项,因此Rmd的标题如下所示:
---
output:
pdf_document:
keep_tex: yes
---
然后当我编译时,输出看起来像这样
|...................... | 33%
ordinary text without R code
|........................................... | 67%
label: plot
processing file: test.Rmd
cropping /tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test_files/figure-latex/plot-1.pdf
PDFCROP 1.33, 2012/02/01 - Copyright (c) 2002-2012 by Heiko Oberdiek.
==> 1 page written on `/tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test_files/figure-latex/plot-1.pdf'.
|.................................................................| 100%
ordinary text without R code
/usr/lib/rstudio-server/bin/pandoc/pandoc test.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --output /tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test.tex --template /home/myusername/R/x86_64-pc-linux-gnu-library/3.1/rmarkdown/rmd/latex/default.tex --highlight-style tango --latex-engine pdflatex --variable 'geometry:margin=1in'
output file: test.knit.md
/usr/lib/rstudio-server/bin/pandoc/pandoc test.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --output /tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test.pdf --template /home/myusername/R/x86_64-pc-linux-gnu-library/3.1/rmarkdown/rmd/latex/default.tex --highlight-style tango --latex-engine pdflatex --variable 'geometry:margin=1in'
Output created: /tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test.pdf
我想找到中间的.tex文件(或test.knit.md),然后进行一些编辑。除了它无处可寻。不在工作目录中,或/ home / myusername /,或/,或/ tmp / Rtmpb1x3Q0 /。 如果有人有答案,我真的很感激。
答案 0 :(得分:2)
实际上,这是控制台中的第一行
/usr/lib/rstudio-server/bin/pandoc/pandoc test.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --output /tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test.tex --template /home/myusername/R/x86_64-pc-linux-gnu-library/3.1/rmarkdown/rmd/latex/default.tex --highlight-style tango --latex-engine pdflatex --variable 'geometry:margin=1in'
告诉我们输出.tex
文件位于/tmp/Rtmpb1x3Q0/preview-3bfe24922427.dir/test.tex
不知何故,我上次没有找到该文件,但在最近的一个实例中,.tex
文件实际上就在那里,所以这就回答了这个问题。
答案 1 :(得分:0)
问题的初始代码
---
output:
pdf_document:
keep_tex: yes
---
为我抛出一个错误,而以下不会:
---
output:
pdf_document: default
keep_tex: T
---
但是,我仍然无法在控制台输出后找到 .tex 文件。好像还是没有保存。相反,在 R studio 控制台中运行以下几行很容易:
#install.packages(rmarkdown)
rmarkdown::render("FileName.Rmd", output_format = latex_document())
文件“FileName.Rmd”需要在当前工作目录中 - 这是 .tex 文件将被保存的位置。