用自定义参数编织

时间:2020-01-30 14:15:18

标签: r rstudio r-markdown knitr

我无法让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"))

0 个答案:

没有答案