[Tex/LaTex] Email field in beamer class

beamer

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?

Best Answer

use

\author{\texorpdfstring{Author\newline\url{email@email.com}}{Author}}
Related Question