如何/在何處使用我的文件中的 ACM CCS 分類?

如何/在何處使用我的文件中的 ACM CCS 分類?

我正在為 ACM 研討會撰寫會議內容。我有挑選了一些CCS概念與我的文章相關,並且我有它們的“XMLish”和“LaTeXish”代碼 - 但我不確定應該將其放在 TeX 文件中的哪個位置(即我應該放置命令的位置\printccsdesc)。開導我?

答案1

將程式碼放在 之前的任意位置\maketitle。不要使用該指令\printccsdesc

例如,

\begin{CCSXML}
<ccs2012>
 <concept>
  <concept_id>10010520.10010553.10010562</concept_id>
  <concept_desc>Computer systems organization~Embedded systems</concept_desc>
  <concept_significance>500</concept_significance>
 </concept>
 <concept>
  <concept_id>10010520.10010575.10010755</concept_id>
  <concept_desc>Computer systems organization~Redundancy</concept_desc>
  <concept_significance>300</concept_significance>
 </concept>
 <concept>
  <concept_id>10010520.10010553.10010554</concept_id>
  <concept_desc>Computer systems organization~Robotics</concept_desc>
  <concept_significance>100</concept_significance>
 </concept>
 <concept>
  <concept_id>10003033.10003083.10003095</concept_id>
  <concept_desc>Networks~Network reliability</concept_desc>
  <concept_significance>100</concept_significance>
 </concept>
</ccs2012>  
\end{CCSXML}

\ccsdesc[500]{Computer systems organization~Embedded systems}
\ccsdesc[300]{Computer systems organization~Redundancy}
\ccsdesc{Computer systems organization~Robotics}
\ccsdesc[100]{Networks~Network reliability}

%
% End generated code
%


\maketitle

相關內容