To provide overlay specifications via a macro I have to use \expandafter\item\foo text, where \foo is something like <+->. When I do this often the \expandafter becomes bothersome. Is there a way to get rid of the \expandafter?
What I guess would work is to renew the overlay specification commands and add an \expandafter? Will this break anything?
Is there an easier way to ensure correct handling of the overlay macro, e.g. a beamer parameter or something?
Edit1: It seems when I instead use \item<\foo> text and let \foo be something like +- things work. I will use this and see if that answers the question.
Edit2: Below I added a MWE
\documentclass{beamer}
\begin{document}
\begin{frame}
\def\foo{<+>}
\def\bar{<+->}
\begin{itemize}
\expandafter\item\foo First
\expandafter\item\bar Second
\end{itemize}
\end{frame}
\end{document}
\def\xitem{\expandafter\item}?? – Steven B. Segletes Apr 15 '15 at 11:51