If I'm using itemize inside a beamer column, the items are not the same way top-aligned as the items without a column. I want the symbols of both items in the images to be at the very same place.
\documentclass[t]{beamer}
\usepackage{blindtext}
\begin{document}
\begin{frame}{Heading 1}
\begin{itemize}
\item top aligned item nr. 1
\end{itemize}
\end{frame}
\begin{frame}{Heading 2}
\begin{columns}[t]
\column[t]{.5\textwidth}
\begin{itemize}
\item item nr. 2, which is lower than item nr. 1
\end{itemize}
\column[t]{.5\textwidth}
the other column
\end{columns}
\end{frame}
\end{document}


\parskip, but before itemize are\topsep + \parskip + \partopset. This cause observed difference in aligning of both kind of text on top of columns. A simple hack is to put negative vertical skip before itemize (which compensate this difference). – Zarko Apr 15 '16 at 14:35what negative skip would I have to add to compensate this spacing?
– TyrenLament Apr 15 '16 at 20:18