75

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} 
0

3 Answers 3

89

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

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

\title{Hello}
\author{User1 \\ email \href{mailto:[email protected]}{[email protected]} 
   \and User2 \\ email \href{mailto:[email protected]}{[email protected]} }

\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.

1
  • @user3741635 --- the article document class has a twocolumn option. Note that you will need some text to see the effect of this; the body of your example will fit into the first column. Commented Jun 17, 2014 at 11:28
11

Yes, it can be included in the \author{} tag. Like so:

\author{User1 \\ [email protected] \and User2 \\ [email protected]}

However, note that this is not the canonical way to do it. Usually the second line in the author tag is for the author's address and affiliation which may include the email address. Sometimes, the email address is rather put into a footnote (e.g. with the \thanks{} tag inside the \author{} tag). But it can be (and is occasionally) done like this, only putting the email address without affiliation under the authors names. You might want to have the email address in monospace font which can be done by also applying the \texttt{} tag like so.

\author{User1 \\ \texttt{[email protected]} \and User2 \\ \texttt{[email protected]}}
7

Intead of \documentclass{article}, perhaps you could prefer \documentclass{amsart}.
With the class amsart you are able to include several nice commands for author information, such as emails, which will be properly ordered in the document.
You can write the following commands:

   \author{User Guy}  
   \email{[email protected]}  

   \author{Another Guy}
   \email{[email protected]}
3
  • 2
    Didn't work for me. Email doesn't show up. Commented Oct 7, 2019 at 17:52
  • 1
    Look at the end of the article. Is it there?
    – pablo1977
    Commented Oct 7, 2019 at 19:17
  • can \email{} also create circle around the email?
    – alper
    Commented Mar 13, 2021 at 18:04

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .