aboutsummaryrefslogtreecommitdiff
path: root/test/command/4805-beamer-columns-alignment.md
blob: d890730a83f6e0ecd919f1b1b8d04526ce1c071e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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}
```