2014-12-09 49 views
7

當使用馬德里beamer主題(和其他一些)時,標題3呈現爲覆蓋整個部分的框,但是在標記中僅在開始時指定標題。我如何指定該部分的結尾?如何在rmarkdown beamer madrid演示文稿中結束標題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. 

輸出

enter image description here

+0

@ zx8754這並不爲我工作。 – 2014-12-09 13:19:56

回答

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! 
+0

聰明 - 直接切換到LaTeX,降價然後忽略LaTeX並通過它。完善 – Corone 2014-12-09 13:25:16

相關問題