APS 格式 - 如何包含所有作者的电子邮件 ID

APS 格式 - 如何包含所有作者的电子邮件 ID

如何包含所有作者的电子邮件 ID,但第一作者是主要联系人。两位作者都属于同一部门和同一所大学。另外,我想知道另一篇论文,如何将第二作者设为主要联系人。因此,主要联系人显示为*。使用以下代码,我无法获取电子邮件 ID。正确的格式是什么?谢谢

  \documentclass[aps,prl,reprint]{revtex4-1}
\usepackage{blindtext}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{bm}        % for math
\usepackage{verbatim}   % for math
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{bm}
\usepackage{amssymb}
\usepackage{adjustbox}
\newcommand{\revtex}{REV\TeX\ }
\newcommand{\classoption}[1]{\texttt{#1}}
\newcommand{\macro}[1]{\texttt{\textbackslash#1}}
\newcommand{\m}[1]{\macro{#1}}
\newcommand{\env}[1]{\texttt{#1}}
\setlength{\textheight}{9.5in}
\usepackage{adjustbox}
\DeclareMathOperator{\RE}{Re}
\DeclareMathOperator{\IM}{Im}
\usepackage{stfloats}
\newenvironment{psmallmatrix}
  {\left[\begin{smallmatrix}}
  {\end{smallmatrix}\right]}
\usepackage{amsmath,amscd}
\usepackage {extarrows}
\usepackage{algorithm,algpseudocode}
\begin{document}

\title{Tips for delicious cooking for graduate student life}%

\author{Stressed student 1}%,
 \author{Stressed student 1}
\email[[email protected]]{[email protected]}
\affiliation{Department}
\date{June xx, 2017}%
\begin{abstract}
This document shares some tips for cost effective living and budget friendly delicious healthy food.
\end{abstract}
\maketitle
%\tableofcontents
\section{I. Introduction}

\end{document}

图片

答案1

只需\email在每个作者后面放置适当的地址即可(处理不同隶属关系的方式相同)。

\documentclass[aps,prl,reprint]{revtex4-1}
\usepackage{lipsum}
\begin{document}
\title{Title}

\author{Foo}
\email{[email protected]}

\author{Bar}
\email{[email protected]}
\affiliation{Department}

\date{June 29, 2017}

\begin{abstract}
Abstract
\end{abstract}
\maketitle
\lipsum
\end{document}

在此处输入图片描述

答案2

这是你想要的?

\documentclass{article}
\usepackage{authblk}

\begin{document}

\title{Tips for delicious cooking for graduate student life}
\author[*]{Stressed student 1}
\author[ ]{Stressed student 2}

%   \author[1]{Author C}
%   \author[2]{Author D}
%   \author[2]{Author E}

\affil[*]{Department of Stress, Strs University}

\affil[*]{\textit [email protected]}
\affil[ ]{\textit [email protected]}
\date{June xx, 2017}


\maketitle
    \begin{abstract}
    This document shares some tips for cost effective living and budget friendly delicious healthy food.
\end{abstract}
\end{document}

在此处输入图片描述

相关内容