Autoría separada por afiliación

Autoría separada por afiliación

Necesito que mi artículo se vea exactamente así, pero no estoy seguro de la sintaxis para hacerlo. Ciertamente no es un formato estándar. ¿Alguna idea?

ingrese la descripción de la imagen aquí

Respuesta1

Con authblk:

\documentclass{article}
\usepackage{newtxtext}               %% for roman text
\usepackage[blocks]{authblk}         % The option is for block layout
\renewcommand\Authfont{\footnotesize}
\renewcommand\Affilfont{\footnotesize}
\setlength{\affilsep}{0.1em}

\title{Title}

\author{First author\thanks{Job here}\,\,}
\author{Second author\thanks{Job there} }
\affil{Department 1 \\
School 1 \\
}

\author{Third author\thanks{Job elsehere} }
\affil{Department 2 \\
School 2 \\
}

\author{and\\[1em]Fourth author\thanks{Job here} }
\affil{Department 3 \\
School 3 \\
}

\date{}

%% needed as you want numbers, otherwise \maketitle uses symbols
\makeatletter
\def\@fnsymbol#1{\ensuremath{\ifcase#1\or 1\or 2\or 3\or
   4\or 5\or 6\or 7\or 8
   \or 9 \else 10\fi}}
\makeatother


\begin{document}
\maketitle

\end{document}

ingrese la descripción de la imagen aquí

información relacionada