![Beamer の複数列の垂直配置の問題](https://rvso.com/image/390895/Beamer%20%E3%81%AE%E8%A4%87%E6%95%B0%E5%88%97%E3%81%AE%E5%9E%82%E7%9B%B4%E9%85%8D%E7%BD%AE%E3%81%AE%E5%95%8F%E9%A1%8C.png)
次のスライドがあります:
\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}
2 列目では、2 つの \items 間の垂直間隔がすべて間違っています。この問題の原因は何でしょうか。
答え1
\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}