如何在组织模式的投影仪导出功能中使用列表的覆盖规范?
似乎 itemize
列表是在 org-mode 的 beamer 导出中自动生成的。我可以为块之类的东西指定诸如
之类的东西,但如果我想将它与一个项目一起使用,我似乎必须手动写出一个逐项列表。例如,我希望输入此内容并一次看到一个列表项,但我没有,我在一张幻灯片中看到它们:
*** Test
**** one
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
**** two
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
**** three
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
此外,似乎我应该能够这样做:
*** Test
:PROPERTIES:
:BEAMER_envargs: [<only@+>]
:END:
- one
- two
- three
为了获得相同的效果,但我查看整个列表。这也不起作用:
*** Test
:PROPERTIES:
:BEAMER_envargs: [<only@+>]
:END:
**** one
**** two
**** three
我在这里缺少什么?
It seems like itemize
lists are automatically generated in the beamer export for org-mode. I can specify things like <only@2>
for things like blocks, but it seems like I have to write out an itemize list by hand if I want to use it with an item. For example, I expect to type this and see one list item at a time, but I don't, I see them all in one slide:
*** Test
**** one
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
**** two
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
**** three
:PROPERTIES:
:BEAMER_envargs: <only@+>
:END:
Also, it seems like I should be able to do:
*** Test
:PROPERTIES:
:BEAMER_envargs: [<only@+>]
:END:
- one
- two
- three
for the same effect, but I see the whole list. This doesn't work either:
*** Test
:PROPERTIES:
:BEAMER_envargs: [<only@+>]
:END:
**** one
**** two
**** three
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
org-mode Info 节点有一些广泛的示例(至少在最新的开发版本中)。
以下最小示例应该完全按照您的意愿工作,
如果我误解了您的请求,请告诉我。
The org-mode Info node has some extensive examples (at least in the most up to date development version).
The following minimal example should work exactly as you wish
Let me know if I misunderstood your request.