APS フォーム - すべての著者のメール ID を含める方法

APS フォーム - すべての著者のメール ID を含める方法

すべての著者のメール ID を含める方法。ただし、最初の著者が主な連絡先です。著者は両方とも同じ学部、同じ大学に所属しています。また、別の論文で、2 番目の著者を主な連絡先にする方法を知りたいです。主な連絡先は と表示されます*。次のコードでは、メール 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}

ここに画像の説明を入力してください

関連情報