내 문서에서 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

관련 정보