我正在使用该officedown
包生成一个 Word 文档。请问,如果我想从磁盘中导入一个设计好的图形,如何控制officedown
不改变图形的高宽比?
例如,我原来的图是这样的:
但是,在生成的Word文档中officedown
,是这样的:
请问,如何避免失真officedown
?以及如何让图形的宽度走整条线?
我的问题可以通过以下代码重现:
---
output: officedown::rdocx_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = FALSE,
fig.cap = TRUE,
message = FALSE,
warning = FALSE
)
library(officedown)
library(officer)
```
```{r}
knitr::include_graphics("the file path to a figure")
```
非常感谢您的友好指导!