针织pdf中的图像被切除

时间:2019-06-05 15:37:13

标签: r pdf r-markdown knitr

我正在尝试在编织的Rmd pdf文档中包含图解,但是这些图解总是被裁剪掉。这是我正在经历的一个小例子:

---
output:
  pdf_document: default
---

```{r}
plot (cars)
```
```{r, fig.width=2}
plot (cars)
```
```{r, out.width='\\textwidth'}
plot (cars)
```

此Rmd生成的pdf看起来像这样(请注意切掉的x轴标签):

pdf output

任何想法是什么原因造成的?

软件信息:

  • 针织衫1.23
  • pandoc 2.7.2
  • R 3.6.0

编译文档的调用是

/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' 

0 个答案:

没有答案