suppose I have several authors that I have declared via the \author command in latex-beamer, e.g.
\author{Einstein \and Podolsky \and Rosen}
I was wondering whether there is a way to access the individual names, i.e. something like
authors[0] == "Einstein"
authors[1] == "Podolsky"
authors[2] == "Rosen"
I would like to display all names with a corresponding QR-Code for contact information at the bottom of a conference poster. Sure, I could just retype the names again but I guess that is a rather inelegant way.
authblk? ctan.org/pkg/authblk (Just throwing out an idea, don't know if it would work or not.) – Willie Wong Jun 11 '12 at 15:07