我在Rmarkdown文档中使用外部图像,该文档旨在呈现为ioslides,我需要轻松调整它们的大小。
这样做html方式适用于dependencies {
...
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5.1'
compile 'com.google.code.gson:gson:2.7'
}
到ioslides和html_document。
knit
按照以下标记方式执行此操作时,我{html_document <img src="image.png" style="height: 200px"/>
但不是{i} {i} {i}(即图像未调整大小)。
knit
我的问题是:如果输出为ioslides,我怎样才能使降价调整方法有效?
答案 0 :(得分:1)
Atongsa的解决方案:使用chunkoptions
```{r, out.width = "900px", out.height= "500px", fig.cap= "cite from
NATURE REVIEW_Deep_learning", echo=FALSE}
knitr::include_graphics("/home/atongsa/Pictures/Screenshot")
```
然后想象就好了
答案 1 :(得分:0)
要添加到Atongsa's answer,您可以使用百分比来管理宽高比。
例如out.width='90%'