I need in the authors affiliations to get them at the bottom of the page as footnotes and the authors indexed by the letters a and b.
I used the following code
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage{authblk}
\title{The Title}
\author{Author XXX\textsuperscript{a}\thanks{\noindent\textsuperscript{a}Address of the author XXX \\
Email...}\,
Author YYY \textsuperscript{b}{\footnote{\textsuperscript{b}
Address of the author YYY}} }
\date{}
\begin{document}
\maketitle
\end{document}
I need to suppress the symbol † both after the author name and the address of the second author. I need also to get for the first author name a*† and at the footnote * will contain the address and † the E-mail of the first author.
Thanks.