我使用 markdown 和 pandoc 生成 beamer 幻灯片。
这次降价...
# Test
foobar
...编译为以下 Latex:
\begin{frame}{Test}
\protect\hypertarget{test}{}
foobar
\end{frame}
我必须在 Markdown 中写什么才能将内容对齐到底部,即获得此输出?
\begin{frame}[b]{Test}
\protect\hypertarget{test}{}
foobar
\end{frame}
PS 我知道这个问题要求另一个标记框架的案例。不幸的是,它被错误地关闭为重复。
答案1
您可以在括号中给出选项:
# Test {.b}
foobar
将导致
\begin{frame}[b]{Test}
\protect\hypertarget{test}{}
foobar
\end{frame}
支持的选项有:allowdisplaybreaks
,,,,,,,,,,,(见allowframebreaks
b
c
t
environment
label
plain
shrink
standout
noframenumbering
https://pandoc.org/MANUAL.html#frame-attributes-in-beamer)