<page-count>

Page Count

Total number of pages in a work in print; by convention, each page or partial page is counted as one. Electronic-only works do not traditionally have page counts.

Remarks

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: the <fig-count> is the number of figures, the <table-count> is the number of tables, the <equation-count> is the number of display 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 total page count, and the <word-count> is the number of words in the work.

The count elements are modeled as EMPTY elements that have no content but carry values on their attributes.

The <page-count> should not be used inside citations (<element-citation> or <mixed-citation>), instead use the element <size>.

Attributes

count Count
id Document Internal Identifier
xml:base Base

Related Elements

A number of elements in the Suite relate to page numbers:

Best Practice: The <page-range> is intended to record supplementary information and should not be used in the place of the <fpage> and <lpage> elements, which are typically needed for citation matching. The <page-range> element is merely a text string, containing such material as “8-11, 14-19, 40”, which would mean that the document began on page 8, ran through 11, skipped to page 14, ran through 19, and concluded on page 40.

Content Model

<!ELEMENT  page-count   EMPTY                                        >

Description

This is an EMPTY element

This element may be contained in:

<counts>

Example 1

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

   

Example 2


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