问题描述
我想用保存的 word 模板创建一个 word 文档,并将一些反应性语句/文本(由用户从输入中选择)和数值转储到 word 文档的指定行。 我想被动地向该文档添加文本并用用户输入的值填充表格。然后下载word文件。 如果有人可以指导我如何处理或提供与此类文档生成代码相关的一些示例的链接 word template
解决方法
我不知道有任何允许您阅读和操作 Word 文档的软件包。但是,您可以使用 RMarkdown 创建您想要的文档。模板不是 Word 文档,而是 RMarkdown。
文档看起来像这样(参见例如 here for more details 或 RMarkdown Cookbook):
---
title: "Untitled"
author: "Your Name"
date: "April 20,2021"
output: word_document
---
# Varieties
*Varieties*: will provide seed for this trial type. Chemically-treated ... (your text)
```{r Your code snippet,echo=FALSE}
# Use echo=FALSE to hide the R code in the document
# CREATE A DATA FRAME "ResultsTable" HERE
ResultsTable # Return the table to print it
```