I have the following MWE and I want to top align the two columns, I do this:
\documentclass{beamer}
\usepackage{multicol}
\usepackage{enumitem}
\setitemize{label=\usebeamerfont*{itemize item}%
\usebeamercolor[fg]{itemize item}
\usebeamertemplate{itemize item}}
\begin{document}
\begin{frame}
\frametitle{Some title}
\begin{columns}
\begin{column}[T]{.475\textwidth}
\begin{itemize}[leftmargin=2.25em]
\itemsep 1.25em
\item first item bla bla bla bla some more text bla bla and more and more text here
\item second item bla bla bla bla some more text bla bla
\item third item bla bla bla bla some more text bla
\end{itemize}
\end{column}%
\hfill%
\begin{column}[T]{.5\textwidth}
\includegraphics[width=\linewidth, height=5cm]{example-image}
\end{column}%
\end{columns}
\bigskip
\begin{itemize}[leftmargin=*]
\item And yet another item here with some long long long long long long text and some more text bla bla bla
\end{itemize}
\end{frame}
\end{document}
Which gets me this:
I do not see the top alignment happening at all... what am I doing wrong? Thanks!



itemizeintroduces some vertical space before the first line. Replaceitemizeor the image with a regular text and you'll see how the vertical alignment is correct. – Ignasi Jan 31 '17 at 08:27beamer'scolumns, you don't needmulticolpackage. Andenumitemis not always compatible withbeamer. – Ignasi Jan 31 '17 at 09:25