mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
43 lines
669 B
Markdown
43 lines
669 B
Markdown
```
|
|
% pandoc -t beamer
|
|
# Level 2 blocks
|
|
|
|
<div class="columns">
|
|
<div class="column" width="40%">
|
|
## Block one
|
|
- Item
|
|
</div>
|
|
<div class="column" width="60%">
|
|
## Block two
|
|
- Item
|
|
</div>
|
|
</div>
|
|
^D
|
|
\begin{frame}{Level 2 blocks}
|
|
\protect\phantomsection\label{level-2-blocks}
|
|
\begin{columns}[T]
|
|
\begin{column}{0.4\linewidth}
|
|
\begin{block}{Block one}
|
|
\protect\phantomsection\label{block-one}
|
|
\begin{itemize}
|
|
\tightlist
|
|
\item
|
|
Item
|
|
\end{itemize}
|
|
\end{block}
|
|
\end{column}
|
|
|
|
\begin{column}{0.6\linewidth}
|
|
\begin{block}{Block two}
|
|
\protect\phantomsection\label{block-two}
|
|
\begin{itemize}
|
|
\tightlist
|
|
\item
|
|
Item
|
|
\end{itemize}
|
|
\end{block}
|
|
\end{column}
|
|
\end{columns}
|
|
\end{frame}
|
|
```
|