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}

在此輸入影像描述

相關內容