我想知道是否有技巧将当前日期放在.rmd要处理的文档knitr和rmarkdown程序包的YAML前端。我曾经在Wiki页面的顶部放置以下行,
_baptiste, `r format(Sys.time(), "%d %B, %Y")`_
它将在html输出中转换为2014年5月3日的baptiste。现在,我想利用所提供的高级pandoc包装器rmarkdown,但是在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
任何解决方法?
呼啦一阵风
慕村225694