我正在使用RStudio在R中写一个演示文稿。要创建新的演示文稿,我从File =>中选择“R Presentation”。新文件菜单。 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中此代码的等效内容是什么?
此外,有没有人知道他们为什么这两种方式?
已解决(09/25/2017)!请参阅下面的Nova的答案。这是一个截图,显示我是如何做到的:
答案 0 :(得分:1)
我能够"导出"通过转到"演示文稿"到html的演示文稿在RStudio中选择标签,单击换档图标,其中显示"更多",然后选择"另存为网页"。这保存了一个独立的.html文件,当我从不同的文件夹位置打开它时,该文件有效。