[Tex/LaTex] Simple Author, affiliation and email example fails in RevTex4-1

affiliationfootnotesrevtextitles

I can't get the following simple author / email / affiliation code to function perfectly in a document for Journal of Mathematical Physics (JMP):

\documentclass[aip,jmp,preprint]{revtex4-1}
...
\author{C. A. Brannen}
\email{xxx.yyy@wsu.edu}
\affiliation{Department of Physics, Washington State University,\\
Pullman, Washington   99164-2814}

What I get is this:

enter image description here

An annoying superscript (which is apparently referencing the affiliation which needs and possesses no number). I've reinstalled the latest updated MikTex 2.9 and TexnicCenter and get similar results on the template files, when I reduce them to just one author and one email.

I suspect that it's something about my installation. Anyone have a clue why this happens?

Best Answer

It's an unexpected result. However, you can get the proper result by using a \noaffiliation command between the \author and its \affiliation:

\documentclass[aip,jmp,preprint]{revtex4-1}

\begin{document}

\title{The Title}
\author{C. A. Brannen}
\email{xxx.yyy@wsu.edu}
\noaffiliation
\affiliation{Department of Physics, Washington State University,\\
Pullman, Washington   99164-2814}
\maketitle

\end{document}

enter image description here

Related Question