I'm working on a paper with a large list of authors, hence I've switched to numeric author indices as illustrated at http://www.latex-community.org/viewtopic.php?f=5&t=1517&view=next . Now I want to make sure that multiple affiliations for a single author are properly set off by commas, which should most obviously be handled by \usepackage[multiple]{footmisc}. Unfortunately, as shown below, this seems (?) to fail in the \author context (i.e., although other footnotes in the test document look OK, the ones in the author list are squished together)? (I was originally using \thanks for the affiliations but tried switching in this example to \footnote -- I don't have any footnotes in the paper so I don't care about using a separate counter ...)
(In my real example I've also got affiliations shared by multiple authors as in Using \author and \thanks for authors with common affiliations ; I generate the appropriate \footnotemark references using some R code ...)
\documentclass{article}
\usepackage{scrtime}
\usepackage[multiple]{footmisc}
\makeatletter
\renewcommand*\@fnsymbol[1]{\the#1} %% change footnotes to numeric superscripts
\makeatother
\author{Joe Schmo\footnote{first address}\footnote{second address}
\and Fred Blow \footnote{third address}\footnote{fourth address}}
\title{Test}
\date{\today @ \thistime}
\textheight=8cm
\begin{document}
\maketitle
Also try some footnotes: this\footnote{yes} and that\footnote{no}\footnote{maybe}
\end{document}
And the (disappointing) results (cropped with pdfcrop: a bit fuzzy, but I think it's clear even from this that the footnotes within the text are properly delimited while ones from within \author{} are not ...):
[first question I've posted on tex.stackexchange.com : feel free to suggest improvements to the question / critical information I left out ...]


hyperrefpackage, which I'm not using here ... edit: doesn't seem to help in this case (I think the problem may be with something\author{}does ??) – Ben Bolker Oct 06 '12 at 04:20\textheight=8cm(or some other size) to your preamble to make everything more compact. – doncherry Oct 06 '12 at 04:44