[Tex/LaTex] Multiple authors in one row with refmark, multiple affiliations in separated columns in another row

authblkformattingtitles

I wonder how we can list author names in the following format in LaTeX.

I have 5 authors with 3 different affiliations. I am trying to list all author names with refmark in one row, and 3 affiliations with refmark in another row, but each in one separated column. It should look like this:

        author1{1} author2{2} author3{1} author4{2} author5{3}
           {1}department      {2}department        {3}department
              school              school              school
              email                email              email

I did saw some papers that have the above format, but cannot search for any guideline. IEEE guideline suggests another way to list authors, but sadly it does not look that neat

        author1{1} author2{2} author3{1} author4{2} author5{3}
                        {1} department, school
                              email
                        {2} department, school
                              email
                        {3} department, school
                              email

Best Answer

Since this seems to be a request for a one-time use, I would opt for a manual design of the title; something along these lines:

\documentclass{article}
\usepackage{array}
\usepackage{url}

\newcommand\Mark[1]{\textsuperscript#1}

\begin{document}

\begingroup
\centering
{\LARGE The Title \\[1.5em]
\large First Author\Mark{1}, Second Author\Mark{2}, Third Author\Mark{1}, Fourth Author\Mark{2} and Fifth Author\Mark{3}}\\[1em]
\begin{tabular}{*{3}{>{\centering}p{.25\textwidth}}}
\Mark{1}Department1 & \Mark{2}Department2 & \Mark{3}Department3 \tabularnewline
School1 & School2 & School3 \tabularnewline
\url{email1} & \url{email2} & \url{email3}
\end{tabular}\par
\endgroup

\end{document}

enter image description here