<counts>
Counts (個数コンテナ)
文書に関する数 (例えば表の数、図の数、単語数) のコンテナ要素。
備考
もともとこのタグスイートは文書のインポート変換のために設計されました。その結果出版者によって行われたタグ付けの知的作業の結果は、出版者のタグセットからこのタグセットに変換されル時に破棄されないように設計されました。個数に関する要素はその良い例です。すなわち、これらは変換用要素であり、元のデータに存在する場合にのみタグ付けします
コンテンツ・モデル
<!ELEMENT counts %counts-model; >
拡張コンテンツ・モデル
(count*, fig-count?, table-count?, equation-count?, ref-count?, page-count?, word-count?)
記述方法
以下の順:
- <count> (個数)、ゼロまたは 1 個以上
- <fig-count> (図個数)、ゼロまたは 1 個
- <table-count> (表個数)、ゼロまたは 1 個
- <equation-count> (方程式個数)、ゼロまたは 1 個
- <ref-count> (文献個数)、ゼロまたは 1 個
- <page-count> (ページ総数)、ゼロまたは 1 個
- <word-count> (総語数)、ゼロまたは 1 個
この要素は以下の要素内に含むことができます:
用例 1
定義されている要素を用いた単純なページ総数:
...
<article-meta>...
<counts>
<page-count count="1"/>
</counts>
<custom-meta-group>
<custom-meta>
<meta-name>crossmark</meta-name>
<meta-value>2013-02-15T11:32:17</meta-value>
</custom-meta>
</custom-meta-group>
</article-meta>
...
用例 2
定義されている総数要素と寄与者の総数:
...
<article-meta>...
<abstract>...</abstract>
<conference>
<conf-date iso-8601-date="1999">1999</conf-date>
<conf-name>The 27th annual ACM SI/GUCCS
conference</conf-name>
<conf-acronym>SIGUCCS</conf-acronym>
<conf-num>27</conf-num>
<conf-loc>Denver, Colorado, United States</conf-loc>
<conf-sponsor>ACM, Assoc. for Computing
Machinery</conf-sponsor>
<conf-theme>User services conference for
university and college computing service
organizations</conf-theme>
</conference>
<counts>
<count count-type="contributors" count="3"/>
<fig-count count="5"/>
<table-count count="3"/>
<equation-count count="10"/>
<ref-count count="26"/>
<page-count count="6"/>
<word-count count="2847"/>
</counts>
</article-meta>
...