Isoslides presentation, incremental bullet points for subsections

95 views Asked by At

In an isoslides_presentation, creating incremental (in terms of time: one after another) bullet points can be done by following code:

> - point 1
> - point 2

But how do I achieve this for lower hierarchy points? Something like this (both not working):

> - point 1
>   - subpoint 1.1
>   - subpoint 1.2
> - point 2
>   - subpoint 2.1
>   - subpoint 2.2

or this

> - point 1
  > - subpoint 1.1
  > - subpoint 1.2
> - point 2
  > - subpoint 2.1
  > - subpoint 2.2

I found a reference (https://rpubs.com/eli_3357/ioslides), that states:

A section can also be incremental using > * for the first line, and >tab* for the following lines"

But I can not get it to run.

In reply to the comment, here is a more complete RepEx:

---
title: "Test"
subtitle: "I do tests"

output:
  ioslides_presentation:
    smaller: yes
  slidy_presentation: default
---

# Slide 1

> - Point 1: to show after first click
>   - point 1.1: to show after second click 
>   - point 1.2: to show after third click 
> - Point 2: to show after fourth click
>   - and so on ...

#######################################

# Slide 2 {.build}

> - I'm, aware of the build-option...
>   - ...but this also gives not the intended result ...
>   - ... and all sub-bullets appear at once

1

There are 1 answers

5
Limey On

This worked for me.

---
title: "Untitled"
date: "18/10/2022"
output: ioslides_presentation
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

## Slide with Bullets

- Bullet 1
  - Sub-bullet 1
  - Sub-bullet 2
- Bullet 2
- Bullet 3

enter image description here