mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-25 17:05:41 +00:00
for resizing figures, table cells, etc. in LaTeX. `\linewidth`, unlike the others, is sensitive to indented environments like lists. Closes #9775.
41 lines
658 B
Markdown
41 lines
658 B
Markdown
```
|
|
% pandoc -t beamer
|
|
:::: { .columns }
|
|
::: { .column align=center }
|
|
:::
|
|
::: { .column align=bottom }
|
|
:::
|
|
::::
|
|
|
|
:::: { .columns align=bottom .onlytextwidth }
|
|
::: { .column align=top }
|
|
:::
|
|
::: { .column align=top-baseline }
|
|
:::
|
|
::::
|
|
|
|
:::: { .columns totalwidth=7em }
|
|
::::
|
|
^D
|
|
\begin{frame}
|
|
\begin{columns}[T]
|
|
\begin{column}[c]{0.48\linewidth}
|
|
\end{column}
|
|
|
|
\begin{column}[b]{0.48\linewidth}
|
|
\end{column}
|
|
\end{columns}
|
|
|
|
\begin{columns}[b,onlytextwidth]
|
|
\begin{column}[T]{0.48\linewidth}
|
|
\end{column}
|
|
|
|
\begin{column}[t]{0.48\linewidth}
|
|
\end{column}
|
|
\end{columns}
|
|
|
|
\begin{columns}[T,totalwidth=7em]
|
|
\end{columns}
|
|
\end{frame}
|
|
```
|