Container element for counts of a document (for example, number of tables, number of figures, number of words).
Many elements in the base Suite were created explicitly for import conversion, that is, so that the intellectual work of tagging done by publishers would not be discarded when they converted material from another tag set to this Tag Set. The count elements are a perfect example of this rationale; they are conversion elements and should only be tagged if present in the original source.
<!ELEMENT counts %counts-model; >
(count*, fig-count?, table-count?, equation-count?, ref-count?, page-count?, word-count?)
The following, in order:
A simple page count using (preferred) predefined element:
...
<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>
</book-part-meta>
...
Predefined counts and a custom count of contributors:
<book dtd-version="1.0">
<book-meta>
<book-id book-id-type="publisher">handbook-648</book-id>
<book-title-group>
<book-title>The NCBI Handbook</book-title>
</book-title-group>
...
<counts>
<count count-type="contributors" count="2"/>
<fig-count count="98"/>
<table-count count="40"/>
<equation-count count="0"/>
<ref-count count="115"/>
<page-count count="532"/>
<word-count count="149852"/>
</counts>
</book-meta>
<front-matter>...</front-matter>
<book-body>...</book-body>
<book-back>...</book-back>
</book>