
As seen in the picture, the sub-sub-items within the column are vertically spaced significantly wider than their counterparts outside any column. As I replaced the bullet points with depth numbers for better recognition, it can be clearly seen that they are on the same level. Here is the code.
\documentclass{beamer}
\setbeamertemplate{itemize item}{(1)}
\setbeamertemplate{itemize subitem}{(2)}
\setbeamertemplate{itemize subsubitem}{(3)}
\begin{document}
\begin{frame}
\begin{itemize}
\item a top item
\begin{itemize}
\begin{columns}
\begin{column}{.5\linewidth}
\item a sub item
\begin{itemize}
\item deep subbed item a
\item deep subbed item b
\item deep subbed item c
\end{itemize}
\item another sub item
\end{column}
\begin{column}{.5\linewidth}
\item another column
\end{column}
\end{columns}
\end{itemize}
\end{itemize}
\begin{itemize}
\item items outside columns
\begin{itemize}
\item sub items outside columns
\begin{itemize}
\item deep subbed item d
\item deep subbed item e
\item deep subbed item f
\end{itemize}
\end{itemize}
\end{itemize}
\end{frame}
\end{document}
What causes the spacing to be modified in the column environment and how can it be corrected?



itemizeinside acolumnwhich is inside anotheritemize– karlkoeller Oct 17 '13 at 18:49