ドキュメントで ACM CCS 分類をどのように、どこで使用すればよいですか?

ドキュメントで ACM CCS 分類をどのように、どこで使用すればよいですか?

私はACMワークショップの会議を書いています。いくつかのCCSの概念を選んだ私の記事に関連していて、それらのための「XML 風」および「LaTeX 風」のコードがありますが、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

関連情報