我正在尝试将作者的两个隶属关系放入sig-alternate
(ACM SIG Proceedings),第二作者。因此,实际上,第二作者应该同时拥有第二和第三隶属关系。但我无法将第三作者字段留空,只保留隶属关系。还有其他方法可以做到这一点吗?
\author{
\alignauthor
First Author\\
\affaddr{Some lab, Some University}\\
\affaddr{New Found Land, NJ, USA}\\
\email{[email protected]}
\alignauthor
Second Author\\
\affaddr{Some lab}\\
\affaddr{Some company}\\
\affaddr{Santa Clara, CA, USA}\\
\email{[email protected]}
\alignauthor
Test author\\
\affaddr{The Th{\o}rv{\"a}ld Group}\\
\affaddr{1 Th{\o}rv{\"a}ld Circle}\\
\affaddr{Hekla, Iceland}\\
\email{[email protected]}
}
答案1
对于两位作者,我会选择\and
而不是\alignauthor
,使用嵌套表格来表示两个隶属关系:
\documentclass{sig-alternate}
\begin{document}
\title{Paper}
\author{%
First Author\\
\affaddr{Some lab, Some University}\\
\affaddr{New Found Land, NJ, USA}\\
\email{[email protected]}
\and
Second Author\\
\begin{tabular}[t]{@{}c@{}}
\affaddr{Some lab}\\
\affaddr{Some company}\\
\affaddr{Santa Clara, CA, USA}\\
\email{[email protected]}
\end{tabular}\nobreak\qquad
\begin{tabular}[t]{@{}c@{}}
\affaddr{The Th{\o}rv\"ald Group}\\
\affaddr{1 Th{\o}rv\"ald Circle}\\
\affaddr{Hekla, Iceland}\\
\email{[email protected]}
\end{tabular}
}
\maketitle
\end{document}