<biblScope>

<biblScope> (scope of citation) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. 3.11.2.3 Imprint, Pagination, and Other Details
Module core — 3 Elements Available in All TEI Documents
In addition to global attributes In addition to global attributes
type identifies the type of information conveyed by the element, e.g. columns, pages, volume.
Status Optional
Datatype

<rng:ref name="data.enumerated"/>
data.enumerated
Suggested values include:
vol
(volume) the element contains a volume number.
issue
the element contains an issue number, or volume and issue numbers.
pp
(pages) the element contains a page number or page range.
ll
(lines) the element contains a line number or line range.
chap
(chapter) the element contains a chapter indication (number and/or title)
part
the element identifies a part of a book or collection.
from specifies the starting point of the range of units indicated by the type attribute.
Status Optional
Datatype

<rng:ref name="data.word"/>
data.word
to specifies the end-point of the range of units indicated by the type attribute.
Status Optional
Datatype

<rng:ref name="data.word"/>
data.word
Used by
May contain
Declaration

<rng:element name="biblScope">
 <rng:ref name="att.global.attributes"/>
 <rng:optional>
  <rng:attribute name="type">
   <rng:choice>
    <rng:value>vol</rng:value>
    <rng:value>issue</rng:value>
    <rng:value>pp</rng:value>
    <rng:value>ll</rng:value>
    <rng:value>chap</rng:value>
    <rng:value>part</rng:value>
    <rng:data type="Name"/>
   </rng:choice>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="from">
   <rng:ref name="data.word"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="to">
   <rng:ref name="data.word"/>
  </rng:attribute>
 </rng:optional>
 <rng:ref name="macro.phraseSeq"/>
</rng:element>
element biblScope
{
   att.global.attributes,
   attribute type
   {
      "vol" | "issue" | "pp" | "ll" | "chap" | "part" | xsd:Name
   }?,
   attribute from { data.word }?,
   attribute to { data.word }?,
   macro.phraseSeq
}
Example
<biblScope>pp 12–34</biblScope>
<biblScope type="pp" from="12" to="34"/>
<biblScope type="vol">II</biblScope>
<biblScope type="pp">12</biblScope>