<pb>

<pb> (cambio de página) marca la frontera entre una página de un texto y la siguiente en un sistema de referencia estándard. 3.10.3 Milestone Elements
Módulocore — 3 Elements Available in All TEI Documents
Atributos att.typed (@type, @subtype)
ed (edición) indica la edición o versión del texto en la cual en ese punto se produce el cambio de página
Estado Recomendado
Tipo de datos

<rng:ref name="data.code"/>
data.code
Valores Any string of characters; usually a siglum conventionally used for the edition.
Usado por
Puede contenerElemento vacío
Declaración

<rng:element name="pb">
<rng:ref name="att.global.attributes"/>
<rng:ref name="att.typed.attributes"/>
<rng:optional>
 <rng:attribute name="ed">
  <rng:ref name="data.code"/>
 </rng:attribute>
</rng:optional>
<rng:empty/>
</rng:element>
element pb
{
   att.global.attributes,
   att.typed.attributes,
   attribute ed { data.code }?,
   empty
}
Ejemplo

Page numbers may vary in different editions of a text.

<p>...
<pb n="145ed="ed2"/>
<!-- Page 145 in edition "ed2" starts here -->
...
<pb n="283ed="ed1"/>
<!-- Page 283 in edition "ed1" starts here-->
...
</p>
Ejemplo

A page break may be associated with a facsimile image of the page it introduces by means of the facs attribute

<TEI>
 <teiHeader>
<!--...-->
 </teiHeader>
 <text>
  <pb n="1facs="page1.png"/>
<!-- page1.png contains an image of the page; the text it contains is encoded here -->
  <pb n="2facs="page2.png"/>
<!-- similarly, for page 2 -->
 </text>
</TEI>