我想为rmarkdown生成一个模板,该模板会自动将 static 值插入模板。具体来说,我想在标题和文本中插入当前日期(格式为DD月YYYY),在标题中插入当前用户的姓名。
---
title: "Template Title"
author: "Your Name"
date: "The Date"
output:
pdf_document:
toc: yes
---
# Version History
* The Date: Initial version
当前显示为Your Name
和The Date
的地方,我希望将它们替换为当前的用户名和格式化日期(如在RStudio中创建新的rmarkdown文档时所发生的情况)。
编辑:由于我在寻找静态值而非动态值,因此该问题不同于YAML current date in rmarkdown。