.rmd
처리 할 문서 knitr
와 rmarkdown
패키지 의 YAML 전면에 현재 날짜를 입력하는 트릭이 있는지 궁금 합니다. 예전에 위키 페이지 상단에 다음 줄이있었습니다.
_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
해결 방법이 있습니까?
!expr
예 :)도 지원date: !expr Sys.time()
하지만 이제는 작동하지 않습니다.