选择某些元素以逐步构建ioslides

时间:2015-09-04 09:24:05

标签: r r-markdown presentation

我正在使用RStudio中的ioslides构建演示文稿。 我有以下幻灯片:

```{r, echo=FALSE}
logo<-"logo.jpg"
```

## Playing with R
<IMG style="position:absolute;top:5.5%;right:5%;width:140px;"SRC="`r logo`">

Type in the interactive console:

```{r, eval=FALSE}
x <- 1:10 # "name <- value returns the value invisibly"
```
```{r, eval=FALSE}
getwd()
```

我希望只有代码块以递增方式显示,文本以及徽标不显示。我尝试使用<div class="incremental"> </div>,但这不起作用。移动到幻灯片时,元素已经放置在幻灯片上。使用{.build}选项会使每个元素以递增方式显示,我想避免这种情况。

任何建议我只能选择幻灯片上的某些元素以递增方式显示?

1 个答案:

答案 0 :(得分:1)

正如您所提到的,您可以使用{.build}逐步构建幻灯片 (另见http://rmarkdown.rstudio.com/ioslides_presentation_format.html#build_slides)。 应该可以使用div元素对要一起构建的部分进行分组:

```{r, echo=FALSE}
logo<-"logo.jpg"
```

## Playing with R {.build}

<div>
<IMG style="position:absolute;top:5.5%;right:5%;width:140px;"SRC="`r logo`">

Type in the interactive console:
</div>

```{r, eval=FALSE}
x <- 1:10 # "name <- value returns the value invisibly"
```

```{r, eval=FALSE}
getwd()
```