In the following LaTeX Beamer MWE, why is the spacing of the itemization so bad and why can it be fixed by adding a percentage sign after (... subitems)?
Most importantly: is there a reliable and elegant way to prevent this bad spacing in my presentations?
(I know that percentage signs somehow prevent parsing of line endings, but even starting the subitemization directly after (...subitems) doesn't have the same effect.)
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{itemize}
\item A. (requires three sub-items)
\begin{itemize}
\item A.1
\item A.2
\item A.3
\end{itemize}
\item B
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\end{document}
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{columns}
\begin{column}{0.5\textwidth}
\begin{itemize}
\item A. (requires three sub-items)%
\begin{itemize}
\item A.1
\item A.2
\item A.3
\end{itemize}
\item B
\end{itemize}
\end{column}
\end{columns}
\end{frame}
\end{document}


