【发布时间】:2018-01-06 17:31:39
【问题描述】:
我想组成一个投影仪框架,它由两个并排的块组成,然后是在整个页面宽度上布置的文本,即在上面的 2 个块之下。生产这两个块工作正常。但是,我的任何尝试(例如,在最后一个块文本之后放置多个空行)都不能停止块部分。 这是一个MWE。
*** Left block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.5
:END:
My left block of text here
*** Right block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.48
:END:
My right block of text here.
- I'd like this piece of text to go below left and right
blocks of text throughout the page width but it stays
in the right block.
为此生成的 LaTeX 源通常是右块:
\begin{column}{0.48\textwidth}
\begin{block}{Right block}
My right block of text here.
\begin{itemize}
\item I'd like this piece of text to go below left and right
blocks of text throughout the page width but it stays
in the right block.
\end{itemize}
\end{block}
\end{column}
虽然我希望 \end{column} 出现在 \begin{itemize} 之前。 我想我们可以告诉 Beamer 停止阻塞,但找不到。
编辑:我同时发现了一个解决方法,即创建一个没有标题的新块(使用 ***[blank])来包含全角文本(见下文)。然而,这并不是我所期望的,因为最后一个块具有块的所有属性,特别是背景颜色。
*** Left block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.5
:END:
My left block of text here
*** Right block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.48
:END:
My right block of text here.
***
I'd like this piece of text to go below left and right
blocks of text throughout the page width but it stays
in the right block.
编辑 2:rvf0068 提出的解决方案效果很好。让我发布整个源代码。使用 org-mode 快捷方式,Ctrl-C Ctrl-B 当定位在 ***[blank] 标题上时,会提示您输入块类型,您需要的是 'i' (B_ignoreheading)。_
*** Left block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.5
:END:
My left block of text here
*** Right block :B_column:
:PROPERTIES:
:BEAMER_env: block
:BEAMER_col: 0.48
:END:
My right block of text here.
*** :B_ignoreheading:
:PROPERTIES:
:BEAMER_env: ignoreheading
:END:
I'd like this piece of text to go below left and right
blocks of text throughout the page width but it stays
in the right block.
【问题讨论】: