I'm using the beamer presentation package and trying to combine the examples from this post How to iterate over a comma separated list? with the beamer package.
In modifying the top example, chaning
\documentclass{beamer}
\usepackage{xparse}
\ExplSyntaxOn
\NewDocumentCommand{\makeenumerate}{ m }
{
\begin{frame}
\clist_map_inline:nn { #1 } { \frame \fbox{##1} }
\end{frame}
}
\ExplSyntaxOff
\begin{document}
\makeenumerate{a, b ,c, d, ,e }
\end{document}
I want to have a b c d and e all in separate beamer frames. I'm not sure how to get this to work, and which method of iterating over a comma separated list is best to use i've tried them all and none work.
