如何在 APS 期刊的作者姓名下写地址和电子邮件?

如何在 APS 期刊的作者姓名下写地址和电子邮件?

我正在使用 sharelatex aps 期刊模板写论文。

 \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:[email protected]}%

\maketitle

\end{document} 

我希望删除电子邮件地址前的“and”。如何才能做到这一点而不多次使用隶属关系?

答案1

简单写

\affiliation{Plasma Astrophysics Laboratory\\%
             Department of Mathematics and Natural Sciences, Z University\\%
             66 Mohakhali, Z-1212, D\\%
             Email:[email protected]}%

平均能量损失

\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:[email protected]}%

\maketitle

\end{document} 

输出:

在此处输入图片描述

相关内容