我很遗憾使用的是 Windows 7,这可能是问题所在......
我想将现有图像文件添加到 pander 报告中,使用 Windows 平台上的实时报告生成,输出到 docx:
library(pander)
setwd("T:/R/Temp") #this contains the subfolder & file /plots/temp.png
myReport = Pandoc$new(author="Jerubaal",title="Where's my picture?", format="docx")
myReport$add.paragraph("There should be a picture after this.")
myReport$add(pandoc.image("/plots/temp.png"))
myReport$add.paragraph("There should be a picture before this.")
myReport$export()
唉,在 Windows 中运行它时没有包含图像(甚至在 md 文件中也没有)。
如果我尝试将代码直接放入,它不起作用:
myReport$add("![](/plots/temp.png)")
如果我试试这个:
myReport$add("![/plots/temp.png](/plots/temp.png)")
我只是得到路径的文本:/plots/temp.png
有什么建议么?
仅供参考:前段时间,尝试 ggplot,我让它在 Ubuntu 中工作:较早的问题
此报告是在 x86_64-w64-mingw32 平台上使用 R (3.0.3) 和 pander (0.3.9) 在 0.02 秒内生成的。