RTM*_*RTM 7 r beamer r-markdown
我在 RMarkdown 中编写幻灯片并将其编译成 Beamer 演示文稿。我想在幻灯片上逐步显示项目符号和子项目符号。下面是一个.Rmd文件,显示了我的一些失败的尝试。在这些尝试中,我在子项目符号行之前插入了 4 个空格。我想在逐张幻灯片(甚至逐个列表)的基础上控制增量。
---
title: "My Title"
author: "RTM"
output: beamer_presentation
---
## This works, incremental bullets
>- Bullet 1
>- Bullet 2
## This nests, but does not increment
- Bullet 1
- Bullet 2
+ subbullet 1
+ subbullet 2
## This increments, but fails to nest
>- Bullet 1
>- Bullet 2
> - subbullet 1
> - subbullet 2
## This increments, but fails to nest
>- Bullet 1
>- Bullet 2
> + subbullet 1
> + subbullet 2
## This increments, but fails to nest
>- Bullet 1
>- Bullet 2
+ subbullet 1
+ subbullet 2
## This increments, but fails to nest and ignores subbullet status
>- Bullet 1
>- Bullet 2
>+ subbullet 1
>+ subbullet 2
Run Code Online (Sandbox Code Playgroud)
这个问题通过更新解决了pandoc。这可以使用pandoc 2.1.3
我pandoc在终端更新了我的brew install pandoc,这引发了一个错误,建议我运行brew link --overwrite pandoc。我这样做了,我的 pandoc 版本也更新了。我重新编译该.Rmd文件和前两个文件,但无法嵌套案例增量和嵌套。