sig-alternate 类的 \IEEEauthorrefmark 对应项是什么?

sig-alternate 类的 \IEEEauthorrefmark 对应项是什么?

\IEEEauthorrefmark{1}(课堂上用到的IEEEtran)课堂对应词是什么sig-alternate

有关的一些信息\IEEEauthorrefmark

作者多次提到以下形式:

john^, willy^, daniel*
^ University of Washington
* University of Michigan

它用于创建符号 ^*

答案1

该类不直接支持共享隶属关系地址sig-alternate。基本上,ACM 建议您在专用块中提供每个作者的所有信息\alignauthor

\documentclass{sig-alternate}
\title{My Fancy Paper}
\begin{document}

\author{
% 1st. author
\alignauthor
Ben Trovato\\
             \affaddr{Institute for Clarity in Documentation, Wallamaloo, New Zeeland}\\
             \email{[email protected]}
\and
\alignauthor
Foo Bar\\
             \affaddr{Institute for Clarity in Documentation, Wallamaloo, New Zeeland}\\
             \email{[email protected]}
\and
\alignauthor
Cool Guy\\
             \affaddr{Cool Stuff Intitute, Cold Village, Iceland}\\
             \email{[email protected]}
}

\maketitle
\begin{abstract}
This paper...
\end{abstract}

% A category with the (minimum) three required fields
\category{H.4}{Information Systems Applications}{Miscellaneous}
%A category including the fourth, optional field follows...
\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]

\terms{Theory}

\keywords{ACM proceedings, \LaTeX, text tagging}

\section{Introduction}
\end{document}

在此处输入图片描述

如果你不喜欢这个或认为它太耗空间,你当然可以手动修改它以获得预期的结果。这可能不是“正确的”,但我必须承认我经常出于空间原因这样做——而且从来没有人抱怨过。

\documentclass{sig-alternate}
\title{My Fancy Paper}
\begin{document}

\author{
% all authors in one row :-)
\alignauthor
Ben Trovato\textsuperscript{\#}\quad Foo Bar\textsuperscript{\#}\quad Cool Guy\textsuperscript{*}\\
             \affaddr{\textsuperscript{\#}Institute for Clarity in Documentation, Wallamaloo, New Zeeland}\\
             \affaddr{\textsuperscript{*}Cool Stuff Intitute, Cold Village, Iceland}\\
             \email{\{trovato, bar\}@corporation.com}\\
             \email{[email protected]}
}

\maketitle
\begin{abstract}
This paper...
\end{abstract}

% A category with the (minimum) three required fields
\category{H.4}{Information Systems Applications}{Miscellaneous}
%A category including the fourth, optional field follows...
\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]

\terms{Theory}

\keywords{ACM proceedings, \LaTeX, text tagging}

\section{Introduction}
\end{document}

在此处输入图片描述

相关内容