我无法让rmarkdown :: render接受https://bookdown.org/yihui/rmarkdown/params-knit.html#knit-with-custom-parameters中的params参数
一个名为re.Rmd的Rmd的最小示例:
---
title: "Untitled"
output:
pdf_document:
template: def.tex
params:
title: "different"
---
我更改了默认的pandoc乳胶模板:pandoc -D latex > def.tex
$if(title)$
\title{$title$$if(thanks)$\thanks{$thanks$}$endif$}
$endif$
到
$if(params.title)$
\title{$params.title$$if(thanks)$\thanks{$thanks$}$endif$}
$endif$
但是如果我运行rmarkdown :: render,它将忽略参数
rmarkdown::render("Documents/thesis/test/re.Rmd",params=list(title="very different"))