I am trying to typeset the authors' names in a paper so that they appear as
Joe Bloggs* and John Smith**
(i.e. typeset with a joining "and" and normal spacing between words). I also need to put a \thanks for each author. The code I am using is
\author{
Joe Bloggs\thanks{blah}\ and\ John Smith\thanks{blah}
}
But this has the downside that there is no space between the footnote symbol on "Bloggs" and "and" so what i get looks like this:

Does anyone know how to get LaTeX to put a space in there?
Minimum working example:
\documentclass{article}
\title{The Title}
\author{Joe Bloggs\thanks{blah}\ and\ John Smith\thanks{blah}}
\begin{document}
\maketitle
\end{document}

\thanks{blah} \ andshould be ok. – Corentin Feb 26 at 15:54