mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
27 lines
345 B
Markdown
27 lines
345 B
Markdown
```
|
|
% pandoc -t beamer
|
|
# title
|
|
|
|
:::: {.columns}
|
|
::: {.column width="8%"}
|
|
content
|
|
:::
|
|
::: {.column width="84%"}
|
|
content2
|
|
:::
|
|
::::
|
|
^D
|
|
\begin{frame}{title}
|
|
\protect\phantomsection\label{title}
|
|
\begin{columns}[T]
|
|
\begin{column}{0.08\linewidth}
|
|
content
|
|
\end{column}
|
|
|
|
\begin{column}{0.84\linewidth}
|
|
content2
|
|
\end{column}
|
|
\end{columns}
|
|
\end{frame}
|
|
```
|