I am new to the beamer class and I am struggling to include my email info in a presentation.
I tried \email but there is no such field. I tried the below but the theme over-rode the \small making the email appear too big.
\documentclass[a4paper,12pt,english]{beamer}
\usetheme{PaloAlto}
\usecolortheme[named=black]{structure}
\usefonttheme{professionalfonts}
\title{Some Great Long Title}
\author{Author\\{\small email@email.com}}
\institute{ABC}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\end{document}
Is there any way of inserting a row of text between author and institute with no formating?

\smallaltogether to get it in the same size as the title. Alternatively you can replace it with\tinyto get something smaller than the title. If this is too small, you can use\scriptsizeor\footnotesize. – Roelof Spijker Jan 16 '12 at 12:46