How to Write Address and Email Under Authors’ Name in APS Journal

journal

I am using sharelatex aps journal template to write a paper.

 \documentclass[%
 reprint,
%superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose, 
%preprint,
%showpacs,preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
 amsmath,amssymb,
 aps,
%pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-1}

\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
%\usepackage{hyperref}% add hypertext capabilities
%\usepackage[mathlines]{lineno}% Enable numbering of text and display math
%\linenumbers\relax % Commence numbering lines

%\usepackage[showframe,%Uncomment any one of the following lines to test 
%%scale=0.7, marginratio={1:1, 2:3}, ignoreall,% default settings
%%text={7in,10in},centering,
%%margin=1.5in,
%%total={6.5in,8.75in}, top=1.2in, left=0.9in, includefoot,
%%height=10in,a5paper,hmargin={3cm,0.8in},
%]{geometry}

\begin{document}

\preprint{APS/123-QED}

\title{Exact Solutions of Einstein's Field Equations in TOV Formulations}% Force line breaks with \\


\author{U.A. X*}

\author{Y Hauqe}%

\affiliation{Plasma Astrophysics Laboratory}%
\affiliation{Department of Mathematics and Natural Sciences, Z University}%

\affiliation{66 Mohakhali, Z-1212, D}%

\affiliation{Email:mofiz@bracu.ac.bd}%

\maketitle

\end{document} 

I wish to erase that "and" before email address. how can I do it without using affiliation multiple times?

Best Answer

Simply write

\affiliation{Plasma Astrophysics Laboratory\\%
             Department of Mathematics and Natural Sciences, Z University\\%
             66 Mohakhali, Z-1212, D\\%
             Email:mofiz@bracu.ac.bd}%

MWE

\documentclass[%
 reprint,
%superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose,
%preprint,
%showpacs,preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
 amsmath,amssymb,
 aps,
%pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-1}

\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
%\usepackage{hyperref}% add hypertext capabilities
%\usepackage[mathlines]{lineno}% Enable numbering of text and display math
%\linenumbers\relax % Commence numbering lines

%\usepackage[showframe,%Uncomment any one of the following lines to test
%%scale=0.7, marginratio={1:1, 2:3}, ignoreall,% default settings
%%text={7in,10in},centering,
%%margin=1.5in,
%%total={6.5in,8.75in}, top=1.2in, left=0.9in, includefoot,
%%height=10in,a5paper,hmargin={3cm,0.8in},
%]{geometry}

\begin{document}

\preprint{APS/123-QED}

\title{Exact Solutions of Einstein's Field Equations in TOV Formulations}% Force line breaks with \\


\author{U.A. X*}

\author{Y Hauqe}%

\affiliation{Plasma Astrophysics Laboratory\\%
             Department of Mathematics and Natural Sciences, Z University\\%
             66 Mohakhali, Z-1212, D\\%
             Email:mofiz@bracu.ac.bd}%

\maketitle

\end{document} 

Output:

enter image description here