aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/4805-beamer-columns-alignment.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/test/command/4805-beamer-columns-alignment.md b/test/command/4805-beamer-columns-alignment.md
new file mode 100644
index 000000000..bd1be0f20
--- /dev/null
+++ b/test/command/4805-beamer-columns-alignment.md
@@ -0,0 +1,40 @@
+```
+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\textwidth}
+\end{column}
+
+\begin{column}[b]{0.48\textwidth}
+\end{column}
+\end{columns}
+
+\begin{columns}[b,onlytextwidth]
+\begin{column}[T]{0.48\textwidth}
+\end{column}
+
+\begin{column}[t]{0.48\textwidth}
+\end{column}
+\end{columns}
+
+\begin{columns}[T,totalwidth=7em]
+\end{columns}
+\end{frame}
+```