如何使 RStudio 演示文稿独立?

How to Make RStudio Presentation Self-contained?

我正在使用 RStudio 在 R 中编写演示文稿。要创建新的演示文稿,我从文件 => 新文件菜单中 select“R 演示文稿”。 RStudio 创建新文档。这是模板:

New Presentation
========================================================
author: 
date: 

First Slide
========================================================

For more details on authoring R presentations click the
**Help** button on the toolbar.

- Bullet 1
- Bullet 2
- Bullet 3

Slide With Code
========================================================

```{r}
summary(cars)
```

Slide With Plot
========================================================

```{r, echo=FALSE}
plot(cars)
```

创建演示文稿后,可以将其另存为 HTML。但是,我找不到使它成为独立 HTML 文件的选项。

作为反例,我可以使用 Rmarkdown 创建一个独立的 HTML 文件:

---
title: "Habits"
output:
    ioslides_presentation:
      mathjax: local
      self_contained: false
---

来源:http://rmarkdown.rstudio.com/ioslides_presentation_format.html

这段代码在 RStudio R Presentation 中的等价物是什么?

此外,有谁知道他们为什么要这样做?

已解决(2017 年 9 月 25 日)!请参阅下面的 Nova 的回答。这是一个屏幕截图,展示了我是如何做到的:

我已经能够 "export" 向 html 进行演示,方法是转到 RStudio 中的 "Presentation" 选项卡,单击显示 "More" 的换档图标, 然后选择 "Save as Webpage"。这保存了一个独立的 .html 文件,当我从不同的文件夹位置打开它时它可以工作。