![Problem mit der vertikalen Ausrichtung mehrerer Beamer-Spalten](https://rvso.com/image/390895/Problem%20mit%20der%20vertikalen%20Ausrichtung%20mehrerer%20Beamer-Spalten.png)
Ich habe folgende Folie:
\documentclass{beamer}
\usepackage{multicol}
\begin{document}
\begin{frame}{Why does this happen?}
\begin{multicols}{2}
\begin{center}
\begin{enumerate}
\item Text
\item More text
\end{enumerate}
\end{center}
\columnbreak
\begin{center}
\begin{enumerate}
\item Text
\item More text
\end{enumerate}
\end{center}
\end{multicols}
\end{frame}
\end{document}
In der zweiten Spalte ist der vertikale Abstand zwischen den beiden \items völlig falsch. Was könnte die Ursache für dieses Problem sein?
Antwort1
\documentclass{beamer}
\begin{document}
\begin{frame}[t]
\frametitle{Because you were not using the built--in \texttt{columns}}
\begin{columns}[t]
\begin{column}{0.49\textwidth}
\begin{enumerate}
\item Text
\item More text
\end{enumerate}
\end{column}
\begin{column}{0.49\textwidth}
\begin{enumerate}
\item Text
\item More text
\end{enumerate}
\end{column}
\end{columns}
\end{frame}
\end{document}