overleaf 中有多个作者和电子邮件以及位置吗?

overleaf 中有多个作者和电子邮件以及位置吗?

我试图在论文中添加多个作者姓名,但没有得到满意的结果。我使用 overleaf,我的代码如下所示:

\documentclass{article}
\title{Foo and bar}
\author{first\_person\SUP{1}, second\_person\SUP{2}, third\_person\SUP{3}\\[\bigskipamount]
\{\SUP{1}mail, \SUP{2}mail, \SUP{3}mail\}@gmail.com}
\date{institution name\\location}

\begin{document}
\maketitle

\end{document}

但它不起作用,结果是这样的:

在此处输入图片描述

我正在寻找的是:

在此处输入图片描述

另外 \date 在 overleaf 中不起作用,我如何在 overleaf 中写出如上图所示的作者姓名和位置?

更新 :

完整代码

%\title{Deep Learning}
%% 2012/12/27
%% by the Captain 

% OPTIONAL PACKAGES
%\documentclass[journal]{IEEEtran}
\documentclass[12pt,journal,compsoc]{IEEEtran}
%\usepackage{ifpdf}
\ifCLASSINFOpdf
  \usepackage[pdftex]{graphicx}
  % \graphicspath{{../pdf/}{../jpeg/}}
  % \DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\else
  \usepackage[dvips]{graphicx}
  % \graphicspath{{../eps/}}
  % \DeclareGraphicsExtensions{.eps}
\fi
%\usepackage[cmex10]{amsmath}
%\usepackage{algorithmic}
\usepackage{amsfonts}
%\usepackage{subfig}
\usepackage{amsmath}


\usepackage{caption}
\usepackage{authblk}
\usepackage{times}
\usepackage{fancyhdr,graphicx,amsmath,amssymb}
\usepackage[ruled,vlined,linesnumbered]{algorithm2e}
\include{pythonlisting}
\usepackage{subcaption}
\usepackage{multirow}
 \usepackage[table,xcdraw]{xcolor}
% \usepackage{graphicx}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{listings}
%\ifCLASSOPTIONcompsoc
%  \usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
%\else
%  \usepackage[caption=false,font=footnotesize]{subfig}
%\fi
%\usepackage{fixltx2e}
%\usepackage{stfloats}
% \usepackage{dblfloatfix}
%\ifCLASSOPTIONcaptionsoff
%  \usepackage[nomarkers]{endfloat}
% \let\MYoriglatexcaption\caption
% \renewcommand{\caption}[2][\relax]{\MYoriglatexcaption[#2]{#2}}
%\fi
\usepackage[hyphens]{url}


\usepackage[english]{babel}

\usepackage{biblatex}
\addbibresource{ref.bib}


\begin{document}
\let\SUP\textsuperscript

\title{Preparation of Camera-Ready Contributions to SCITEPRESS Proceedings}
\author{first_name\SUP{1}, second_name\SUP{2}, third_name\SUP{3}

\{\SUP{1}first, \SUP{2}second, \SUP{3}third\}@gmail.com}
\date{institution name\\location}





\IEEEtitleabstractindextext{%
\begin{abstract}
The abstract should summarize the contents of the paper and should contain at least 70 and at most 200 words. The text must be set to 9-point font size.
\end{abstract}}
\maketitle
\IEEEpeerreviewmaketitle
\IEEEdisplaynontitleabstractindextext
\end{document}

谢谢 !

相关内容