我想知道是否有一种技巧可以将当前日期放在.rmd
文档的YAML前置事项中,由knitr
和rmarkdown
包处理。我曾经在我的维基页面顶部有这样一行字,
_baptiste, `r format(Sys.time(), "%d %B, %Y")`_
并且它会在html输出中转换为巴蒂斯特,2014年5月3日。现在,我想利用rmarkdown
提供的高级pandoc包装器,但在YAML头中使用r代码似乎不起作用:
---
title: "Sample Document"
output:
html_document:
toc: true
theme: united
date: `r format(Sys.time(), "%d %B, %Y")`
author: baptiste
---
Error in yaml::yaml.load(front_matter) :
Scanner error: while scanning for the next token at line 6, column 7
found character that cannot start any token at line 6, column 7
Calls: <Anonymous> ... output_format_from_yaml_front_matter ->
parse_yaml_front_matter -> <Anonymous> -> .Call
有解决方案吗?