Friends, I'm trying to add a photo along with each author name in a beamer title page. Please consider the following code:
\documentclass[10pt]{beamer}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\newcommand{\theauthor}[1]{%
\includegraphics[scale=.3]{#1}
}%
\title{A dinner with us}
\author[Alice and Bob]{\theauthor{alice} and \theauthor{bob}}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
which gives me the following output:

I tried to add the name below the photo, but I had no luck. At first, I thought about using a tabular environment, but I could not make it work.
I'll probably get rid of the "and" word and put both author blocks aligned, let's say:

Any suggestion on how could I achieve this? I know this might be a very easy question, but it puzzles me. :-)
