<titlePage>

<titlePage> (title page) contains the title page of a text, appearing within the front or back matter. 4.6 Title Pages
Moduletextstructure — 4 Default Text Structure
AttributesIn addition to global attributes
typeclassifies the title page according to any convenient typology.
Status Optional
Datatype

<rng:ref name="data.enumerated"/>
data.enumerated
Values Any string, e.g. full, half, Series, etc.
Note
This attribute allows the same element to be used for volume title pages, series title pages, etc., as well as for the‘main’ title page of a work.
Used by
May contain
Declaration

<rng:element name="titlePage">
<rng:ref name="att.global.attributes"/>
<rng:optional>
 <rng:attribute name="type">
  <rng:ref name="data.enumerated"/>
 </rng:attribute>
</rng:optional>
<rng:group>
 <rng:zeroOrMore>
  <rng:ref name="model.global"/>
 </rng:zeroOrMore>
 <rng:group>
  <rng:ref name="model.titlepagePart"/>
 </rng:group>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:ref name="model.titlepagePart"/>
   <rng:ref name="model.global"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:group>
</rng:element>
element titlePage
{
   att.global.attributes,
   attribute type { data.enumerated }?,
   (
      model.global*,
      ( model.titlepagePart ),
      ( model.titlepagePart | model.global )*
   )
}
Example
<titlePage>
 <docTitle>
  <titlePart type="main">THOMAS OF Reading.</titlePart>
  <titlePart type="alt">OR, The sixe worthy yeomen of the West.</titlePart>
 </docTitle>
 <docEdition>Now the fourth time corrected and enlarged</docEdition>
 <byline>By T.D.</byline>
 <figure>
  <head>TP</head>
  <p>Thou shalt labor till thou returne to duste</p>
  <figDesc>Printers Ornament used by TP</figDesc>
 </figure>
 <docImprint>Printed at <name type="place">London</name> for <name>T.P.</name>
  <date>1612.</date>
 </docImprint>
</titlePage>