Autoria Separada por Afiliação

Autoria Separada por Afiliação

Preciso fazer com que meu artigo fique exatamente assim, mas não tenho certeza da sintaxe para fazer isso. Certamente não é um formato padrão. Alguma ideia?

insira a descrição da imagem aqui

Responder1

Com 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}

insira a descrição da imagem aqui

informação relacionada