Beamer の複数列の垂直配置の問題

Beamer の複数列の垂直配置の問題

次のスライドがあります:

\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}

関連情報