Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用较旧的 ReporteRs 包,似乎可以使用如下代码指定 Word 模板:
doc <- docx(template = "your template.docx")
是否可以使用较新的官员包指定 Word 模板?它可能在文档中,但我没有看到。一种解决方法可能是读取我想用作模板的文件,删除所有内容,然后将新输出添加到空文件中。如果可以只指定一个模板,我不想尝试这样的事情。
谢谢。
是的; 您可以打开与 docx 模板的连接doc <- read_docx(*your template file name here*)。
doc <- read_docx(*your template file name here*)