[Tex/LaTex] ACM Proceedings overlapping email

acmhorizontal alignmenttitles

I'm writing a paper for a paper that uses the ACM Conference Proceedings class acm_proc_article-sp.cls. I have five authors, and all of our emails seem to be sufficiently long that they overlap in the authors list. A fairly minimal example of the problem, adapted from the reference example provided with the class file, is

\documentclass{acm_proc_article-sp}

\def\sharedaffiliation{%
\end{tabular}
\begin{tabular}{c}}
%
\begin{document}

\title{ACM Sample Proceedings Paper in LaTeX by authors with long addresses}

\numberofauthors{5}
\author{
% 1st. author
\alignauthor
Ben Trovato\\
       \email{ben.trovato@long.university.edu}
% 2nd. author
\alignauthor
G.K.M. Tobin\\
       \email{some.one@long.university.edu}
\and  % use '\and' if you need 'another row' of author names
% 3rd. author
\alignauthor Lars Th{\o}rv{\"a}ld\\
       \email{larst@affiliation.org}
% 4th. author
\alignauthor Lawrence P. Leipuner\\
       \email{lleipuner@researchlabs.org}
% 5th. author
\alignauthor Sean Fogarty\\
       \email{fogartys@amesres.org}
\and
\sharedaffiliation       
       \affaddr{Institute for Clarity in Documentation}\\
       \affaddr{P.O. Box 1212}\\
       \affaddr{Dublin, Ohio 43017-6221}\\
}
\maketitle

\balancecolumns
\end{document}

Resulting in
snapshot of rendered page, showing overlapping email addresses

Are there any good ways to deal with this? This problem has been described in a previous question, but the answer, changing the number of authors, did not help: \numberofauthors{3} gives the same results as above; while \numberofauthors{2} spaces things out, but the third author runs off the page.

Best Answer

I don't know how much leeway you have when writing an article, but you can set the five authors using your own tabular layout:

enter image description here

\documentclass{acm_proc_article-sp}

\def\sharedaffiliation{%
  \end{tabular}
  \begin{tabular}{c}}

\title{ACM Sample Proceedings Paper in LaTeX by authors with long addresses}

%\numberofauthors{1}
\author{
  \begin{tabular}{c}
    % 1st. author
    Ben Trovato \\
    \email{ben.trovato@long.university.edu}
  \end{tabular}%
  \begin{tabular}{c}
    % 2nd. author
    G.K.M. Tobin \\
    \email{some.one@long.university.edu}
  \end{tabular} \\[10pt]
  \begin{tabular}{c}
    % 3rd. author
    Lars Th{\o}rv{\"a}ld\\
    \email{larst@affiliation.org}
  \end{tabular}
  \begin{tabular}{c}
    % 4th. author
    Lawrence P. Leipuner\\
    \email{lleipuner@researchlabs.org}
  \end{tabular}
  \begin{tabular}{c}
    % 5th. author
    Sean Fogarty\\
    \email{fogartys@amesres.org}
  \end{tabular}
  \and
  \sharedaffiliation
     \affaddr{Institute for Clarity in Documentation} \\
     \affaddr{P.O.\ Box 1212} \\
     \affaddr{Dublin, Ohio 43017-6221}
}

\begin{document}

\maketitle

\end{document}

The \numberofauthors defining is used to subdivide the author blocks into appropriate fixed widths. However, this doesn't work for long (authors or) addresses. The above suggestion overrides this by considering a "single" author that technically spans the entire \textwidth.