[Tex/LaTex] Adding an email to LaTeX file

titles

Is it possible to add an email just below the authors in this code?

\documentclass[11pt,oneside,a4paper]{article}
\usepackage{hyperref}


\title{Hello}
\author{User1 \and User2}



\begin{document}
\maketitle

\section{Introduction}
A1
\section{Literature Review}
A2

\section{Conclusion}
A2

\end{document} 

Best Answer

Just use \\ to drop down onto the next line.

\documentclass[11pt,oneside,a4paper]{article}
\usepackage{hyperref}

\title{Hello}
\author{User1 \\ email \href{mailto:me@somewhere.com}{me@somewhere.com} 
   \and User2 \\ email \href{mailto:someone@somewhere.com}{someone@somewhere.com} }

\begin{document}
\maketitle
\section{Introduction}
A1
\section{Literature Review}
A2
\section{Conclusion}
A2
\end{document}

email

You may want to adjust the options for the hyperref package to improve the appearance.