I have trouble combining two things for a set of slides:
- Adjust item separation globally
- Use default overlays of lists locally (parameter
[<+->])
I use enumitem for 1. but it seems to disturb beamer quite a bit. To begin with, I had to employ some trickery to not have enumtitle overwrite the selected slide style.
With the linked solution in effect, adding [<+->] to an itemize does not have any effect at all. I would expect it to overwrite the global setting, but evidently it does not.
How can I achieve 1. and 2. simultaneously?
Minimal failing example:
\documentclass{beamer}
\usepackage{enumitem}
\setitemize{itemsep=1.5em,%
label=\usebeamerfont*{itemize item}%
\usebeamercolor[fg]{itemize item}%
\usebeamertemplate{itemize item}%
}
\begin{document}
\begin{frame}
\begin{itemize}[<+->]
\item On slide 1
\item On slide 2
\end{itemize}
\end{frame}
\end{document}

enumitemoffers the useful possibility to changeitemseplocally, too, but I guess you can't have everything. – Raphael Oct 14 '11 at 10:17\@listiiin the same way does not seem to have any effect. Is there something special to consider? – Raphael Jul 13 '15 at 13:56\patchcmd{\@listii}{\itemsep\parsep}{\itemsep3\p@}{}{}to have slightly sparser spacing of sub-lists, and that command worked for me. How did you try to patch listii? – Supernormal Oct 30 '15 at 10:36