aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorandrebauer <bauerand@informatik.uni-marburg.de>2020-05-03 02:08:16 +0200
committerGitHub <noreply@github.com>2020-05-02 17:08:16 -0700
commit97fe2ea16cca643e4f9d3a77e39ad8c3a3ff01d5 (patch)
tree5cd764a2f6a6810c05147f60efff2aacb9de7e16 /test
parent0fafe9dd32d5a0266d74ac78b1818050bc69a4bd (diff)
downloadpandoc-97fe2ea16cca643e4f9d3a77e39ad8c3a3ff01d5.tar.gz
LaTeX Writer: Add support for customizable alignment of columns in beamer (#6331)
Add support for customizable alignment of columns in beamer. Closes #4805, closes #4150.
Diffstat (limited to 'test')
-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}
+```