ACM Sig-proc 中的共享作者关系

ACM Sig-proc 中的共享作者关系

我有一篇 IEEE 格式的论文,使用\IEEEauthorblockN\IEEEauthorblockA表示共享隶属关系,如下所示。现在我需要将格式更改为 ACM。我如何对 ACM Sig-proc 格式执行相同的操作?

\documentclass[letterpaper]{sig-alternate}
%...
\newcommand{\superscript}[1]{\ensuremath{^{\textrm{#1}}}}
\def\sharedaffiliation{\end{tabular}\newline\begin{tabular}{c}}

\def\wu{\superscript{*}}
\def\wg{\superscript{\dag}}
%.... later
    \author{\IEEEauthorblockN{aa\wu, bb\wu, cc\wu, dd\wu\wg, ff\wu}
    \IEEEauthorblockA{
    %  \sharedaffiliation
      \begin{tabular}{ccc}
        \wu Department of Computer Science & & \wg Department of Surgery \\
        University         & & Hospital \\
      \end{tabular}
      ~\\
    Email: \{aa,bb,cc,dd,ff\}@university.edu}
    }

答案1

\begin{document}

就像这样……

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

然后像这样调整您的特定“作者块”(示例显示 3 位作者)...

\title{Alternate {\ttlit ACM} SIG Proceedings Paper in LaTeX
Format\titlenote{(Produces...}}

\numberofauthors{3}
% Three authors sharing the same affiliation.
    \author{
      \alignauthor Ben King\\      
      \email{[email protected]}
%
      \alignauthor Georgia Tobin\\     
      \email{[email protected]}
%
      \alignauthor Gerald Murray\\    
      \email{[email protected]}
%
      \sharedaffiliation
      \affaddr{Department of Electrical Engineering and Computer Science}  \\
      \affaddr{University of California, Berkeley }   \\
      \affaddr{Berkeley, CA 94720-1776 }
          }
%
\maketitle

编译/预览/渲染的时候效果如下: 在此处输入图片描述

(来源:http://www.acm.org/sigs/publications/sigfaq#a17

相关内容