I am creating a beamer presentation using rmarkdown. I want the top-level bullets (on some slides) to increment but the sub-bullets to appear with the top-level bullets.
How do I achieve this, ideally without having to resort to latex code in the markdown document?
Various attempts below. The closest I've got uses a pause (i.e. dots) but it adds a paragraph break between the top-level bullets, which I don't want (and which I again don't want to fix with latex code).
Any ideas?
## Attempt 1: all incremental
>- First item
>- Second item
* First sub-item
* Second sub-item
## Attempt 2 (extra space): all incremental
>- First item
>- Second item
* First sub-item
* Second sub-item
## Attempt 3 (even more space): all incremental
> - First item
> - Second item
* First sub-item
* Second sub-item
## Attempt 4: all incremental
>- First item
>- Second item
> * First sub-item
> * Second sub-item
## Attempt 5: all incremental
::: incremental
- First item
- Second item
* First sub-item
* Second sub-item
:::
## Attempt 6: non-incremental
::: incremental
- First item
:::
- Second item
* First sub-item
* Second sub-item
## Attempt 7: non-incremental
- First item
. . .
- Second item
* First sub-item
* Second sub-item
## Attempt 8: appears correctly but too big a gap between first and second item
- First item
. . .
- Second item
* First sub-item
* Second sub-item
## Attempt 9 (two spaces at end of line): appears correctly but too big a gap between first and second item
- First item
. . .
- Second item
* First sub-item
* Second sub-item
With just a tiny bit of latex code: