如何在 RStudio 上像这样渲染 R-Presentation (ioslide)?

How do I Render R-Presentation (ioslide) Like this on RStudio?

告诉我如何像这样渲染 R-Presentation。我在阅读以学习如何制作 R-Presentation 时看到了很多示例,但每次我 运行 它们都像 RStudio 上的正常 R code 它们拒绝渲染,尽管如果我 ctr + v 它只显示封面。像这样我的 MWE,我知道它不是一张幻灯片演示,但我得到的只是

---
title: "Habits"
author: John Doe
date: March 22, 2005
output: ioslides_presentation
---

# In the morning

## Getting up

- Turn off alarm
- Get out of bed

## Breakfast

- Eat eggs
- Drink coffee

# In the evening

## Dinner

- Eat spaghetti
- Drink wine

---

```{r, cars, fig.cap="A scatterplot.", echo=FALSE}
plot(cars)
```

## Going to sleep

- Get in bed
- Count sheep

请告诉我 keyboard shortcutRStudio 上像这样渲染 R-PresentationRStudio 本身上的 bottomclick

这需要 .Rpres 文件类型 NOT .Rmd(Rmarkdown)。

  1. 在 Rstudio 中打开一个新的文本文件

  2. 另存为file.Rpres

  3. 使用适当的语法让 RStudio 知道如何呈现您的演示文稿

    In the morning
    =====================
    Exercise
    
    Breakfast
    =====================
    - Cereal
    

当您使用代码保存文件时,Rstudio 将有一个 preview 按钮,而通常的 knit 按钮所在的位置。当您单击 preview 时,Rstudio 将适当地呈现文件。

我使用 this link 进行研究