我正在使用tufte
包中的Tufte讲义模板并将其呈现为pdf(https://rmarkdown.rstudio.com/docs/reference/tufte_handout.html)。
yaml
的{{1}}如下所示:
.Rmd
但是最终的title: "this is my title"
subtitle: "this is my subtitle - goes missing in pdf output"
author: "IP"
date: "`r Sys.Date()`"
output:
tufte::tufte_handout:
citation_package: natbib
latex_engine: xelatex
dev: pdf
tufte::tufte_html: default
tufte::tufte_book:
citation_package: natbib
latex_engine: xelatex
link-citations: yes
输出中不会显示字幕,如下所示:
但是,如果我将同一文档编织到.pdf
文件中,它确实包含副标题:
如何在.html
输出中包含字幕?
这是预期的行为还是错误?