I'm looking for custom positions of author names, affiliations and emails in LaTeX article. I want to have email immediately below the affiliations rather than in the footnote like this.
My title
Author A 1,∗ , Author B 1,† , Author C 1,‡ , Author D 2,§ , and Author E 2,¶
1 Department of Computer Science, L A TEX University
2 Department of Mechanical Engineering, L A TEX University
∗ Corresponding Author: A.A@university.edu
† B.B@university.edu
‡ C.C@university.edu
§ D.D@university.edu
¶ E.E@university.edu
Any help in this regard will be highly appreciated. Thanks
\documentclass{article}
\usepackage{authblk}
\usepackage{blindtext}
\begin{document}
\date{}
\title{My title}
\author[1]{Author A\thanks{Corresponding Author: A.A@university.edu}}
\author[1]{Author B\thanks{B.B@university.edu}}
\author[1]{Author C\thanks{C.C@university.edu}}
\author[2]{Author D\thanks{D.D@university.edu}}
\author[2]{Author E\thanks{E.E@university.edu}}
\affil[1]{Department of Computer Science, \LaTeX\ University}
\affil[2]{Department of Mechanical Engineering, \LaTeX\ University}
\maketitle
\begin{abstract}
\blindtext[2]
\end{abstract}
\section{Intro}
\blindtext[10]
\end{document}
