我正在尝试在编织的Rmd
pdf文档中包含图解,但是这些图解总是被裁剪掉。这是我正在经历的一个小例子:
---
output:
pdf_document: default
---
```{r}
plot (cars)
```
```{r, fig.width=2}
plot (cars)
```
```{r, out.width='\\textwidth'}
plot (cars)
```
此Rmd生成的pdf看起来像这样(请注意切掉的x轴标签):
任何想法是什么原因造成的?
软件信息:
编译文档的调用是
/usr/bin/pandoc +RTS -K512m -RTS rmdtest.utf8.md --to latex --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output rmdtest.tex --template /usr/lib/R/library/rmarkdown/rmd/latex/default-1.17.0.2.tex --highlight-style tango --pdf-engine pdflatex --variable graphics=yes --variable 'geometry:margin=1in' --variable 'compact-title:yes'