mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-29 01:41:20 +08:00
7e7735bb6b
for resizing figures, table cells, etc. in LaTeX. `\linewidth`, unlike the others, is sensitive to indented environments like lists. Closes #9775.
658 B
658 B
% 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}