This minimal example
\documentclass{beamer}
\begin{document}
\begin{frame}
\begin{itemize}[<+->]
\item item 1
\item item 2
\item item 3
\end{itemize}
\end{frame}
\end{document}
yields a presentation with three bullet points that are revealed one by one. I would like to globally increase the vertical spacing between the items. The following ideas do not provide a satisfactory solution.
\addtolength{\itemsep}{10pt}works, but the command has to be added to eachitemizeenvironment individually.\usepackage{enumitem}makes the bullet points invisible.- Redefining the
itemizeenvironment oritemcommand as well as defining a new list environment as suggested here breaks the beamer overlay specifications ([<...>]) for the respective environment or command.
Is there anything else I could try? Is it possible to pass through overlay specifications when redefining an environment?
