在 ACM SIGCHI 模板中,作者列表超出了页边距

在 ACM SIGCHI 模板中,作者列表超出了页边距

由于某种原因,此 ACM SIGCHI 模板中有 4 位作者,导致其超出右边距。点击此处查看更多详细信息和图片

我怀疑问题出在 .cls 上,但我不知道从哪里开始。以下是 .tex 源中的相关行:

\numberofauthors{4}
\author{
  \alignauthor Aaaaa Aaaaaaa\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
  \alignauthor Bbbbbbb Bbbbbb\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
  \alignauthor Cccccc Cccccc\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
  \alignauthor Ddddddd Dddddddd\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
}

\maketitle

答案1

如果模板与您可以从http://www.acm.org/sigs/publications/proceedings-templates然后看看他们的第 18 个问题常问问题(滚动,不要点击)。

答案2

ACM 网站上的这个模板表示每三位作者使用一次\and,最多有 2 行。如果您有超过 6 位作者,然后使用\additionalauthors。例如:

\numberofauthors{8}
\author{
       \alignauthor{First Author\titlenote{Additional Notes about the author},\\
              \affaddr{Institute for Clarity in Documentation}\\
              \affaddr{1932 Wallamaloo Lane}\\
              \affaddr{Wallamaloo, New Zealand}\\
              \email{[email protected]}}
       }
       \alignauthor
       Second Author, \\
              \affaddr{Institute for Clarity in Documentation}\\
              \affaddr{P.O. Box 1212}\\
              \affaddr{Dublin, Ohio 43017-6221}\\
              \email{[email protected]}
       % 3rd. author
       \alignauthor Third Author\\
              \affaddr{The Th{\o}rv{\"a}ld Group}\\
              \affaddr{1 Th{\o}rv{\"a}ld Circle}\\
              \affaddr{Hekla, Iceland}\\
              \email{[email protected]}
\and
       \alignauthor Fourth Author\\
              \affaddr{Brookhaven Laboratories}\\
              \affaddr{Brookhaven National Lab}\\
              \affaddr{P.O. Box 5000}\\
              \email{[email protected]}
       \alignauthor Fifth Author\\
              \affaddr{NASA Ames Research Center}\\
              \affaddr{Moffett Field}\\
              \affaddr{California 94035}\\
              \email{[email protected]}
       \alignauthor Sixth Author\\
              \affaddr{Palmer Research Laboratories}\\
              \affaddr{8600 Datapoint Drive}\\
              \affaddr{San Antonio, Texas 78229}\\
              \email{[email protected]}
       }
\additionalauthors{Additional authors: Seventh Author (The Th{\o}rv{\"a}ld Group,
email: {\texttt{[email protected]}}), and Eighth Author
(The Kumquat Consortium, email: {\texttt{[email protected]}}).}

模板编译后的样子如下

答案3

该课程似乎明确规定最多有 3 名作者。如果超过 3 名作者,似乎需要您执行以下操作:

\numberofauthors{5}
\author{
  \alignauthor Author 1\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
  \alignauthor Author 2\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}
  \alignauthor Author 3\\
    \affaddr{Affiliation}\\
    \affaddr{Affiliation}\\
    \email{[email protected]}}
\additionalauthors{Author 4, Author 5}

在最后的参考文献之前添加了一个“其他作者”部分......

相关内容