<count>

Count

Generic count element to count anything a BITS user organization may wish to count in a document. The @count-type attribute will name what is being counted (such as footnotes, tables, sections, contributors, images, etc.) The @count attribute will state how many of the objects are in the document.

Remarks

Best Practice: Although a BITS user organization could choose to record all the counts of objects in a document using this element, the specific count elements (<fig-count>, <equation-count>, <word-count>, etc.) should be used whenever possible, using the <count> element only for ad hoc counts.

Attributes

count Count
count-type Count Type
id Document Internal Identifier
xml:base Base

Related Elements

Inside the <counts> container element are the counts of various components of the document: the generic count element <count> (for which the @count-type names what is being counted) and the specific named counting elements: <fig-count> is the number of figures, the <table-count> is the number of tables, the <equation-count> is the number of equations, the <ref-count> is either the number of references or (more properly) the number of citations in the bibliographic reference list, the <page-count> is the page count, and the <word-count> is the number of words in the document.

Content Model

<!ELEMENT  count        EMPTY                                        >

Description

This is an EMPTY element

This element may be contained in:

<counts>

Example

    
...
<book-meta>
...
<abstract>...</abstract>
<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>
</book-meta>
...