<table-count>

Table Count

Number of <table-wrap> elements that appear in the document.

Remarks

Best Practice: The <array> elements should not be counted for purposes of determining the number of tables present in an document.

Attributes

count Count
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  table-count  EMPTY                                        >

Description

This is an EMPTY element

This element may be contained in:

<counts>

Example

    
<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>