[Tex/LaTex] How to change authors font size without changing font face

acmfontsizetemplates

I am using ACM PROC format and want to change the font size of emails in the author list. When I use \small, the font-face also changes. Is it possible to only change the font size?

Here is my code:

\documentclass{acm_proc_article-sp}

\title{Title}

\author{Name$^{\dag}$, Name$^{\dag}$, Name$^{\dag\ddag}$...\\
\affaddr{$\dag$ University, Address}\\
\affaddr{$\ddag$ University, Address} \\
\affaddr{\small email, email,email}
}

\begin{document}

\maketitle

\end{document}

Here is the link to the template: http://www.acm.org/sigs/publications/proceedings-templates#aL2

Best Answer

The most simple solution seems to be to just add the \sffamily switch to the field.

Chances are high though, that the journal editors will ust revert the changes.

\documentclass{acm_proc_article-sp}

\title{Title}

\author{Name$^{\dag}$, Name$^{\dag}$, Name$^{\dag\ddag}$...\\
\affaddr{$\dag$ University, Address}\\
\affaddr{$\ddag$ University, Address} \\
\affaddr{\scriptsize\sffamily email, email,email}
}

\begin{document}

\maketitle

\end{document}

emabTitle.