Getrennte Urheberschaft nach Zugehörigkeit

Getrennte Urheberschaft nach Zugehörigkeit

Ich muss dafür sorgen, dass mein Dokument genau so aussieht, bin mir aber nicht sicher, welche Syntax dafür nötig ist. Es ist definitiv kein Standardformat. Irgendwelche Ideen?

Bildbeschreibung hier eingeben

Antwort1

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

Bildbeschreibung hier eingeben

verwandte Informationen