Files
pandoc/test/command/4805-beamer-columns-alignment.md
John MacFarlane 7e7735bb6b Use \linewidth instead of \columnwidth or \textwidth...
for resizing figures, table cells, etc. in LaTeX.  `\linewidth`,
unlike the others, is sensitive to indented environments like
lists.

Closes #9775.
2024-05-31 15:03:06 -06:00

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}
```