Afficher plusieurs auteurs et leurs affiliations sous LaTeX

Que ce soit pour un rapport, une présentation Beamer ou un article scientifique, il n’est pas rare d’avoir à préciser plusieurs auteurs dans un document $latex \LaTeX$. En pareille circonstance, il est de bon aloi de préciser aussi les affiliations de chacun d’entre eux.

Dans un document papier

Le plus simple est d’utiliser le package authblk. La structure ressemble donc à ceci :

\usepackage{authblk}
 
\title{My wonderful paper}
\date{}
\author[,1]{Mark Knopfler\thanks{Corresponding author: \texttt{haggis\_power@wanadoo.fr}}}
\author[2]{Jimmy Page}
\author[2]{Ian Gillan}
\author[,3]{David Gilmour\thanks{Now at: elsewhere}}
 
\affil[1]{University of Glasgow, Scotland, United Kingdom}
\affil[2]{Imperial College London, London, England, United Kingdom}
\affil[3]{University of Cambridge, England, United Kingdom}
 
\begin{document}
	\maketitle
\end{document}

On remarque l’utilisation de la commande \thanks, qui fonctionne comme un footnote alternatif (selon le style fnsymbol pour être précis).

Dans une présentation beamer

Beamer dispose nativement d’une fonction permettant d’inclure plusieurs auteurs avec des affiliations distinctes :

\title{My wonderful lecture}
\date{}
\author{Mark Knopfler\inst{1} \and Jimmy Page\inst{2} \and Ian Gillan\inst{2} \and David Gilmour\inst{3}}
 
\institute{
	\inst{1} University of Glasgow, Scotland, United Kingdom
	\and
	\inst{2} Imperial College London, London, England, United Kingdom
	\and
	\inst{3} University of Cambridge, England, United Kingdom
}
 
\begin{document}
	\maketitle
\end{document}

Par défaut, la commande \thanks (voir plus haut) utilise aussi le style arabe pour la numérotation, il est donc impossible de la distinguer de la numérotation des affiliations. Pour ajouter des informations complémentaires, il faut donc préalablement modifier le compteur footnote :

\renewcommand{\thefootnote}{\fnsymbol{footnote}}
 
\title{My wonderful lecture}
\date{}
\author{Mark Knopfler\inst{1} \and Jimmy Page\inst{2,}\thanks{Speaker} \and Ian Gillan\inst{2} \and David Gilmour\inst{3}}
 
\institute{
	\inst{1} University of Glasgow, Scotland, United Kingdom
	\and
	\inst{2} Imperial College London, London, England, United Kingdom
	\and
	\inst{3} University of Cambridge, England, United Kingdom
}
 
\begin{document}
	\maketitle
\end{document}

Liste des auteurs et de leurs affiliations dans Beamer, avec informations complémentaires