在 R Mardown 中使用officedown::rdocx_document
时,Office Word 输出会将绘图包含为 .jpg 图像,尽管我希望自动以 .emf(增强的元文件)格式包含我的 R markdown 的绘图。
我知道使用该功能ggsave()
,您可以将设备调整为 .emf,如下例所示:
plot(mtcars$mpg)
ggsave("plot.emf", width = 10, height = 6, scale = 1, device = {function(filename, ...) devEMF::emf(file = filename, ...)})
有没有办法使用 officedown::rdocx_document 作为输出ggsave
来更改RMarkdown (.Rmd) 中绘图的设备输出?