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