在 Rstudio 中使用
rmarkdown
和 knitr
来编织 Microsoft Word 文档时,图形通常看起来很糟糕,因为 Microsoft Word 不支持常用的矢量图形格式,例如 PDF。
幸运的是,R 中的
devEMF
包生成微软矢量格式 EMF,我几乎可以在我的 rmarkdown
应用程序中使用它。 问题是我的图像显示得太小了。 如何控制图像大小?
我已经尝试过以下标准的东西:
---
title: "Plot size trouble demo"
author: "for stackoverflow"
output: word_document
---
Here I include graphics in a word document using the `emf` printing device.
```{r dev = 'emf', fig.ext = 'emf'}
require(devEMF)
plot(1:10, 1:10)
```
The plot is small, so I try to make it bigger with the `fig.height` and fig.width` options:
```{r dev='emf', fig.ext='emf', fig.height=10, fig.width=10}
require(devEMF)
plot(1:10, 1:10)
```
The plot region stayed the same size, and now I have super-small labels and points!
Finally, I try to use the `out.width` and `out.height` options to rescale the figure to a different size, but this produces nothing at all:
```{r dev='emf', fig.ext='emf', fig.height=10, fig.width=10, out.width = '5in', out.height= '5in'}
require(devEMF)
plot(1:10, 1:10)
```
更新:我注意到here rmarkdown 支持
win.metafile
,但以下也没有产生任何结果:
```{r dev = 'win.metafile', out.width = '5in', out.height= '5in'}
plot(1:10, 1:10)
```
目前(2024 年 8 月),word 可以很好地处理 PDF。
您可以使用:
```{r}
knitr::include_graphics("demo.pdf")
```