我只能在 reporteRs 中找到有关向 pptx 文档添加日期(理想情况下是基于报告运行时间的当前日期)的信息。有没有办法将当前日期添加到 docx 文档中?
谢谢!
尝试
library( ReporteRs )
mydoc = docx( )
mydoc = addParagraph( mydoc, value = as.character(Sys.time()), stylename = "Normal" )
mydoc = addParagraph( mydoc, value = as.character(Sys.Date()), stylename = "Normal" )
writeDoc( mydoc, file = tf <- tempfile(fileext = ".docx"))
shell.exec(tf)
pptx就是这样工作的...