What is the correct way to put some text after the list of the authors? I use authblk as it is the first thing I've found online; I am not sure this is the best way to go.
I would like to have the following (1 and 2 are superscripts):
Could you imagine?
H. Potter1 and W. Smith2 for the Siemens collaboration
1Rowling, England
2Actor, USA
So in the "code" I write
Code: Select all
\documentclass[a4paper,twocolumn]{article}
\usepackage{authblk}
\title{Could you imagine?}
\author[1]{H. Potter}
\author[2]{W. Smith}
\affil[1]{Rowling, England}
\affil[2]{Actor, USA}
\begin{document}
\maketitle
\end{document}
Thanks.