当使用Madrid beamer主题(以及其他一些主题)时,标题3将呈现为覆盖整个部分的框,但在标记中,标题仅在开始时指定。如何指定该部分的结尾?
在下面的示例中,我希望第二个句子位于框内,但第三个句子将返回白色背景。
示例:
---
title: "Example"
output:
beamer_presentation:
colortheme: beaver
theme: Madrid
---
## Slide with Box
Hello, I'm not in the box
### This is a box
And this text is in the box!
I don't want to be in the box, but I am.
输出
答案 0 :(得分:6)
这对我有用:
## Slide with block 2
Hello, I'm not in the block.
\begin{block}{This is a block}
And this text is in the block!
\end{block}
Hi, I'm not in the block either!
答案 1 :(得分:0)
使用Pandoc的较新版本(我有2.2.3.2),可以使用受保护的div围住一个块。以前对于1.6不适用于我。
因此,这将起作用:
## Slide with Box
Hello, I'm not in the box
::: {.block}
### This is a box
And this text is in the box!
:::
I don't want to be in the box, and I am not.
::: {.block}
和:::
分隔块。参见https://github.com/jgm/pandoc/issues/2957
使用\begin{block}
和\end{block}
的一个优点是您可以在块内使用markdown。