Hi I have a two columns table with ACM SIG Proceedings template http://www.acm.org/sigs/publications/proceedings-templates
Here is my code for six authors, my problem is I have a 7-th author, I am not sure how to add it nicely, is it possible to squeeze the second rows(maybe smaller font size) to allow 4 authors?
\documentclass[9pt]{sig-alternate}
\begin{document}
\title{Paper title}
\numberofauthors{6}
\author{
% 1st. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
% 2nd. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
% 3rd. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
\and % use '\and' if you need 'another row' of author names
% 4th. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
% 5th. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
% 6th. author
\alignauthor
Author Name\\
\affaddr{This is Author School Name}\\
\email{AuthorEmail@gmail.com}
}
\maketitle
\end{document}


