1

我想将主题的 HTML 变体分发为自包含的 HTML 文件。那可能吗?以下 YAML 标头构建了华丽的文件,但似乎通过缓存和文件夹的形式具有依赖关系。

---
title: "Tufte Handout"
subtitle: "An implementation in R Markdown"
author: "JJ Allaire and Yihui Xie"
date: "`r Sys.Date()`"
output:
  tufte::tufte_html: 
    self_contained: true
---

4

1 回答 1

2

I think you may not be looking closely enough at this, or looking from the wrong angle:

  • Self-contained asks for just that;
  • what your question notes are cache files

which are "merely" used to produced said self-contained file more easily.

Should work for tufte, tint and everything else running through the same machinery.

于 2019-10-09T01:44:14.927 回答