有什么方法可以让 Slidy 显示演讲者笔记吗?
我想将我的 MacBook Pro 连接到投影仪,然后进行演示,在演示中我可以看到观众看到的每一张幻灯片,此外还可以(在我的笔记本电脑上)看到观众看不到的私人演讲者笔记。
使用 Slidy 可以实现这一点吗?或者我应该硬着头皮改用支持此功能的 Powerpoint?
答案1
Slidy 不支持演讲者备注,但是reveal.js 确实:
<section data-markdown="example.md" data-separator="^\n\n\n" data-separator-vertical="^\n\n" data-separator-notes="^Note:"></section>
# Title
## Sub-title
Here is some content...
Note:
This will only display in the notes window.
替换-t slidy
为-t revealjs -V revealjs-url=https://revealjs.com
pandoc 命令:
$ pandoc -t revealjs -V revealjs-url=https://revealjs.com -s -o slides.html slides.md
演示时,按下该S
键即可打开一个带有演讲者备注的新窗口。