The ENRICH SchemaA Reference Guide
edited by Lou Burnard
Oxford
October 2008

Introduction

This Reference Guide defines an XML format for the structure of the data which all ENRICH partners will contribute to the Manuscriptorium, either directly or indirectly by means of a harvester or transformation process. The format is formally expressed by a schema which is generated from the XML source of this guide. The guide itself is a conformant subset of Release 1.4 of The Text Encoding Initiative's Guidelines for Electronic Text Encoding and Interchange (TEI P5).

The schema defined by this document addresses three distinct aspects of a digitized manuscript:
  1. metadata describing the original source manuscript ( 1 Manuscript Description Metadata)
  2. metadata describing digitized images of the original source manuscript ( 2 Metadata about digital facsimiles)
  3. a transcription of the text contained by the original source manuscript

Within Manuscriptorium, only the first two are required. However, the schema documented here also provides for the third, in the interest of completeness and for the assistance of ENRICH partners wishing to provide richer access facilities to their holdings.

The schema defined by this document is available in DTD, RELAX NG, and W3C Schema languages. Along with the present documentation, this forms one of the key deliverables for Work Package 3 of the ENRICH project.

Earlier versions of Manuscriptorium used schemas based on MASTER, notably one known as MASTER-X. These specifications both defined comparatively unconstrained XML formats, which permitted a very wide range of possibilities and did not attempt to constrain (for example) values to any predefined set of values. While appropriate for an interchange format, this approach has some drawbacks:
In the ENRICH schema, we have tried to address these concerns by reducing the number of choices and constraining the possible values for several attributes. Nevertheless,
The overall structure of an ENRICH-conformant XML document may be summarized as follows:
<TEI>
 <teiHeader>
<!-- ... metadata describing the manuscript -->
 </teiHeader>
 <facsimile>
<!-- ... metadata describing the digital images -->
 </facsimile>
 <text>
<!-- (optional) transcription of the manuscript -->
 </text>
</TEI>

The remainder of this Guide describes each of these aspects in more detail, using material derived from the P5 release of the TEI Guidelines.

1 Manuscript Description Metadata

Each distinct manuscript must be described using a distinct TEI-conformant teiHeader element, as specified in the TEI Guidelines, chapter 2. This element may contain many components, depending on the needs of the creator, which may be provided in either structured or (relatively) unstructured form. For Manuscriptorium purposes, the following components of the TEI Header must be provided, and must conform to the constraints specified here.

Other header components, if present, will be ignored by Manuscriptorium; they will be retained for storage in the system and returned on request, but their content is not processed for any purpose, and they may not be visible for searching purposes.

The following example shows the minimal required structure:
<teiHeader>
 <fileDesc>
  <titleStmt>
   <title>[Title of manuscript]</title>
  </titleStmt>
  <publicationStmt>
   <distributor>[name of data provider]</distributor>
   <idno>[project-specific identifier]</idno>
  </publicationStmt>
  <sourceDesc>
   <msDesc xml:id="ex5" xml:lang="en">
<!-- [full manuscript description ]-->
   </msDesc>
  </sourceDesc>
 </fileDesc>
 <revisionDesc>
  <change when="2008-01-01">
<!-- [revision information] -->
  </change>
 </revisionDesc>
</teiHeader>
Taking these in turn,
The msDesc element is used to provide detailed information about a single manuscript. For ENRICH purposes, this must carry the attributes mentioned above, to supply a unique internal identifier for the manuscript, and to specify the language of its description respectively.

The value for xml:id may be the same as the value supplied for the idno element in the teiHeader, or it may be some other project-specific identifier used for cross-reference. It should however be prefixed by an identifier for the partner concerned, so as to avoid possible identifier collisions.

The value for xml:lang, as elsewhere, must be supplied in the form of a valid language identifier (see below). If no value is supplied, the assumption is that the language of the description is English.

The msDesc element has the following component elements, each of which is further described in the remainder of this section.

The first of these components, msIdentifier, is mandatory; it is described in more detail in 1.2 The Manuscript Identifier below. It is followed by either one or more paragraphs, marked up as a series of p elements, or one or more of the specialized elements msContents ( 1.4 Intellectual Content), physDesc ( 1.5 Physical Description), history ( 1.6 History), and additional ( 1.7 Additional information). These elements are all optional, but if used they must appear in the order given here. Finally, in the case of a composite manuscript, a full description may also contain one or more msPart elements ( 1.8 Manuscript Parts).

To demonstrate the variety of records which may be produced, consider the following sample manuscript description, chosen more or less at random from the Bodleian Library's Summary catalogue
Entry for Bodleian MS. Add. A. 61 in Madan et al.
    1895-1953
Figura 1. Entry for Bodleian MS. Add. A. 61 in Madan et al. 1895-1953
The simplest way of digitizing this catalogue entry would simply be to key in the text, tagging the relevant parts of it which make up the mandatory msIdentifier element, as follows:
<msDesc xml:id="ex4" xml:lang="en">
 <msIdentifier>
  <settlement>Oxford</settlement>
  <repository>Bodleian Library</repository>
  <idno>MS. Add. A. 61</idno>
  <altIdentifier type="former">
   <idno>28843</idno>
  </altIdentifier>
 </msIdentifier>
 <p>In Latin, on parchment: written in more than one hand of the 13th
   cent. in England: 7¼ x 5⅜ in., i + 55 leaves, in double columns: with
   a few coloured capitals.</p>
 <p>'Hic incipit Bruitus Anglie,' the De origine et gestis Regum
   Angliae of Geoffrey of Monmouth (Galfridus Monumetensis: beg. 'Cum
   mecum multa &amp; de multis.'</p>
 <p>On fol. 54v very faint is 'Iste liber est fratris guillelmi de
   buria de ... Roberti ordinis fratrum Pred[icatorum],' 14th cent. (?):
   'hanauilla' is written at the foot of the page (15th cent.). Bought
   from the rev. W. D. Macray on March 17, 1863, for £1 10s.</p>
</msDesc>
With a suitable stylesheet, this encoding would be as readable as the original; it would not, however, be very useful for search purposes since only shelfmarks and other identifiers are distinguished by the markup. To improve on this, one might wrap the paragraphs in the appropriate special-purpose first-child-level elements of msDesc and use some additional phrase-level elements:
<msDesc xml:id="ex1" xml:lang="en">
 <msIdentifier>
  <settlement>Oxford</settlement>
  <repository>Bodleian Library</repository>
  <idno>MS. Add. A. 61</idno>
  <altIdentifier type="former">
   <idno>28843</idno>
  </altIdentifier>
 </msIdentifier>
 <msContents>
  <p>
   <quote xml:lang="lat">Hic incipit Bruitus Anglie,</quote> the
  <title xml:lang="lat">De origine et gestis Regum Angliae</title>
     of Geoffrey of Monmouth (Galfridus Monumetensis):
     beg. <quote xml:lang="lat">Cum mecum multa &amp; de multis.</quote>
     In Latin.</p>
 </msContents>
 <physDesc>
  <p>
   <material>Parchment</material>: written in
     more than one hand: 7¼ x 5⅜ in., i + 55 leaves, in double
     columns: with a few coloured capitals.</p>
 </physDesc>
 <history>
  <p>Written in
  <origPlace>England</origPlace> in the
  <origDate>13th cent.</origDate> On fol. 54v very faint is
  <quote xml:lang="lat">Iste liber est fratris guillelmi de buria de ... Roberti
       ordinis fratrum Pred[icatorum],</quote> 14th cent. (?):
  <quote>hanauilla</quote> is written at the foot of the page
     (15th cent.). Bought from the rev. W. D. Macray on March 17, 1863, for
     £1 10s.</p>
 </history>
</msDesc>
Such an encoding allows the user to search for such features as title, material, and date and place of origin; it is also possible to distinguish quoted material and Latin material from descriptive passages and to search within distinct parts of the description, for example, the manuscript history as distinct from its materials.
This process could be continued further, restructuring the whole entry so as to take full advantage of many more encoding possibilities:
<msDesc xml:id="ex2" xml:lang="en">
 <msIdentifier>
  <settlement>Oxford</settlement>
  <repository>Bodleian Library</repository>
  <idno>MS. Add. A. 61</idno>
  <altIdentifier type="former">
   <idno>28843</idno>
  </altIdentifier>
 </msIdentifier>
 <msContents>
  <msItem>
   <author xml:lang="en">Geoffrey of Monmouth</author>
   <author xml:lang="la">Galfridus Monumetensis</author>
   <title type="uniform" xml:lang="la">De origine et
       gestis Regum Angliae</title>
   <rubric xml:lang="la">Hic incipit Bruitus Anglie</rubric>
   <incipit xml:lang="la">Cum mecum multa &amp; de multis</incipit>
   <textLang mainLang="la">Latin</textLang>
  </msItem>
 </msContents>
 <physDesc>
  <objectDesc form="codex">
   <supportDesc material="perg">
    <support>
     <p>Parchment.</p>
    </support>
    <extent>i + 55 leaves
    <dimensions scope="all" type="leaf" unit="in">
      <height></height>
      <width>5⅜</width>
     </dimensions>
    </extent>
   </supportDesc>
   <layoutDesc>
    <layout columns="2">
     <p>In double columns.</p>
    </layout>
   </layoutDesc>
  </objectDesc>
  <handDesc>
   <p>Written in more than one hand.</p>
  </handDesc>
  <decoDesc>
   <p>With a few coloured capitals.</p>
  </decoDesc>
 </physDesc>
 <history>
  <origin>
   <p>Written in <origPlace>England</origPlace> in the <origDate notAfter="1300" notBefore="1200">13th cent.</origDate>
   </p>
  </origin>
  <provenance>
   <p>On fol. 54v very faint is
   <quote xml:lang="la">Iste liber est fratris guillelmi de buria de
    <gap reason="illegible"/>
         Roberti ordinis fratrum
         Pred<ex>icatorum</ex>
    </quote>, 14th cent. (?):
   <quote>hanauilla</quote> is written at the foot of the page
       (15th cent.).</p>
  </provenance>
  <acquisition>
   <p>Bought from the rev. <name type="person" key="MCRAYWD">W. D. Macray</name> on
   <date when="1863-03-17">March 17, 1863</date>, for £1 10s.</p>
  </acquisition>
 </history>
</msDesc>

1.1 Phrase-level Elements

Phrase-level elements are XML elements that can appear at the same hierarchic level as text in many parts of the digital record. Some of these are specialized, in that they may be used only within particular contexts; others may be used in any context. Within the components of the msDesc element, the following specialized phrase level elements are available:
  • catchwords descrive il sistema utilizzato per garantire l'ordinamento corretto dei quaderni che costituiscono un codice o incunabolo, ottenuto solitamente tramite annotazioni a piè di pagina
  • dimensions contiene una qualsiasi indicazione relativa alle dimensioni
  • heraldry contiene una formula araldica di solito parte di uno stemma, blasone, ecc.
  • locus definisce una posizione all'interno di un manoscritto o di una sua parte, generalmente come sequenza (non necessariamete continua) di riferimenti di fogli
  • locusGrp groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation.
  • material contiene una parola o un'espressione che descrive il materiale di cui è composto un manoscritto (o una sua parte)
  • watermark contiene una parola o espressione che descrive la filigrana o una tecnica simile
  • origDate (data di origine) contiene una data espressa in una forma qualsiasi utilizzata per indicare la data di origine di un manoscritto o di una sua parte
  • origPlace (luogo di origine) contiene un qualsiasi nome di luogo utilizzato per indicare il luogo di origine di un manoscritto o di una sua parte
  • secFol (secondo foglio) la parola o le parole estratte da un punto preciso di un codice (di solito l'inizio del secondo foglio) al fine di identificare lo stesso in modo univoco
  • signatures contiene il registro delle segnature del foglio o del quaderno appartenenti al codice

1.1.1 Origination

The following elements may be used to provide information about the origins of any aspect of a manuscript:
  • origDate (data di origine) contiene una data espressa in una forma qualsiasi utilizzata per indicare la data di origine di un manoscritto o di una sua parte
  • origPlace (luogo di origine) contiene un qualsiasi nome di luogo utilizzato per indicare il luogo di origine di un manoscritto o di una sua parte
The origDate and origPlace elements are used to indicate the date and place of origin of a manuscript or manuscript part. Such information will usually appear within the history element, discussed in section 1.6 History, but can also appear within other parts of the manuscript description, such as its decoration or binding, when these are not of the same date as the manuscript itself. Both these elements are members of the att.editLike class, from which they inherit the following attributes:
  • att.editLike assegna degli attributi che descrivono il carattere di un intervento critico codificato o interpretazione di altro tipo
    cert (certezza) corrisponde al grado di certezza associato all'intervento o interpretazione
    resp (responsabile) indica il responsabile dell'intervento o interpretazione, per esempio un curatore o trascrittore
    evidence indica il carattere delle prove a sostegno dell'affidabilità o accuratezza dell'intervento o interpretazione
The origDate element is a member of the att.datable class, and may thus also carry the following attributes:
  • att.datable.w3c indica degli attributi per la normalizzazione di elementi che contengono eventi databili utilizzando i tipi di dati del W3C
    notBefore specifica la prima data possibile per un evento nel formato standard aaaa-mm-gg
    notAfter specifica l'ultima data possibile per un evento nel formato standard aaaa-mm-gg
    when indica il valore di una data o di un orario in un formato standard
    from indica l'inizio del periodo nel formato standard
    to indica la fine del periodo nel formato standard

1.1.2 Material

The material element can be used to tag any specific term used for the physical material of which a manuscript (or binding, seal, etc.) is composed.
  • material contiene una parola o un'espressione che descrive il materiale di cui è composto un manoscritto (o una sua parte)
The element may appear wherever a term regarded as significant by the encoder occurs, as in the following example:
<binding>
 <p>Brown <material>calfskin</material>, previously with two clasps.</p>
</binding>

1.1.3 Watermarks and Stamps

Two further elements are provided to mark up other decorative features characteristic of manuscript leaves and bindings:
  • watermark contiene una parola o espressione che descrive la filigrana o una tecnica simile
  • stamp contiene una parola o un sintagma che descrive un timbro o simile
These elements may appear wherever a term regarded as significant by the encoder occurs. The watermark element is most likely to be of use within the support element discussed in 1.5.1.1 Support below. We give a simple example here:
<support>
 <material>Rag
   paper</material> with <watermark>anchor</watermark>
watermark
</support>
The stamp element will typically appear when text from the source is being transcribed, for example within a rubric in the following case:
<rubric>
 <lb/>Apologyticu TTVLLIANI AC IGNORATIA IN XPO IHV<lb/>
SI NON LICET<lb/>
NOBIS RO<lb type="inWord"/>
manii imperii <stamp>Bodleian stamp</stamp>
</rubric>
It may also appear as part of the detailed description of a binding:
<binding>
 <p>Modern calf recasing with original armorial stamp <stamp>Ex
     Bibliotheca J. Richard D.M.</stamp>
 </p>
</binding>

1.1.4 Dimensions

The dimensions element can be used to specify the size of some aspect of the manuscript.
  • dimensions contiene una qualsiasi indicazione relativa alle dimensioni
    type indica quale aspetto dell'oggetto viene misurato

The dimensions element will normally occur within the element describing the particular feature or aspect of a manuscript whose dimensions are being given; thus the size of the leaves would be specified within the support or extent element (part of the physDesc element discussed in 1.5.1 Object Description), while the dimensions of other specific parts of a manuscript, such as accompanying materials, binding, etc., would be given in other parts of the description, as appropriate.

The type attribute on the dimensions element is used to specify more exactly the item being measured. For ENRICH purposes, this attribute must take one of the following values: leaf, binding, slip, written, boxed.

The following elements are available within the dimensions element:
  • dim contains any single measurement forming part of a dimensional specification of some sort.
  • height si riferisce a una misurazione presa lungo l'asse parallelo al dorso
  • width si riferisce a una misurazione presa lungo l'asse perpendicolare al dorso
  • depth si riferisce a una misurazione presa lungo la larghezza del dorso
The dim element may be used to supply any kind of dimensional information, for example diameter or circumference, and may be repeated as often as needed. The other three have specific senses and each of them may only be given once.
These elements, as well as dimensions itself, are all members of the att.dimensions class, and thus all carry the following attributes:
  • att.dimensions assegna degli attributi che descrivono la grandezza di oggetti fisici
    unit specifica le unità usate per la misurazione
    quantity specifica la lunghezza nelle unità indicate
    scope indica l'applicabilità della misurazione, laddove venga misurato più di un oggetto
Through this class membership, these elements also inherit the following attributes from the att.ranging class:
  • att.ranging provides attributes for describing numerical ranges.
    atLeast gives a minimum estimated value for the measurement.
    atMost gives a maximum estimated value for the measurement.
    min where the measurement summarizes more than one observation, supplies the minimum value observed.
    max where the measurement summarizes more than one observation, supplies the maximum value observed.

Attributes min, max, and scope are used only when the measurement applies to several items, for example the size of many or all the leaves in a manuscript; attributes atLeast and atMost are used when the measurement applies to a single item, for example the size of a specific codex, but has had to be estimated. Attribute <quantity> is used when the measurement can be given exactly, and applies to a single item; this is the usual situation. The units in which dimensions are measured should always be specified using the unit attribute, which will normally be taken from a closed set of values appropriate to the project, using standard units of measurement wherever possible. In the ENRICH project the following values are permitted: cm, mm, in, line, char. If the only data available for the measurement uses some other unit, or it is preferred to normalize it in some other way, then it may be supplied as a string value using the extent attribute.

The content of these elements, if present, simply copies the way that the measurement is presented in some source text; it may be omitted.

In the simplest case, only the extent attribute may be supplied:
<width extent="6 cubit">six cubits</width>
More usually, the measurement will be normalised into a value and an appropriate SI unit:
<width quantity="270" unit="cm">six cubits</width>
Where the exact value is uncertain, the attributes atLeast and atMost may be used to indicate the upper and lower bounds of an estimated value:
<width atLeast="250" atMost="300" unit="cm">six cubits</width>
It is often convenient to supply a measurement which applies to a number of discrete observations: for example, the number of ruled lines on the pages of a manuscript (which may not all be the same), or the diameter of an object like a bell, which will differ depending where it is measured. In such cases, the scope attribute may be used to specify the observations for which this measurement is applicable:
<height unit="lines" scope="most" atLeast="20"/>
This indicates that most pages have at least 20 lines. The attributes min and max can also be used to specify the possible range of values: for example, to show that all pages have between 12 and 30 lines:
<height
  unit="lines"
  scope="all"
  min="12"
  max="30"/>
The dimensions element may be repeated as often as necessary, with appropriate attribute values to indicate the nature and scope of the measurement concerned. For example, in the following case the leaf size and ruled space of the leaves of the manuscript are specified:
<dimensions type="written" unit="mm">
 <height scope="most" quantity="90" unit="mm"/>
 <width scope="most" quantity="48" unit="mm"/>
</dimensions>
<dimensions type="leaves">
 <height min="157" max="160" unit="mm"/>
 <width quantity="105"/>
</dimensions>
This indicates that for most leaves of the manuscript being described the ruled space is 90 mm high and 48 mm wide, while the leaves throughout are between 157 and 160 mm in height and 105 mm in width.

1.1.5 References to Locations within a Manuscript

The locus element and its grouping element locusGrp are specialized forms of the ref element.
  • locus definisce una posizione all'interno di un manoscritto o di una sua parte, generalmente come sequenza (non necessariamete continua) di riferimenti di fogli
    from specifica l'inizio della posizione in forma normalizzata
    to specifica il termine della posizione in forma normalizzata
    scheme identifica la foliazione in base alla posizione specificata
  • locusGrp groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation.
    scheme identifies the foliation scheme in terms of which all the locations contained by the group are specified.

The locus element is used to reference a single location within a manuscript, typically to specify the location occupied by the element within which it appears. If for example it is used as the first component of an msItem element, or of any of the more specific elements appearing within one (see further section 1.4 Intellectual Content below, then it is understood to specify the location (or locations) of that item within the manuscript being described.

A locus element can be used to identify any reference to one or more folios within a manuscript, wherever such a reference is appropriate. Locations are conventionally specified as a sequence of folio or page numbers, but may also be a discontinuous list, or a combination of the two. This specification should be given as the content of the locus element, using the conventions appropriate to the individual scholar or holding institution, as in the following example:
<msItem n="1">
 <locus>ff. 1-24r</locus>
 <title>Apocalypsis beati Ioannis Apostoli</title>
</msItem>
A normalized form of the location can also be supplied, using special purpose attributes on the locus element, as in the following revision of the above example:
<msItem n="1">
 <locus from="1r" to="24r">ff. 1-24r</locus>
 <title>Apocalypsis beati Ioannis Apostoli</title>
</msItem>
When the item concerned occupies a discontinuous sequence of pages, this may simply be indicated in the body of the locus element:
<msItem n="1">
 <locus>ff. 1-12v, 18-24r</locus>
 <title>Apocalypsis beati Ioannis Apostoli</title>
</msItem>
Alternatively, if it is desired to indicate normalised values for each part of the sequence, a sequence of locus elements can be supplied, grouped within the locusGrp element:
<msItem n="1">
 <locusGrp>
  <locus from="1r" to="12v">ff. 1-12v</locus>
  <locus from="18" to="24r">ff. 18-24r</locus>
 </locusGrp>
 <title>Apocalypsis beati Ioannis Apostoli</title>
</msItem>
Finally, the content of the locus element may be omitted if a formatting application can construct it automatically from the values of the from and to attributes:
<msItem n="1">
 <locusGrp>
  <locus from="1r" to="12v"/>
  <locus from="18" to="24r"/>
 </locusGrp>
 <title>Apocalypsis beati Ioannis Apostoli</title>
</msItem>
If a digital image is available for the locus described by the locus element, then the facs attribute should be used to associate it with that image, as in the following example:
<decoDesc>
 <p>Several of the miniatures in this section have been damaged and
   overpainted at a later date (e.g. the figure of Christ on
 <locus facs="#F33R">fol. 33r</locus>; the face of the
   Shepherdess on <locus facs="#F59V">fol. 59v</locus>,
   etc.).</p>
</decoDesc>
Usually, the facs attribute points directly to a surface element within the facsimile element associated with the manuscript description, as further discussed in section 2 Metadata about digital facsimiles below. It is also possible, but not recommended, to use this attribute to point to images of the relevant pages held in some other external image archive.
Where a transcription of the relevant pages is also available, this may be pointed to using the target attribute, as in the following example:

<!-- within ms description --><msItem n="1">
 <locus target="#f1r #f1v #f2r">ff. 1r-2r</locus>
 <author>Ben Jonson</author>
 <title>Ode to himself</title>
 <rubric rend="italics">
  <lb/>An Ode<lb/> to him selfe.</rubric>
 <incipit>Com leaue the loathed stage</incipit>
 <explicit>And see his chariot triumph ore his wayne.</explicit>
 <bibl>
  <name type="person">Beal</name>, <title>Index 1450-1625</title>, JnB 380</bibl>
</msItem>
<!-- within transcription ... -->
<pb xml:id="f1r"/>
<!-- ... -->
<pb xml:id="f1v"/>
<!-- ... -->
<pb xml:id="f2r"/>
<!-- ... -->
Where a manuscript contains more than one foliation, the scheme attribute may be used to distinguish them. For example, MS 65 Corpus Christi College, Cambridge contains two fly leaves bearing music. These leaves have modern foliation 135 and 136 respectively, but are also marked with an older foliation. This may be preserved in an encoding such as the following:
<locus scheme="#original">XCIII</locus>
<locus scheme="#modern">135</locus>
Here the scheme attribute points to a foliation element providing more details about the scheme used, as further discussed in 1.5.1.4 Foliation below.

1.1.6 Names of Persons, Places, and Organizations

The standard TEI element name may be used to identify names of any kind occurring within a description:
  • name (nome, nome proprio) contiene un nome proprio o un sintagma nominale.
As further discussed in http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CO.html#CONARS , this element is a member of the TEI class att.canonical, from which it inherits the following attributes:
  • att.canonical provides attributes which can be used to associate a representation such as a name or title with canonical information about the object being named or referenced.
    key provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind.
    ref (reference) provides an explicit means of locating a full definition for the entity being named by means of one or more URIs.
Here are some examples of the use of the name element:
<name type="person">Thomas Hoccleve</name>
<name type="place">Villingaholt</name>
<name type="org">Vetus Latina Institut</name>
<name type="person" ref="#HOC001">Occleve</name>
Note that the name element is defined as providing information about a name, not the person, place, or organization to which that name refers. In the last example above, the ref attribute is used to associate the name with a more detailed description of the person named. This is provided by means of the person element, which is also available in the ENRICH schema. An element such as the following might then be used to provide detailed information about the person indicated by the name:
<person xml:id="HOC001" sex="1">
 <persName>
  <surname>Hoccleve</surname>
  <forename>Thomas</forename>
 </persName>
 <birth notBefore="1368"/>
 <occupation>poet</occupation>
<!-- other personal data -->
</person>
Note that an instance of the person element must be provided for each distinct ref value specified. In the example above, the value HOC001 must be found as the xml:id attribute of some person; the same value will be used as the ref attribute of every reference to Hoccleve in the document (however spelled), but there will only be one person element with this identifier.

Alternatively, the key attribute may be used to supply an identifying code for the person referenced by the name independently of both the existence of a person element and the use of the standard URI reference mechanism. If, for example, a project maintains as its authority file some non-digital resource, or uses a database which cannot readily be integrated with other digital resources for this purpose, the unique codes used by such ‘offline’ resources may be used as values for the key attribute. Although such practices clearly reduce the interchangeability of the resulting encoded texts, they may be judged more convenient or practical in certain situations.

All the person elements referenced by a particular document set should be collected together within a listPerson element, located in the TEI Header. This functions as a kind of prosopography for all the people referenced by the set of manuscripts being described, in much the same way as a listBibl element in the back matter may be used to hold bibliographic information for all the works referenced.

Similar mechanisms are used to maintain and reference canonical lists of places or organizations.

1.1.7 Catchwords, Signatures, Secundo Folio

The catchwords element is used to describe one method by which correct ordering of the quires of a codex is ensured. Typically, this takes the form of a word or phrase written in the lower margin of the last leaf verso of a gathering, which provides a preview of the first recto leaf of the successive gathering. This may be a simple phrase such as the following:
<catchwords>Quires signed on the last leaf verso in roman numerals.</catchwords>
Alternatively, it may contain more details:
<catchwords>Vertical catchwords in the hand of the scribe placed along
the inner bounding line, reading from top to bottom.</catchwords>
The ‘Signatures’ element is used, in a similar way, to describe a similar system in which quires or leaves are marked progressively in order to facilitate arrangement during binding. For example:
<signatures>At the bottom of the first four leaves of quires 1-14 are
the remains of a series of quire signatures a-o plus roman figures in
a cursive hand of the fourteenth century.</signatures>
The signatures element can be used for either leaf signatures, or a combination of quire and leaf signatures, whether the marking is alphabetic, alphanumeric, or some ad hoc system, as in the following more complex example:
<signatures>Quire and leaf signatures in letters, [b]-v, and roman numerals;
those in quires 10 (1) and 17 (s) in red ink and different from others;
every third quire also signed with red crayon in arabic numerals in the
centre lower margin of the first leaf recto: "2" for quire 4 (f. 19),
"3" for quire 7 (f. 43); "4", barely visible, for quire 10 (f. 65), "5",
in a later hand, for quire 13 (f. 89), "6", in a later hand, for quire
16 (f. 113).</signatures>
The secFol element (for ‘secundo folio’) is used to record an identifying phrase (also called dictio probatoria) taken from a specific known point in a codex (for example the first few words on the second leaf). Since these words will differ from one copy of a text to another, the practice originated in the middle ages of using them when cataloguing a manuscript in order to distinguish individual copies of a work in a way which its opening words could not.
<secFol>(ando-)ssene in una villa</secFol>

1.1.8 Heraldry

Descriptions of heraldic arms, supporters, devices, and mottos may appear at various points in the description of a manuscript, usually in the context of ownership information, binding descriptions, or detailed accounts of illustrations. A full description may also contain a detailed account of the heraldic components of a manuscript independently considered. Frequently, however, heraldic descriptions will be cited as short phrases within other parts of the record. The phrase level element heraldry is provided to allow such phrases to be marked for further analysis, as in the following examples:
<p>Ownership stamp (xvii cent.) on i recto with the arms <heraldry>A bull
   passant within a bordure bezanty, in chief a crescent for difference</heraldry>
[Cole], crest, and the legend <quote>Cole Deum</quote>.</p>
<!-- ... -->
<p>A c. 8r fregio su due lati, <heraldry>stemma e imprese medicee</heraldry>
racchiudono l'inizio dell'epistolario di Paolino.</p>

1.2 The Manuscript Identifier

The msIdentifier element is intended to provide an unambiguous means of uniquely identifying a particular manuscript. This may be done in a structured way, by providing information about the holding institution and the call number, shelfmark, or other identifier used to indicate its location within that institution. Alternatively, or in addition, a manuscript may be identified simply by a commonly used name.
  • msIdentifier (identificatore del manoscritto) contiene l'informazione necessaria a identificare il manoscritto esaminato

A manuscript's actual physical location may occasionally be different from its place of ownership; at Cambridge University, for example, manuscripts owned by various colleges are kept in the central University Library. Normally, it is the ownership of the manuscript which should be specified in the manuscript identifier, while additional or more precise information on the physical location of the manuscript can be given within the adminInfo element, discussed in section 1.7.1 Administrative information below.

The following elements are available within msIdentifier to identify the holding institution:
  • country (country) contiene il nome di un'unità geopolitica, come una nazione, un paese, una colonia, o un'unione di stati, che sia più ampia o amministrativamente superiore rispetto a una regione ma di dimensioni inferiori rispetto a un blocco
  • region contiene il nome di un'unità amministrativa, come uno stato o una provincia, che sia più ampia di un piccolo insediamento ma più piccola di un paese
  • settlement contiene il nome di un insediamento quale una città o un comune considerati come unità geopolitica o amministrativa
  • institution contiene il nome di un'organizzazione (per esempio un'università o una biblioteca) nella quale si trova il deposito del manoscritto
  • repository contiene il nome di un deposito, parte o meno di un'istituzione, nel quale sono conservati i manoscritti

At least one of the elements listed above must be given within the msIdentifier and they must, if present, appear in the order given.

Like name, these elements are all also members of the attribute class att.canonical, and thus can use the attributes key or ref to reference a single standardized source of information about the entity being named.

The following elements are used within msIdentifier to provide different ways of identifying the manuscript within its holding institution:
  • collection contiene il nome di una raccolta di manoscritti non necessariamente collocati in un unico deposito
  • idno (numero identificatore) fornisce un identificatore, standard o meno, usato per identificare un'unità bibliografica
  • altIdentifier (identificatore alternativo.) contiene un identificatore strutturato alternativo o precedente utilizzato per un manoscritto, per esempio un precedente numero di catalogazione
    type caratterizza l'elemento utilizzando una classificazione o tipologia funzionale
  • msName (nome alternativo) contiene un qualsiasi nome alternativo non strutturato utilizzato per un manoscritto, per esempio ‘ocellus nominum’, o soprannome
Major manuscript repositories will usually have a preferred form of citation for manuscript shelfmarks, including rules about punctuation, spacing, abbreviation, etc., which should be adhered to. Where such a format also contains information which might additionally be supplied as a distinct subcomponent of the msIdentifier, for example a collection name, a decision must be taken as to whether to use the more specific element, or to include such information within the idno element. For example, the manuscript formally identified as ‘El 26 C 0’ forms a part of the Ellesmere (‘El’) collection. Either of the following encodings is therefore feasible:
<msIdentifier>
 <country>USA</country>
 <region type="state">California</region>
 <settlement>San Marino</settlement>
 <repository>Huntington Library</repository>
 <collection>El</collection>
 <idno>26 C 9</idno>
 <msName>The Ellesmere Chaucer</msName>
</msIdentifier>
<msIdentifier>
 <country>USA</country>
 <region type="state">California</region>
 <settlement>San Marino</settlement>
 <repository>Huntington Library</repository>
 <idno>El 26 C 9</idno>
 <msName>The Ellesmere Chaucer</msName>
</msIdentifier>
In the former example, the preferred form of the identifier can be retrieved by prefixing the content of the idno element with that of the collection element, while in the latter it is given explicitly. The advantage of the former is that it it simplifies accurate retrieval of all manuscripts from a given collection; the disadvantage is that encoded abbreviations of this kind may not be as immediately comprehensible. Care should be taken to avoid redundancy: for example
<collection>El</collection>
<idno>El 26 C 9</idno>
would clearly be inappropriate. Equally clearly,
<collection>Ellesmere</collection>
<idno>El 26 C 9</idno>
might be considered helpful in some circumstances (if, for example, some of the items in the Ellsemere collection had shelfmarks which did not begin ‘El’)
In cases where the shelfmark contains no information about the collection, it may be necessary to provide this explicitly, as in the following example:
<msIdentifier>
 <country>USA</country>
 <region type="state">New Jersey</region>
 <settlement>Princeton</settlement>
 <repository>Princeton University Library</repository>
 <collection>Scheide Library</collection>
 <idno>MS 71</idno>
 <msName>Blickling Homiliary</msName>
</msIdentifier>
In these examples, msName has been used to provide a common name other than the shelfmark by which a manuscript is known. Where a manuscript has several such names, more than one of these elements may be used, as in the following example:
<msIdentifier>
 <country>Danmark</country>
 <settlement>København</settlement>
 <repository>Det Arnamagnæanske Institut</repository>
 <idno>AM 45 fol.</idno>
 <msName xml:lang="la">Codex Frisianus</msName>
 <msName xml:lang="is">Fríssbók</msName>
</msIdentifier>
Here the globally available xml:lang attribute has been used to specify the language of the alternative names.
In very rare cases a repository may have only one manuscript (or only one of any significance), which will have no shelfmark as such but will be known by a particular name or names. In such circumstances, the idno element may be omitted, and the manuscript identified by the name or names used for it, using one or more msName elements, as in the following example:
<msIdentifier>
 <settlement>Rossano</settlement>
 <repository xml:lang="it">Biblioteca arcivescovile</repository>
 <msName xml:lang="la">Codex Rossanensis</msName>
 <msName xml:lang="la">Codex purpureus</msName>
 <msName xml:lang="en">The Rossano Gospels</msName>
</msIdentifier>
Where manuscripts have moved from one institution to another, or even within the same institution, they may have identifiers additional to the ones currently used, such as former shelfmarks, which are sometimes retained even after they have been officially superseded. In such cases it may be useful to supply an alternative identifier using the altIdentifier element, which has a detailed structure similar to that of the msIdentifier element, and an additional attribute type to indicate what kind of alternative identifier this is. Only the following possibilities are envisaged:
former
former catalogue or shelf number
partial
identifier of a previously distinct item
internal
internal project identifier
other
other unspecified identifier
Element altIdentifier change
The following example shows a manuscript which had shelfmark II-M-5 in the collection of the Duque de Osuna, but which now has the shelfmark MS 10237 in the National Library in Madrid:
<msIdentifier>
 <settlement>Madrid</settlement>
 <repository>Biblioteca Nacional</repository>
 <idno>MS 10237</idno>
 <altIdentifier type="former">
  <region type="state">Andalucia</region>
  <settlement>Osuna</settlement>
  <repository>Duque de Osuna</repository>
  <idno>II-M-5</idno>
 </altIdentifier>
</msIdentifier>
Alternatively, such information may be dealt with under history or adminInfo, except in cases where a manuscript is likely still to be referred to or known by its former identifier.
Cases of such changed or alternative identifiers should be clearly distinguished from cases of ‘scattered’ manuscripts, that is to say manuscripts which although physically disjoint are nevertheless generally treated as single units. One well-known example is the Old Church Slavonic manuscript known as Codex Suprasliensis, substantial parts of which are to be found in three separate repositories, in Ljubljana, Warsaw, and St. Petersburg. This should be represented using three distinct altIdentifier elements, using the value partial on the type attribute to indicate that these three identifiers are not alternate ways of referring to the same physical object, but three parts of the same entity.
<msIdentifier>
 <msName xml:lang="la">Codex Suprasliensis</msName>
 <altIdentifier type="partial">
  <settlement>Ljubljana</settlement>
  <repository>Narodna in univerzitetna knjiznica</repository>
  <idno>MS Kopitar 2</idno>
  <note>Contains ff. 10 to 42 only</note>
 </altIdentifier>
 <altIdentifier type="partial">
  <settlement>Warszawa</settlement>
  <repository>Biblioteka Narodowa</repository>
  <idno>BO 3.201</idno>
 </altIdentifier>
 <altIdentifier type="partial">
  <settlement>Sankt-Peterburg</settlement>
  <repository>Rossiiskaia natsional'naia biblioteka</repository>
  <idno>Q.p.I.72</idno>
 </altIdentifier>
</msIdentifier>

As mentioned above, the smallest possible description is one that contains only the element msIdentifier; good practice in all but exceptional circumstances requires the presence within it of the three sub-elements settlement, repository, and idno, since they provide what is, by common consent, the minimum amount of information necessary to identify a manuscript.

1.3 The Manuscript Heading

Historically, the briefest possible meaningful description of a manuscript consists of no more than a title, e.g. Polychronicon. This will often have been enough to identify a manuscript in a small collection because the identity of the author is implicit. Where a title does not imply the author, and is thus insufficient to identify the main text of a manuscript, the author should be stated explicitly (e.g. Augustinus, Sermones or Cicero, Letters). Many inventories of manuscripts consist of no more than an author and title, with some form of copy-specific identifier, such as a shelfmark or ‘secundo folio’ reference (e.g. Arch. B. 3. 2: Evangelium Matthei cum glossa, 126. Isidori Originum libri octo, Biblia Hieronimi, 2o fo. opus est); information on date and place of writing will sometimes also be included. The standard TEI element head element can be used to provide a brief description of this kind.
  • head (titolo) contiene qualsiasi tipo di titolo, per esempio il titolo di una sezione, di una lista, di un glossario, di una descrizione di manoscritto, ecc.
In this way the cataloguer or scholar can supply in one place a minimum of essential information, such as might be displayed or printed as the heading of a full description.

Phrase-level elements, such as title, name, date, or the specialized elements origPlace and origDate, can also be used within a head element, but it should be remembered that the head element is intended principally to contain a heading. More structured information concerning the contents, physical form, or history of the manuscript should be given within the specialized elements described below, msContents, physDesc, history, etc. However, in simple cases, the p element may also be used to supply an unstructured collection of such information, as in the example given above ( 1 Manuscript Description Metadata.

A manuscript may often contain multiple works by multiple authors. The head element should only be used to provide summary information:
<head>
 <author>Hildegard of Bingen</author> et alii, <title>Opera varia</title>; <origPlace>Heidelberg</origPlace>, <origDate>1455</origDate>.
</head>
which should be supported by a more detailed description using the msContents element described in the next section.

1.4 Intellectual Content

The msContents element is used to describe the intellectual content of a manuscript or manuscript part. It comprises either a series of informal prose paragraphs or a series of msItem elements, each of which provides a more detailed description of a single item contained within the manuscript. These may be prefaced, if desired, by a summary element, which is especially useful where one wishes to provide an overview of a manuscript's contents and describe only some of the items in detail.
  • msContents (contenuto del manoscritto) descrive il contenuto intellettuale di un manoscritto o di una sua parte tramite una serie di paragrafi o brani del manoscritto
  • msItem (parte di manoscritto) descrive una singola opera o oggetto all'interno del contenuto intellettuale di un manoscritto o di una sua parte
In the simplest case, only a brief description may be provided, as in the following examples:
<msContents>
 <p>A collection of Lollard sermons</p>
</msContents>
<msContents>
 <p>Atlas of the world from Western Europe and Africa to Indochina,
   containing 27 maps and 26 tables</p>
</msContents>
<msContents>
 <p>Biblia sacra: Antiguo y Nuevo Testamento, con prefacios, prólogos
   y argumentos de san Jerónimo y de otros. Interpretaciones de los
   nombres hebreos.</p>
</msContents>
This description may of course be expanded to include any of the TEI elements generally available within a p element, such as title, bibl, or list. More usually, however, each individual work within a manuscript will be given its own description, using the msItem element described in the next section, as in the following example:
<msContents>
 <msItem n="1">
  <locus>fols. 5r -7v</locus>
  <title>An ABC</title>
  <bibl>
   <title>IMEV</title>
   <biblScope type="pages">239</biblScope>
  </bibl>
 </msItem>
 <msItem n="2">
  <locus>fols. 7v -8v</locus>
  <title xml:lang="fr">Lenvoy de Chaucer a Scogan</title>
  <bibl>
   <title>IMEV</title>
   <biblScope type="pages">3747</biblScope>
  </bibl>
 </msItem>
 <msItem n="3">
  <locus>fol. 8v</locus>
  <title>Truth</title>
  <bibl>
   <title>IMEV</title>
   <biblScope type="pages">809</biblScope>
  </bibl>
 </msItem>
 <msItem n="4">
  <locus>fols. 8v-10v</locus>
  <title>Birds Praise of Love</title>
  <bibl>
   <title>IMEV</title>
   <biblScope type="pages">1506</biblScope>
  </bibl>
 </msItem>
 <msItem n="5">
  <locus>fols. 10v -11v</locus>
  <title xml:lang="la">De amico ad amicam</title>
  <title xml:lang="la">Responcio</title>
  <bibl>
   <title>IMEV</title>
   <biblScope type="pages">16 &amp; 19</biblScope>
  </bibl>
 </msItem>
 <msItem n="6">
  <locus>fols. 14r-126v</locus>
  <title>Troilus and Criseyde</title>
  <note>Bk. 1:71-Bk. 5:1701, with additional losses due to
     mutilation throughout</note>
 </msItem>
</msContents>

1.4.1 The <msItem> Element

Each discrete item in a manuscript or manuscript part can be described within a distinct msItem and may be classified using the class attribute.

These are the possible component elements of msItem
  • author in un riferimento bibliografico contiene il nome dell'autore (o degli autori), personale o collettivo, di un'opera; è la dichiarazione di responsabilità primaria di ciascuna unità bibliografica.
  • respStmt (dichiarazione di responsabilità) fornisce una dichiarazione di responsabilità per qualcuno responsabile del contenuto intelletuale di un testo, curatela, registrazione o collana, nel caso in cui gli elementi specifici per autore, curatore ecc. non sono sufficienti o non applicabili.
  • title contiene il titolo completo di una qualsiaisi opera.
  • rubric contiene il testo di eventuali titoli in rosso o titoli assegnati a una determinata porzione di manoscritto; si tratta di stringhe di parole che segnalano l'inizio di una partizione testuale; tali stringhe sono solitamente evidenziate rispetto al resto tramite inchiostro rosso, diverso stile o diversa dimensione del carattere, o altro espediente grafico
  • incipit contiene l' incipit di un manoscritto, cioè le prime parole del testo propriamente detto, a eccezione di eventuali titoli in rosso che lo precedono; gli incipit hanno una lunghezza sufficiente a deteminare di quale opera si tratti e, anticamente, erano spesso utilizzati per riferirsi alle opere stesse al posto di eventuali titoli
  • quote (citazione) contiene una frase o un brano attribuito dall'autore o dal narratore a soggetti esterni al testo
  • explicit contiene l' explicit di un manoscritto, ovvero le parole di chiusura del testo vero e proprio, a esclusione di eventuali titoli in rosso o colophon successivi
  • finalRubric contiene una stringa di parole che segnala la fine di una partizione testuale e spesso ne dichiara autore e titolo; tale stringa è solitamente evidenziata rispetto al resto tramite inchiostro rosso, diverso stile o diversa dimensione del carattere, o altro espediente grafico
  • colophon contiene il colophon di un manoscritto, ovvero una dichiarazione contenente informazioni relative a data, luogo, committente, o motivo della produzione del manoscritto
  • decoNote (nota sulla decorazione) contiene una nota che descrive una componente decorativa di un manoscritto o una classe ragionevolmente omogenea di tali componenti
  • listBibl (lista di citazioni) contiene una lista di citazioni bibliografiche di qualsiasi natura.
  • bibl (citazione bibliografica) contiene una citazione bibliografica strutturata liberamente i cui componeneti potrebbero o meno essere codificati esplicitamente.
  • filiation contiene informazioni relative alla filiazione del manoscritto, cioè la sua relazione con altri manoscritti sopravvissuti per lo stesso testo, cioè i suoi protografi, antigrafi e apografi
  • note contiene una nota o un'annotazione
  • textLang (lingua del testo) descrive le lingue e i sistemi di scrittura usati da un manoscritto (da non confondere con la descrizione contenuta nell'elemento langUsage
If early printed material or incunables are described using this schema, the msItem should be used to record details of each distinct work contained by the incunable. In this situation, the following extra elements may be found useful to transcribe relevant details from the original titlepage:
  • docAuthor (autore del documento) contiene il nome dell'autore del documento, come indicato nel frontespizio (spesso ma non sempre contenuto all'interno dell'elemento byline)
  • docTitle (titolo del documento) contiene il titolo del documento in tutti i suoi elementi costitutivi, come specificato nel frontespizio
  • docImprint (sigla editoriale del documento) contiene la dichiarazione di pubblicazione (luogo e data di pubblicazione, casa editrice) così come riportata di norma in fondo al frontespizio
These elements are also available within the msItem element.

In addition, an msItem may contain nested msItem elements.

Untagged running text is not permitted directly within an msItem, unless it is given within a p element, in which case none of the other component elements listed above is permitted.

The elements msContents, msItem, incipit, and explicit are all members of the class att.msExcerpt from which they inherit the defective attribute.
  • att.msExcerpt (estratto di manoscritto) assegna degli attributi utilizzati per descrivere estratti di un manoscritto inseriti in una descrizione dello stesso
    defective indica se il brano citato sia o meno incompleto a causa di perdite o danni
This attribute can be used for example with collections of fragments, where each fragment is given as a separate msItem and the first and last words of each fragment are transcribed as defective incipits and explicits.

1.4.2 Authors and Titles

When used within a manuscript description, the title element should be used to supply a regularized form of the item's title, as distinct from any rubric quoted from the manuscript. If the item concerned has a standardized distinctive title, e.g. Roman de la Rose, then this should be the form given as content of the title element, with the value of the type attribute given as uniform. If no uniform title exists for an item, or none has been yet identified, or if one wishes to provide a general designation of the contents, then a ‘supplied’ title can be given, e.g. missal, in which case the type attribute on the title should be given the value supplied.

Similarly, if used within a manuscript description, the author element should always contain the normalized form of an author's name, irrespective of how (or whether) this form of the name is cited in the manuscript. If it is desired to retain the form of the author's name as given in the manuscript, this should be given in the docAuthor element, or as a distinct name element, within the text at the point where it occurs.

Note that the key or ref attributes can be used, on titles and on author names as on names in general, to link the name to a more detailed description of the person or work concerned (see further 1.1.6 Names of Persons, Places, and Organizations).

The respStmt element can be used to supply the name and role of a person other than the author who is responsible for some aspect of the intellectual content of the manuscript:
<author>Diogenes Laertius</author>
<respStmt>
 <resp>in the translation of</resp>
 <name type="person">Ambrogio Traversari</name>
</respStmt>
The resp element is also a member of the att.canonical class, from which it inherits the key attribute. For ENRICH purposes, this may be used to supply a standard relationship code for the kind of responsibility concerned, as defined in the list maintained at http://www.loc.gov/marc/relators/relacode.html :
<respStmt>
 <resp key="trl">přeložil</resp>
 <name type="person">John Enrich</name>
</respStmt>
The respStmt element can also be used where there is a discrepancy between the author of an item as given in the manuscript and the accepted scholarly view, as in the following example:
<title type="supplied">Sermons on the Epistles and the Gospels</title>
<respStmt>
 <resp>here erroneously attributed to</resp>
 <name type="person">St. Bonaventura</name>
</respStmt>
Note that such attributions of authorship, both correct and incorrect, are frequently found in the rubric or final rubric (and occasionally also elsewhere in the text), and can therefore be transcribed and included in the description, if desired, using the rubric, finalRubric, or quote elements, as appropriate.

1.4.3 Rubrics, Incipits, Explicits, and Other Quotations from the Text

It is customary in a manuscript description to record the opening and closing words of a text as well as any headings or colophons it might have, and the specialised elements rubric, incipit, explicit, finalRubric, and colophon are available within msItem for doing so, along with the more general quote, for recording other bits of the text not covered by these elements. Each of these elements has the same substructure, containing a mixture of phrase-level elements and plain text. A locus element can be included within each, in order to specify the location of the component, as in the following example:
<msContents>
 <msItem>
  <locus>f. 1-223</locus>
  <author>Radulphus Flaviacensis</author>
  <title>Expositio super Leviticum </title>
  <incipit>
   <locus>f. 1r</locus>
     Forte Hervei monachi</incipit>
  <explicit>
   <locus>f. 223v</locus>
     Benedictio salis et aquae</explicit>
 </msItem>
</msContents>
In the following example, standard TEI elements for the transcription of primary sources have been used to mark the expansion of abbreviations and other features present in the original:
<msItem defective="true">
 <locus>ff. 1r-24v</locus>
 <title type="uniform">Ágrip af Noregs konunga sǫgum</title>
 <incipit defective="true">
  <lb/>regi oc h<ex>ann</ex> seti
   ho<gap reason="illegible" quantity="7" unit="mm"/>
  <lb/>sc heim se<ex>m</ex> þio</incipit>
 <explicit defective="true">h<ex>on</ex> hev<ex>er</ex>
  <ex>oc</ex> þa buit hesta .ij. <lb/>annan viþ fé en
   h<ex>on</ex>o<ex>m</ex> annan til reiþ<ex>ar</ex>
 </explicit>
</msItem>
Note here also the use of the defective attribute on incipit and explicit to indicate that the text begins and ends defectively.

The xml:lang attribute for colophon, explicit, incipit, quote, and rubric may always be used to identify the language of the text quoted, if this is different from the default language specified by the mainLang attribute on textLang.

1.4.4 Filiation

The filiation element can be used to provide information on the relationship between the manuscript and other surviving manuscripts of the same text, either specifically or in a general way, as in the following example:
<msItem>
 <locus>118rb</locus>
 <incipit>Ecce morior cum nichil horum ... <ref>[Dn 13, 43]</ref>. Verba ista dixit Susanna de illis</incipit>
 <explicit>ut bonum comune conservatur.</explicit>
 <bibl>Schneyer 3, 436 (Johannes Contractus OFM)</bibl>
 <filiation>weitere Überl. Uppsala C 181, 35r.</filiation>
</msItem>

1.4.5 Text Classification

One or more text classification or text-type codes may be specified, either for the whole of the msContents element, or for one or more of its constituent msItem elements, using the class attribute as specified above:
<msContents>
 <msItem n="1" defective="false" class="#law">
  <locus from="1v" to="71v">1v-71v</locus>
  <title type="uniform">Jónsbók</title>
  <incipit>Magnus m<ex>ed</ex> guds miskun Noregs
     k<ex>onungu</ex>r</incipit>
  <explicit>en<ex>n</ex> u<ex>ir</ex>da
     þo t<ex>il</ex> fullra aura</explicit>
 </msItem>
</msContents>
The value of the class attribute should specify the identifier used for the appropriate classification within a taxonomy element, defined in the classDecl element of the TEI Header ( http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD55 ), as shown here:
<classDecl>
 <taxonomy>
<!-- -->
  <category xml:id="law">
   <catDesc>Laws</catDesc>
  </category>
<!-- -->
 </taxonomy>
</classDecl>

1.4.6 Languages and Writing Systems

The textLang element should be used to provide information about the languages used within a manuscript item. It may take the form of a simple note, as in the following example:
<textLang mainLang="chu">Old Church Slavonic, written in Cyrillic script.</textLang>
Element textLang change
For validation and indexing purposes, the mainLang attribute must be supplied: it takes the same range of values as the global xml:lang attribute. When a manuscript item contains material in more than one language, the mainLang attribute should be used only for the chief language. Other languages used may be specified using the otherLangs attribute as in the following example:
<textLang mainLang="chu" otherLangs="RUS HEL">Mostly Old Church
Slavonic, with some Russian and Greek material</textLang>
Since Old Church Slavonic may be written in either Cyrillic or Glagolitic scripts, and even occasionally in both within the same manuscript, it might be preferable to use a more explicit identifier:
<textLang mainLang="chu-Cyrs">Old Church Slavonic in Cyrillic script</textLang>

The form and scope of language identifiers recommended by these Guidelines is based on the IANA standard described at http://www.tei-c.org/release/doc/tei-p5-doc/html/CH.html#CHSH and should be followed throughout. Where additional detail is needed correctly to describe a language, or to discuss its deployment in a given text, this should be done using the langUsage element in the TEI Header, within which individual language elements document the languages used: see http://www.tei-c.org/release/doc/tei-p5-doc/en/html/HD.html#HD41 .

Note that the language element defines a particular combination of human language and writing system. Only one language element may be supplied for each such combination. Standard TEI practice also allows this element to be referenced by any element using the global xml:lang attribute in order to specify the language applicable to the content of that element. For example, assuming that language elements have been defined with the identifiers fr (for French), la (for Latin), and de (for German), a manuscript description written in French which specifies that a particular manuscript contains predominantly German but also some Latin material, might have a textLang element like the following:
<textLang xml:lang="fr" mainLang="de" otherLangs="la">allemand et latin</textLang>

1.5 Physical Description

Under the general heading ‘physical description’ we subsume a large number of different aspects generally regarded as useful in the description of a given manuscript. These include:

Most manuscript descriptions touch on several of these categories of information though few include them all, and not all distinguish them as clearly as we propose here. In particular, it is often the case that an existing description will include within a single paragraph, or even sentence, information for which we propose distinct elements. In this case, if rewriting is not an option, the existing prose must be marked up simply as a series of p elements, directly within the physDesc element.

The physDesc element may thus be used in either of two distinct ways. It may contain a series of paragraphs addressing topics listed above and similar ones. Alternatively, it may act as a container for any choice of the more specialized elements described in the remainder of this section, each of which itself contains a series of paragraphs, and may also have more specific attributes. If the two ways are combined in a single description, care should be taken to avoid duplication and all paragraphs of generic description must precede the first of the more specialised elements.

1.5.1 Object Description

The objectDesc element is used to group together those parts of the physical description which relate specifically to the text-bearing object, its format, constitution, layout, etc. The form attribute is used to indicate the specific type of writing vehicle being described: it must be supplied, and its value must be one of codex, scroll, leaf, or other. If no value is supplied, the value codex will be assumed.
Element objectDesc change
The objectDesc element has two parts: a description of the support, i.e. the physical carrier on which the text is inscribed; and a description of the layout, i.e. the way text is organized on the carrier.
Taking these in turn, the description of the support is tagged using the following elements, each of which is discussed in more detail below:
  • supportDesc (descrizione del supporto) raggruppa gli elementi che descrivono il supporto fisico della parte scritta di un manoscritto
    material un nome breve definito nell'ambito di un progetto e riferito al materiale che costituisce la maggior parte del supporto
  • support contiene una descrizione dei materiali, ecc. che costituiscono il supporto fisico della parte scritta di un manoscritto
  • extent descrive la grandezza approssimativa di un documento elettronico così come immagazzinata su supporto, secondo una qualsiasi unità funzionale.
  • collation contiene una descrizione di come i fogli o bifolia siano fisicamente disposti
  • foliation descrive il sistema o i sistemi di numerazione usati per contare i fogli o le pagine di un codice
  • condition contiene una descrizione della condizione fisica del manoscritto

Each of these elements contains paragraphs relating to the topic concerned. Within these paragraphs, phrase-level elements (in particular those discussed above at 1.1 Phrase-level Elements), may be used to tag specific terms of interest if so desired.

The form attribute on supportDesc is used to summarize briefly the materials used for the support. For ENRICH purposes, it must have one of the following values: perg (parchment), chart (paper), mixed, unknown.
Element supportDesc change
Here is a simple example:
<objectDesc form="codex">
 <supportDesc material="mixed">
  <p>Mostly <material>paper</material>, with watermarks
  <watermark>unicorn</watermark> (<ref>Briquet 9993</ref>) and
  <watermark>ox</watermark> (close to <ref>Briquet 2785</ref>).
     The first and last leaf of each quire, with the exception of
     quires xvi and xviii, are constituted by bifolia of parchment,
     and all seven miniatures have been painted on inserted
     singletons of parchment.</p>
 </supportDesc>
</objectDesc>

This example combines information which might alternatively be more precisely tagged using the more specific elements described in the following subsections.

1.5.1.1 Support
The support element groups together information about the physical carrier. Typically, for western manuscripts, this will entail discussion of the material (parchment, paper, or a combination of the two) written on. For paper, a discussion of any watermarks present may also be useful. If this discussion makes reference to standard catalogues of such items, these may be tagged using the standard ref element as in the following example:
<support>
 <p>
  <material>Paper</material> with watermark: <watermark>anchor in a circle
     with star on top</watermark>, <watermark>countermark B-B with
     trefoil</watermark> similar to <ref>Moschin, Anchor N 1680</ref>
  <date>1570-1585</date>.</p>
</support>
1.5.1.2 Extent
The extent element, defined in the TEI header, may also be used in a manuscript description to specify the number of leaves a manuscript contains, as in the following example:
<extent>ii + 97 + ii</extent>
Information regarding the size of the leaves may be specifically marked using the phrase level dimensions element, as in the following example, or left as plain prose.
<extent>ii + 321 leaves
<dimensions type="leaf" unit="cm">
  <height>35</height>
  <width>27</width>
 </dimensions>
</extent>
1.5.1.3 Collation
The collation element should be used to provide a description of a book's current and original structure, that is, the arrangement of its leaves and quires. This information may be conveyed using informal prose, or any appropriate notational convention. Although no specific notation is defined here, an appropriate element to enclose such an expression would be the formula element, which is provided when the figures module is included in a schema. Here are some examples of different ways of treating collation:
<collation>
 <p>
  <formula>1-3:8, 4:6, 5-13:8</formula>
 </p>
</collation>
<collation>
 <p>There are now four gatherings, the first, second and fourth originally consisting of
   eight leaves, the third of seven. A fifth gathering thought to have followed has left no trace.
 <list>
   <item>Gathering I consists of 7 leaves, a first leaf, originally conjoint with <locus>fol. 7</locus>,
       having been cut away leaving only a narrow strip along the gutter; the others, <locus>fols 1</locus>
       and <locus>6</locus>, <locus>2</locus> and <locus>5</locus>, and <locus>3</locus> and <locus>4</locus>,
       are bifolia.</item>
   <item>Gathering II consists of 8 leaves, 4 bifolia.</item>
   <item>Gathering III consists of 7 leaves; <locus>fols 16</locus> and <locus>22</locus> are conjoint,
       the others singletons.</item>
   <item>Gathering IV consists of 2 leaves, a bifolium.</item>
  </list>
 </p>
</collation>
<collation>
 <p>I (1, 2+9, 3+8, 4+7, 5+6, 10); II (11, 12+17, 13, 14, 15, 16, 18, 19).</p>
</collation>
<collation>
 <p>
  <formula>1-5.8 6.6 (catchword, f. 46, does not match following
     text) 7-8.8 9.10, 11.2 (through f. 82) 12-14.8 15.8(-7)</formula>
 </p>
</collation>
1.5.1.4 Foliation
The foliation element may be used to indicate the scheme, medium or location of folio, page, column, or line numbers written in the manuscript, frequently including a statement about when and, if known, by whom, the numbering was done.
<foliation>
 <p>Neuere Foliierung, die auch das Vorsatzblatt mitgezählt hat.</p>
</foliation>
<foliation>
 <p>Folio numbers were added in brown ink by Árni Magnússon
   ca. 1720-1730 in the upper right corner of all recto-pages.</p>
</foliation>
Where a manuscript contains traces of more than one foliation, each should be recorded as a distinct foliation element and optionally given a distinct value for its xml:id attribute. The locus element discussed in 1.1.5 References to Locations within a Manuscript can then indicate which foliation scheme is being cited by means of its scheme attribute, which points to this identifier:
<foliation xml:id="original">
 <p>Original foliation in red roman numerals in the middle of
   the outer margin of each recto</p>
</foliation>
<foliation xml:id="modern">
 <p>Foliated in pencil in the top right
   corner of each recto page.</p>
</foliation>
<!-- ... -->
<locus scheme="#modern">ff 1-20</locus>
1.5.1.5 Condition
The condition element is used to summarize the overall physical state of a manuscript, in particular where such information is not recorded elsewhere in the description. It should not, however, be used to describe changes or repairs to a manuscript, as these are more appropriately described as a part of its custodial history (see 1.7.1.2 Availability and Custodial History). When used solely to describe the condition of the binding, it should appear within the bindingDesc element ( 1.5.3.1 Binding Descriptions).
<supportDesc>
 <condition>
  <p>The manuscript shows signs of damage from water and mould on its outermost leaves.</p>
 </condition>
</supportDesc>
<condition>
 <p>Despite tears on many of the leaves the codex is reasonably well preserved.
   The top and the bottom of f. 1 is damaged, and only a thin slip is left of the original second
   leaf (now foliated as 1bis). The lower margin of f. 92 has been cut away. There is a lacuna of
   one leaf between ff. 193 and 194. The manuscript ends defectively (there are approximately six
   leaves missing).</p>
</condition>
1.5.1.6 Layout Description
The second part of the objectDesc element is the layoutDesc element, which is used to describe and document the mise-en-page of the manuscript, that is the way in which text and illumination are arranged on the page, specifying for example the number of written, ruled, or pricked lines and columns per page, size of margins, distinct blocks such as glosses, commentaries, etc. This may be given as a simple series of paragraphs. Alternatively, one or more different layouts may be identified within a single manuscript, each described by its own layout element.
  • layoutDesc (descrizione dell'impaginazione) raggruppa l'insieme delle descrizioni dell'impaginazione relative a un manoscritto
  • layout descrive la disposizione del testo sulla pagina, ivi comprese eventuali informazioni su rigatura, applicazione di indicazioni per foratura, o altri segni di tecniche di preparazione della pagina

Where the layout element is used, the layout will often be sufficiently regular for the attributes on this element to convey all that is necessary; more usually however a more detailed treatment will be required. The attributes are provided as a convenient shorthand for commonly occurring cases, and should not be used except where the layout is regular. The value NA (not-applicable) should be used for cases where the layout is either very irregular, or where it cannot be characterized simply in terms of lines and columns, for example, where blocks of commentary and text are arranged in a regular but complex pattern on each page

The following examples indicate the range of possibilities:
<layout ruledLines="25 32" columns="1">
 <p>Most pages have between 25 and 32 long lines ruled in lead.</p>
</layout>
<layout columns="1" writtenLines="24">
 <p>Written in one column throughout; 24 lines per page.</p>
</layout>
<layout columns="1">
 <p>Written in a single column, with 8 lines of text and interlinear glosses in
   the centre, and up to 26 lines of gloss in the outer two columns. Double
   vertical bounding lines ruled in hard point on hair side. Text lines ruled
   faintly in lead. Remains of prickings in upper, lower, and outer (for 8 lines
   of text only) margins.</p>
</layout>
Note that if (as in the last example above) no value is given for the columns attribute, the assumption is that there is a single column of writing on each page.
Element layout change
Where multiple layout elements are supplied, the scope for each specification can be indicated by means of locus elements within the content of the element, as in the following example:
<layoutDesc>
 <layout ruledLines="25 32" columns="1">
  <p>On <locus from="1r" to="202v">fols 1r-200v</locus> and
  <locus from="210r" to="212v">fols 210r-212v</locus> there are
     between 25 and 32 ruled lines.</p>
 </layout>
 <layout ruledLines="34 50" columns="1">
  <p>On <locus from="203r" to="209v">fols 203r-209v</locus> there are between 34
     and 50 ruled lines.</p>
 </layout>
</layoutDesc>

1.5.2 Writing, Decoration, and Other Notations

The second group of elements within a structured physical description concerns aspects of the writing, illumination, or other notation (notably, music) found in a manuscript, including additions made in later hands — the ‘text’, as it were, as opposed to the carrier.
  • handDesc (descrizione delle mani) contiene una descrizione dei diversi tipi di scrittura usati in un manoscritto
    hands specifica il numero delle diverse mani identificate all'interno del manoscritto
  • handNote (nota sulla mano) descrive un determinato stile o una determinata mano all'interno di un manoscritto
    script caratterizza un determinato stile di scrittura utilizzato dalla mano in questione, per esempio segretario, incisione su rame, Chancery, italiano, ecc.
    scope specifica in quale misura è utilizzata la mano in questione nel manoscritto
  • typeDesc contains a description of the typefaces or other aspects of the printing of an incunable or other printed source.
  • typeNote describes a particular font or other significant typographic feature distinguished within the description of a printed resource.
  • decoDesc (descrizione della decorazione) contiene una descrizione della decorazione di un manoscritto in forma di sequenza di paragrafi oppure di sequenza di elementi decoNote organizzati per argomento
  • decoNote (nota sulla decorazione) contiene una nota che descrive una componente decorativa di un manoscritto o una classe ragionevolmente omogenea di tali componenti
  • musicNotation contiene una descrizione del tipo di annotazione musicale
  • additions contiene un descrizione di qualsiasi aggiunta significativa trovata all'interno di un manoscritto come note a margine o altre annotazioni
1.5.2.1 Writing
The handDesc element can contain a short description of the general characteristics of the writing observed in a manuscript, as in the following example:
<handDesc>
 <p>Written in a <term>late Caroline minuscule</term>; versals in a
   form of <term>rustic capitals</term>; although the marginal and
   interlinear gloss is written in varying shades of ink that are
   not those of the main text, text and gloss appear to have been
   copied during approximately the same time span.</p>
</handDesc>

Note the use of the term element to mark specific technical terms within the context of the handDesc element.

Where several distinct hands have been identified, this fact can be registered by using the hands attribute, as in the following example:
<handDesc hands="2">
 <p>The manuscript is written in two contemporary hands, otherwise
   unknown, but clearly those of practised scribes. Hand I writes
   ff. 1r-22v and hand II ff. 23 and 24. Some scholars, notably
   Verner Dahlerup and Hreinn Benediktsson, have argued for a third hand
   on f. 24, but the evidence for this is insubstantial.</p>
</handDesc>
Where more specific information about one or more of the hands identified is to be recorded, the handNote element should be used, as in the following example:
<handDesc hands="3">
 <handNote xml:id="Eirsp-1" scope="minor" script="textualis">
  <p>The first part of the manuscript,
  <locus from="1v" to="72v:4">fols 1v-72v:4</locus>, is written in a practised
     Icelandic Gothic bookhand. This hand is not found elsewhere.</p>
 </handNote>
 <handNote xml:id="Eirsp-2" scope="major" script="textualis">
  <p>The second part of the manuscript, <locus from="72v:4" to="194v">fols
       72v:4-194</locus>, is written in a hand contemporary with the first; it can
     also be found in a fragment of <title>Knýtlinga saga</title>,
  <ref>AM 20b II fol.</ref>.</p>
 </handNote>
 <handNote xml:id="Eirsp-3" scope="minor" script="cursiva">
  <p>The third hand has written the majority of the chapter headings.
     This hand has been identified as the one also found in <ref>AM
       221 fol.</ref>.</p>
 </handNote>
</handDesc>

As the above example shows, the attributes script and scope are both required on handNote. For ENRICH purposes, the script attribute must take one of the following values: carolmin, textualis, cursiva, hybrida, humbook, humcursiva, or other, and the scope attribute must take one of the following values: sole, major, minor.

If early printed material or incunables are described using this schema, the typeDesc and typeNote elements may be used (in the same way as handDesc and handNote) to record information about the typefaces etc. of interest in the source.
<typeDesc>
 <summary>Uses a mixture of Roman and Black Letter types.</summary>
 <typeNote>Antiqua typeface, showing influence of Jenson's Venetian
   fonts.</typeNote>
 <typeNote>The black letter face is a variant of Schwabacher.</typeNote>
</typeDesc>
Both typeDesc and handDesc may be supplied, for example in the case where a printed work has been annotated by a number of hands.

The locus element, discussed in section 1.1.5 References to Locations within a Manuscript, may be used to specify which parts of a manuscript are written by a given hand.

In addition, when a full or partial transcription of a manuscript is available in addition to the manuscript description, the handShift element described in http://www.tei-c.org/release/doc/tei-p5-doc/en/html/PH.html#PHDH can be used to link the relevant parts of the transcription to the appropriate handNote or typeNote element in the description: for example, at the point in the transcript where the second hand listed above starts (i.e. at folio 72v:4), we might insert <handShift new="#Eirsp-2"/>.

No <typeShift> element is proposed; if it is felt inappropriate to use handShift for this purpose, the generic <mileStone> may be used.

1.5.2.2 Decoration

It can be difficult to draw a clear distinction between aspects of a manuscript which are purely physical and those which form part of its intellectual content. This is particularly true of illuminations and other forms of decoration in a manuscript. We propose the following elements for the purpose of delimiting discussion of these aspects within a manuscript description, and for convenience locate them all within the physical description, despite the fact that the illustrative features of a manuscript will in many cases also be seen as constitutiing part of its intellectual content.

The decoDesc element may contain simply one or more paragraphs summarizing the overall nature of the decorative features of the manuscript, as in the following example:
<decoDesc>
 <p>The decoration comprises two full page miniatures, perhaps added
   by the original owner, or slightly later; the original major decoration
   consists of twenty-three large miniatures, illustrating the divisions of
   the Passion narrative and the start of the major texts, and the major
   divisions of the Hours; seventeen smaller miniatures, illustrating the
   suffrages to saints; and seven historiated initials, illustrating
   the pericopes and major prayers.</p>
</decoDesc>
Alternatively, it may contain a series of more specific typed decoNote elements, each summarizing a particular aspect or individual instance of the decoration present, for example the use of miniatures, initials (historiated or otherwise), borders, diagrams, etc. The scope of the description is indicated by the type attribute which, for ENRICH purposes, must take one of the following values: border, diagram, initial, marginal, miniature, mixed, paratext, secondary, other.
Element decoNote change
Here is a simple example:
<decoDesc>
 <decoNote type="miniature">
  <p>One full-page miniature, facing the beginning of the first
     Penitential Psalm.</p>
 </decoNote>
 <decoNote type="initial">
  <p>One seven-line historiated initial, commencing the first
     Penitential Psalm.</p>
 </decoNote>
 <decoNote type="initial">
  <p>Six four-line decorated initials, commencing the second through the
     seventh Penitential Psalm.</p>
 </decoNote>
 <decoNote type="initial">
  <p>Some three hundred two-line versal initials with pen-flourishes,
     commencing the psalm verses.</p>
 </decoNote>
 <decoNote type="border">
  <p>Four-sided border decoration surrounding the miniatures and three-sided
     border decoration accompanying the historiated and decorated initials.</p>
 </decoNote>
</decoDesc>
Where more exact indexing of the decorative content of a manuscript is required, the standard TEI elements term or index may be used within the prose description to supply or delimit appropriate iconographic terms, as in the following example:
<decoDesc>
 <decoNote type="miniature">
  <p>Fourteen large miniatures with arched tops, above five lines of text:
  <list>
    <item>
     <locus>fol. 14r</locus>Pericopes. <term>St. John writing on
           Patmos</term>, with the Eagle holding his ink-pot and pen-case; some
         flaking of pigment, especially in the sky</item>
    <item>
     <locus>fol. 26r</locus>Hours of the Virgin, Matins.
    <term>Annunciation</term>; Gabriel and the Dove to the right</item>
    <item>
     <locus>fol. 60r</locus>Prime. <term>Nativity</term>; the
    <term>Virgin and Joseph adoring the Child</term>
    </item>
    <item>
     <locus>fol. 66r</locus>Terce. <term>Annunciation to the
           Shepherds</term>, one with <term>bagpipes</term>
    </item>
<!-- ... -->
   </list>
  </p>
 </decoNote>
</decoDesc>
1.5.2.3 Musical Notation
Where a manuscript contains music, the musicNotation element may be used to describe the form of notation employed, as in the following example:
<musicNotation>
 <p>Square notation on 4-line red staves.</p>
</musicNotation>
<musicNotation>
 <p>Neumes in campo aperto of the St. Gall type.</p>
</musicNotation>
1.5.2.4 Additions and Marginalia
The additions element can be used to list or describe any additions to the manuscript, such as marginalia, scribblings, doodles, etc., which are considered to be of interest or importance. Such topics may also be discussed or referenced elsewhere in a description, for example in the history element, in cases where the marginalia provide evidence of ownership. Some examples follow:
<additions>
 <p>Doodles on most leaves, possibly by children, and often quite amusing.</p>
</additions>
<additions>
 <p xml:lang="fr">Quelques annotations marginales des XVIe et XVIIe s.</p>
</additions>
<additions>
 <p>The text of this manuscript is not interpolated with sentences from
   Royal decrees promulgated in 1294, 1305 and 1314. In the margins, however,
   another somewhat later scribe has added the relevant paragraphs of these
   decrees, see pp. 8, 24, 44, 47 etc.</p>
 <p>As a humorous gesture the scribe in one opening of the manuscript, pp. 36
   and 37, has prolonged the lower stems of one letter f and five letters þ
   and has them drizzle down the margin.</p>
</additions>
<additions>
 <p>Spaces for initials and chapter headings were left by the scribe but not filled in.
   A later, probably fifteenth-century, hand has added initials and chapter headings in
   greenish-coloured ink on fols <locus>8r</locus>, <locus>8v</locus>, <locus>9r</locus>,
 <locus>10r</locus> and <locus>11r</locus>. Although a few of these chapter headings are
   now rather difficult to read, most can be made out, e.g. fol. <locus>8rb</locus>
  <quote xml:lang="is">floti ast<ex>ri</ex>d<ex>ar</ex>
  </quote>; fol. <locus>9rb</locus>
  <quote xml:lang="is">v<ex>m</ex> olaf conung</quote>, and fol. <locus>10ra</locus>
  <quote xml:lang="is">Gipti<ex>n</ex>g ol<ex>a</ex>fs k<ex>onun</ex>gs</quote>.</p>
 <p>The manuscript contains the following marginalia:
 <list>
   <item>Fol. <locus>4v</locus>, left margin: <quote xml:lang="is">hialmadr <ex>ok</ex>
     <lb/>brynjadr</quote>,
       in a fifteenth-cenury hand, imitating an addition made to the text by the scribe at this point.</item>
   <item>Fol. <locus>5r</locus>, lower margin: <quote xml:lang="is">þ<ex>e</ex>tta þiki
         m<ex>er</ex> v<ex>er</ex>a gott blek en<ex>n</ex>da kan<ex>n</ex> ek icki
         betr sia</quote>, in a fifteenth-century hand, probably the same as that on the previous page.</item>
   <item>Fol. <locus>9v</locus>, bottom margin: <quote xml:lang="is">þessa bok uilda eg <sic>gæt</sic>
         lært med <lb/>an Gud gefe myer Gott ad <lb/>læra</quote>; seventeenth-century hand.</item>
  </list>
 </p>
 <p>There are in addition a number of illegible scribbles in a later hand (or hands) on fols
 <locus>2r</locus>, <locus>3r</locus>, <locus>5v</locus> and <locus>19r</locus>.</p>
</additions>

1.5.3 Bindings, Seals, and Additional Material

The third major component of the physical description relates to supporting but distinct physical components, such as bindings, seals and accompanying material. These may be described using the following specialist elements:
  • bindingDesc (descrizione della rilegatura) descrive la legatura attuale e precedente di un manoscritto sotto forma di una serie di paragrafi o di una serie di diversi elementi binding, uno per ogni legatura del manoscritto
  • binding contiene la descrizione di una legatura, cioè del tipo di copertine, tavole, ecc. utilizzate per il manoscritto
  • condition contiene una descrizione della condizione fisica del manoscritto
  • sealDesc (descrizione dei sigilli) descrive i sigilli o altri oggetti esterni applicati a un manoscritto sotto forma di una sequenza di paragrafi o una serie di diversi elementi seal, eventualmente con ulteriori elementi decoNote
  • seal contiene la descrizione di un sigillo o altro oggetto applicato al manoscritto
  • accMat (materiale allegato) contiene eventuali dettagli riguardanti maeriale aggiuntivo strettamente collegato al manoscritto in esame, per esempio documenti non attali o frammenti rilegati insieme al manoscritto in un periodo storico precedente a quello attuale
1.5.3.1 Binding Descriptions
The bindingDesc element contains a description of the state of the present and former bindings of a manuscript, including information about its material, any distinctive marks, and provenance information. This may be given as a series of paragraphs if only one binding is being described, or as a series of distinct binding elements, each describing a distinct binding, where these are separately described. For example:
<bindingDesc>
 <p>Sewing not visible; tightly rebound over 19th-century pasteboards, reusing
   panels of 16th-century brown leather with gilt tooling à la fanfare, Paris
   c. 1580-90, the centre of each cover inlaid with a 17th-century oval medallion
   of red morocco tooled in gilt (perhaps replacing the identifying mark of a
   previous owner); the spine similarly tooled, without raised bands or title-piece;
   coloured endbands; the edges of the leaves and boards gilt. Boxed.</p>
</bindingDesc>
Within a binding description, the elements decoNote and is condition are available as an alternatives to p for paragraphs dealing exclusively with information about decorative features of a binding, as in the following example:
<binding>
 <p>Bound, s. XVIII (?), in <material>diced russia leather</material>
   retaining most of the original 15th century metal ornaments (but with
   some replacements) as well as the heavy wooden boards.</p>
 <decoNote>
  <p>On each cover: alternating circular stamps of the Holy Monogram,
     a sunburst, and a flower.</p>
 </decoNote>
 <decoNote>
  <p>On the cornerpieces, one of which is missing, a rectangular stamp
     of the Agnus Dei.</p>
 </decoNote>
 <condition>Front and back leather inlaid panels very badly worn.</condition>
 <p>Rebacked during the 19th century.</p>
</binding>
1.5.3.2 Seals
The sealDesc element supplies information about the seal(s) attached to documents to guarantee their integrity, or to show authentication of the issuer or consent of the participants. It may contain one or more paragraphs summarizing the overall nature of the seals, or may contain one or more seal elements.
<sealDesc>
 <seal n="1" type="pendant" subtype="cauda_duplex">
  <p>Round seal of <name type="person">Anders Olufsen</name> in black wax:
  <bibl>
    <ref>DAS 930</ref>
   </bibl>. Parchment tag, on which is written:
  <quote>pertinere nos predictorum placiti nostri iusticarii precessorum dif</quote>.</p>
 </seal>
 <seal n="2" type="pendant" subtype="cauda_duplex">
  <p>The seal of <name type="person">Jens Olufsen</name> in black wax:
  <bibl>
    <ref>DAS 1061</ref>
   </bibl>. Legend: <quote>S IOHANNES OLAVI</quote>.
     Parchment tag on which is written: <quote>Woldorp Iohanne G</quote>.</p>
 </seal>
</sealDesc>
1.5.3.3 Accompanying Material
The circumstance may arise where material not originally part of a manuscript is bound into or otherwise kept with a manuscript. In some cases this material would best be treated in a separate msPart element (see 1.8 Manuscript Parts below). There are, however, cases where the additional matter is not self-evidently a distinct manuscript: it might, for example, be a set of notes by a later scholar, or a file of correspondence relating to the manuscript. The accMat element is provided as a holder for this kind of information.
  • accMat (materiale allegato) contiene eventuali dettagli riguardanti maeriale aggiuntivo strettamente collegato al manoscritto in esame, per esempio documenti non attali o frammenti rilegati insieme al manoscritto in un periodo storico precedente a quello attuale
Here is an example of the use of this element, describing a note by the Icelandic manuscript collector Árni Magnússon which has been bound with the manuscript:
<accMat>
 <p>A slip in Árni Magnússon's hand has been stuck to the
   pastedown on the inside front cover; the text reads:
 <quote xml:lang="is">Þidreks Søgu þessa hefi eg
     feiged af Sekreterer Wielandt Anno 1715 i Kaupmanna høfn. Hun er,
     sem eg sie, Copia af Austfirda bókinni (Eidagás) en<ex>n</ex>
     ecki progenies Brædratungu bokarinnar. Og er þar fyrer eigi i
     allan<ex>n</ex> máta samhlioda þ<ex>eir</ex>re er
     Sr Jon Erlendz son hefer ritad fyrer Mag. Bryniolf. Þesse Þidreks
     Saga mun vera komin fra Sr Vigfuse á Helgafelle.</quote>
 </p>
</accMat>

1.6 History

The following elements are used to record information about the history of a manuscript:
  • history raggruppa gli elementi che descrivono la storia completa di un manoscritto o di una sua parte
  • origin contiene informazioni relative all'origine di un manoscritto o di una sua parte
  • provenance contiene informazioni relative a un unico episodio rintracciabile nella storia di un manoscritto o di una sua parte che sia posteriore alla sua creazione ma anteriore rispetto alla sua acquisizione
  • acquisition contiene informazioni relative al processo di acquisizione di un manoscritto o di una sua parte
The three components of the history element all have the same substructure, consisting of one or more paragraphs marked as p elements. Each of these three elements is also a member of the att.datable attribute class, itself a member of the att.datable.w3c class, and thus also carries the following optional attributes:
  • att.datable.w3c indica degli attributi per la normalizzazione di elementi che contengono eventi databili utilizzando i tipi di dati del W3C
    notBefore specifica la prima data possibile per un evento nel formato standard aaaa-mm-gg
    notAfter specifica l'ultima data possibile per un evento nel formato standard aaaa-mm-gg
    from indica l'inizio del periodo nel formato standard
    to indica la fine del periodo nel formato standard
    when indica il valore di una data o di un orario in un formato standard

Information about the origins of the manuscript, its place and date of writing, should be given as one or more paragraphs contained by a single origin element; following this, any available information on distinct stages in the history of the manuscript before its acquisition by its current holding institution should be included as paragraphs within one or more provenance elements. Finally, any information specific to the means by which the manuscript was acquired by its present owners should be given as paragraphs within the acquisition element.

Here is a fairly simple example of the use of this element:
<history>
 <origin>
  <p>Written in <origPlace>Durham</origPlace> during <origDate notBefore="1125" notAfter="1175">the
       mid-twelfth century</origDate>.</p>
 </origin>
 <provenance>
  <p>Recorded in two medieval catalogues of the books belonging
     to <name type="org">Durham Priory</name>, made in <date>1391</date> and
  <date>1405</date>.</p>
  <p>Given to <name type="person">W. Olleyf</name> by <name type="person">William
       Ebchester, Prior (1446-56)</name> and later belonged to <name type="person">Henry
       Dalton</name>, Prior of Holy Island (<name type="place">Lindisfarne</name>)
     according to inscriptions on ff. 4v and 5.</p>
 </provenance>
 <acquisition>
  <p>Presented to <name type="org">Trinity College</name> in
  <date>1738</date> by <name type="person">Thomas Gale</name> and
     his son <name type="person">Roger</name>.</p>
 </acquisition>
</history>
Here is a fuller example:
<history>
 <origin notBefore="1225" notAfter="1275">
  <p>Written in Spain or Portugal in the middle of the 13th century
     (the date 1042, given in a marginal note on f. 97v, cannot be correct.)</p>
 </origin>
 <provenance>
  <p>The Spanish scholar <name type="person">Benito Arias
       Montano</name> (1527-1598) has written his name on f. 97r, and may be
     presumed to have owned the manuscript. It came somehow into the
     possession of <foreign xml:lang="da">etatsråd</foreign>
   <name type="person">Holger Parsberg</name> (1636-1692), who has written his
     name twice, once on the front pastedown and once on f. 1r, the former dated
  <date>1680</date> and the latter <date>1682</date>. Following Parsberg's
     death the manuscript was bought by <foreign>etatsråd</foreign>
   <name type="person">Jens Rosenkrantz</name> (1640-1695) when Parsberg's
     library was auctioned off (23 October 1693).</p>
 </provenance>
 <acquisition notBefore="1696" notAfter="1697">
  <p>The manuscript was acquired by Árni
     Magnússon from the estate of Jens Rosenkrantz, presumably at
     auction (the auction lot number 468 is written in red chalk on the
     flyleaf), either in 1696 or 97.</p>
 </acquisition>
</history>

1.7 Additional information

Three categories of additional information are provided for by the scheme described here, grouped together within the additional element described in this section.
  • additional raggruppa ulteriori informazioni combinando informazioni bibliografiche relative al manoscritto o a copie surrogate dello stesso con informazioni di carattere curatoriale o amministrativo
  • adminInfo (informazioni amministrative) contiene informazioni relative alla gestione e disponibilità del manoscritto e alla descrizione stessa della documentazione
  • surrogates contains information about any non-digital representations of the manuscript being described which may exist in the holding institution or elsewhere.
  • listBibl (lista di citazioni) contiene una lista di citazioni bibliografiche di qualsiasi natura.

The surrogates element should not be used to describe digital images of the manuscript since the facsimile element described in 2 Metadata about digital facsimiles is provided for this purpose.

None of the constituent elements of additional is required. If any is supplied, it may appear once only; furthermore, the order in which elements are supplied should be as specified above.

1.7.1 Administrative information

The adminInfo element is used to hold information relating to the curation and management of a manuscript. This may be supplied using note element. Alternatively, different aspects of this information may be presented grouped within one of the following specialized elements:
  • recordHist (storia registrata) contiene informazioni relative alla fonte e alla revisione della descrizione stessa del manoscritto genitore
  • availability fornisce informazioni sulla disponibilità di un testo, per esempio su qualsiasi restrizione che si applica alla sua utilizzazione o distribuzione, il suo statuto in merito al copyright, etc.
    status fornisce un codice che identifica l'attuale disponibilità del testo.
  • custodialHist (storia della conservazione) contiene una descrizione della storia della conservazione del manoscritto sotto forma di prosa o come serie di eventi datati relativi alla gestione del manoscritto stesso

The status attribute of availability must take one of the following values: free, restricted, unknown.

1.7.1.1 Record History
The recordHist element may contain either a series of paragraphs or a single source element. It is used to document the primary source of information for the record containing it, in a similar way to the standard TEI sourceDesc element within a TEI Header. If the record is a new one, made without reference to anything other than the manuscript itself, then it may be omitted, or simply contain a p element, as in the following example:
<source>
 <p>Directly catalogued from the original manuscript.</p>
</source>
Frequently, however, the record will be derived from some previously existing description, which may be specified using the bibl element, as in the following example:
<recordHist>
 <source>
  <p>Information transcribed from <bibl>
    <title>The index of
         Middle English verse</title>
    <biblScope type="pages">123</biblScope>
   </bibl>.</p>
 </source>
</recordHist>
If, as is likely, a full bibliographic description of the source from which cataloguing information was taken is included within the listBibl element contained by the current additional element, or elsewhere in the current document, then it need not be repeated here. Instead, it should be referenced using the standard TEI ref element, as in the following example:
<additional>
 <adminInfo>
  <recordHist>
   <source>
    <p>Information transcribed from
    <bibl>
      <ref target="#IMEV">IMEV</ref> 123</bibl>.</p>
   </source>
  </recordHist>
 </adminInfo>
 <listBibl>
  <bibl xml:id="IMEV">
   <author>Carleton Brown</author> and <author>Rossell Hope Robbins</author>
   <title level="m">The index of Middle English verse</title>
   <pubPlace>New York</pubPlace>
   <date>1943</date>
  </bibl>
<!-- other bibliographic records relating to this manuscript here -->
 </listBibl>
</additional>

The change element within the revisionDesc element of the TEI Header should be used to document the revision history of the record. It should not be given within the recordHist element.

1.7.1.2 Availability and Custodial History
The availability element is another element also available in the TEI Header, which should be used here to supply any information concerning access to the current manuscript, such as its physical location (where this is not implicit in its identifier), any restrictions on access, information about copyright, etc.
<availability status="restricted">
 <p>Viewed by appointment only, to be arranged with curator.</p>
</availability>
<availability status="unknown">
 <p>In conservation, Jan. - Mar., 2002. On loan to the
   Bayerische Staatsbibliothek, April - July, 2002.</p>
</availability>
<availability status="restricted">
 <p>The manuscript is in poor condition, due to many of the leaves being
   brittle and fragile and the poor quality of a number of earlier repairs;
   it should therefore not be used or lent out until it has been conserved.</p>
</availability>
The custodialHist record is used to describe the custodial history of a manuscript, recording any significant events noted during the period that it has been located within its holding institution. It may contain either a series of p elements, or a series of custEvent elements, each describing a distinct incident or event, further specified by a type attribute, and carrying dating information by virtue of its membership in the att.datable class, as noted above.
  • custEvent (evento legato alla conservazione) descrive un singolo evento nella storia della conservazione di un manoscritto
For ENRICH purposes, the values of this attribute must be one of the following: check, conservation, description, exhibition, loan, photography, other.
Element custEvent change
Here is an example of the use of this element:
<custodialHist>
 <custEvent type="conservation" notBefore="1961-03-01" notAfter="1963-02-28">
  <p>Conserved between March 1961 and February 1963 at Birgitte Dalls
     Konserveringsværksted.</p>
 </custEvent>
 <custEvent type="photography" notBefore="1988-05-01" notAfter="1988-05-30">
  <p>Photographed in May 1988 by AMI/FA.</p>
 </custEvent>
 <custEvent type="loan" notBefore="1989-11-13" notAfter="1989-11-13">
  <p>Dispatched to Iceland 13 November 1989.</p>
 </custEvent>
</custodialHist>

1.7.2 Surrogates

The surrogates element is used to provide information about any digital or photographic representations of the manuscript which may exist within the holding institution or elsewhere.
  • surrogates contains information about any non-digital representations of the manuscript being described which may exist in the holding institution or elsewhere.
The surrogates element should not be used to repeat information about representations of the manuscript available within published works; this should normally be documented within the listBibl element within the additional element. However, it is often also convenient to record information such as negative numbers or digital identifiers for unpublished collections of manuscript images maintained within the holding institution, as well as to provide more detailed descriptive information about the surrogate itself. Such information may be provided as prose paragraphs, within which identifying information about particular surrogates may be presented using the standard TEI bibl element, as in the following example:
<surrogates>
 <p>
  <bibl>
   <title type="gmd">microfilm (master)</title>
   <idno>G.neg. 160</idno> n.d.</bibl>
  <bibl>
   <title type="gmd">microfilm (archive)</title>
   <idno>G.pos. 186</idno> n.d.</bibl>
  <bibl>
   <title type="gmd">b/w prints</title>
   <idno>AM 795 4to</idno>
   <date when="1999-01-27">27 January 1999</date>
   <note>copy of G.pos. 186</note>
  </bibl>
  <bibl>
   <title type="gmd">b/w prints</title>
   <idno>reg.nr. 75</idno>
   <date when="1999-01-25">25 January 1999</date>
   <note>photographs of the spine, outside covers, stitching etc.</note>
  </bibl>
 </p>
</surrogates>
Note the use of the specialized form of title (general material designation) to specify the kind of surrogate being documented.

For ENRICH purposes, information about digital images of the manuscript being described should be provided within the facsimile element discussed in section 2 Metadata about digital facsimiles below rather than within the surrogates element.

1.8 Manuscript Parts

The msPart element may be used in cases where what were originally physically separate manuscripts or parts of manuscripts have been bound together and/or share the same call number.
  • msPart (porzione di manoscritto) contiene informazioni relative a un manoscritto o parte di manoscritto originariamente distinti ma attualmente parte di un manoscritto composito
Since each component of such a composite manuscript will in all likelihood have its own content, physical description, history, and so on, the structure of msPart is in the main identical to that of msDesc, allowing one to retain the top level of identity (msIdentifier), but to branch out thereafter into as many parts, or even subparts, as necessary. If the parts of a composite manuscript have their own identifiers, they should be tagged using the idno element, rather than the msIdentifier element, as in the following example:
<msDesc xml:id="ex3" xml:lang="en">
 <msIdentifier>
  <settlement>Amiens</settlement>
  <repository>Bibliothèque Municipale</repository>
  <idno>MS 3</idno>
  <msName>Maurdramnus Bible</msName>
 </msIdentifier>
<!-- other elements here -->
 <msPart>
  <altIdentifier type="other">
   <idno>MS 6</idno>
  </altIdentifier>
<!-- other information specific to this part here -->
 </msPart>
 <msPart>
  <altIdentifier type="other">
   <idno>MS 7</idno>
  </altIdentifier>
<!-- other information specific to this part here -->
 </msPart>
 <msPart>
  <altIdentifier type="other">
   <idno>MS 9</idno>
  </altIdentifier>
<!-- other information specific to this part here -->
 </msPart>
<!-- other msParts here -->
</msDesc>

2 Metadata about digital facsimiles

The facsimile element is used to describe the digital images of the manuscript being made available to the ENRICH project. It contains, as a minimum, one surface element for each distinct page image, which in turn specifies one or more graphic element. These elements are used as described in the TEI Guidelines, section 11.1.

Here is a simple example:
<facsimile xml:base="http://www.handrit.org/AM/fol/">
 <surface
   xml:id="LSB-1r"
   ulx="0"
   uly="0"
   lrx="200"
   lry="300">

  <graphic mimeType="jpeg" xml:id="AM02-5000-1r" url="AM02-5000-1r.jpg"/>
  <graphic
    mimeType="jpeg"
    url="AM02-5000-1r-thumb.jpg"
    width="1in"
    decls="#thumb"/>

  <zone
    ulx="20"
    uly="20"
    lrx="70"
    lry="70">

   <desc>Illuminated initial letter M</desc>
   <graphic mimeType="jpeg" xml:id="AM02-5000-1r-det" url="AM02-5000-1r-det.jpg"/>
  </zone>
 </surface>
 <surface
   start="#LSB-1v"
   ulx="0"
   uly="0"
   lrx="200"
   lry="300">

  <graphic mimeType="jpeg" xml:id="AM02-5000-1v" url="AM02-5000-1v.jgp"/>
  <graphic
    mimeType="jpeg"
    url="AM02-5000-1v-thumb.jpg"
    decls="http://www.enrich.org/imageDescs#thumb"/>

 </surface>
</facsimile>

The xml:base attribute specifies the ‘root URL’, which will be prefixed to all URL values within the child elements of this facsimile.

This example defines only two pages. There are three images associated with the first page, which is represented by the surface element with unique identifier LSB-1r, and two with the second, which has no identifier. Each image is represented by means of a TEI graphic element.

As well as acting as a container for the various images associated with a page, the surface element defines an abstract co-ordinate system which may be used when defining additional zones of interest on the page. In this example, the location of an initial letter on the page is defined, since we have a graphic representing this detail. The zone within which the initial letter falls is in the box defined by the co-ordinates (20,20,70,70) within a grid defined by the co-ordinates (0,0,200,300). Thus, if the surface depicted actually measured 200 by 300 mm, the initial letter would occupy a 50 X 50 mm square, with its upper left corner located 20 mm from the left and 20 mm from the top edges of the surface. Note however that the numbers used to express co-ordinates are not measurements in any specific units and should not be used to determine the actual image size, since these may in any case vary greatly: in our example, the first image is a full page scan, while the second is a thumbnail.

The mimeType attribute is used to indicate the format of the graphic file itself, and may be any valid MIME type, as defined by the IANA, for example jpeg, png, bmp, tiff etc.

The decls attribute is used to indicate an external URI from which further metadata applicable to this image may be found. In this case we are assuming that there is a definition which can be used to indicate characteristics of a thumbnail image at the address indicated. Note that this must be given in full, since it would otherwise be interpreted as an address relative to the value of the xml:base attribute on the parent facsimile.

The desc element within a zone may be used to supply additional information about that zone, in this example to describe what it contains. In the TEI scheme, full documentation of a facsimile and its contents is carried in other parts of the digital document, linked to it in either or both of the following ways:
To complete the above example, we might thus expect that the msDesc for this manuscript will contain something like the following:
<msItem>
 <locus facs="#LSB-1r">ff. 1r-1v</locus>
 <title>Ludovícuss saga Bernharðssonar</title>
</msItem>
Here, the value of the facs attribute is a pointer to the surface element corresponding with the part of the manuscript in which the msItem specified begins. If a transcription of this (regrettably nonexistent) manuscript exists, then it might begin as follows:
<div facs="#LSB-1r">
 <pb n="1r"/>
 <p>Maðr hét Ludovícus, sonr Bernharðs greifa, er kallaðr var loðinbjörn.
 
<!-- rest of text for page one -->
  <pb n="1v" xml:id="LSB-1v"/>
<!-- text for second page here -->
 </p>
</div>

3 Customization Section

We include in the schema the four basic key TEI modules header, core, tei, and textstructure. We also include five specialized modules: msdescription, linking, namesdates, figures, and transcr.

All the elements and attributes defined by these modules are included in the ENRICH schema, with the following modifications. Firstly, several unwanted elements are deleted. Secondly, some optional attributes have been made compulsory, and their range of possible values are constrained. Finally, the content model for a small number of elements has been simplified to remove unwanted alternatives.

The following elements are deleted: <ab>, <alt>, <altGrp>, <analytic>, <appInfo>, <application>, <biblFull>, <biblStruct>, <binaryObject>, <broadcast>, <cRefPattern>, <cell>, <cit>, <climate>, <correction>, <distinct>, <email>, <emph>, <equipment>, <equiv>, <fsdDecl>, <headItem>, <headLabel>, <hyphenation>, <imprint>, <interpretation>, <join>, <joinGrp>, <link>, <linkGrp>, <listNym>, <measure>, <measureGrp>, <meeting>, <mentioned>, <metDecl>, <metSym>, <monogr>, <msItemStruct>, <namespace>, <normalization>, <num>, <nym>, <postBox>, <postCode>, q, <quotation>, <recording>, <recordingStmt>, <refsDecl>, <rendition>, <row>, <rs>, <said>, <samplingDecl>, <scriptStmt>, <segmentation>, <series>, <soCalled>, <sp>, <speaker>, <stage>, <state>, <stdVals>, <street>, <table>, <tagUsage>, <tagsDecl>, <teiCorpus>, <terrain>, <time>, <timeline>, <variantEncoding>, <when>.

The att.global.linking class is also deleted, since we anticipate no need for complex pointing mechanisms.

On the altIdentifier element, the type attribute is compulsory, and must take one of the following values: former; partial; internal; system; other

On the availability element, the status attribute is compulsory, and must take one of the following values: free; unknown; restricted.

On the biblScope element, the type attribute is compulsory, and must take one of the following values: volume; pages.

On the custEvent element, the type attribute is compulsory, and must take one of the following values: check; conservation; description; exhibition; loan; photography; other.

On the decoNote element, the type attribute is compulsory, and must take one of the following values: border; diagram; initial; marginal; miniature; mixed; paratext; secondary; other; illustration; printmark; publishmark; vignette; frieze; map; unspecified.

On the dimensions element, the type attribute is compulsory, and must take one of the following values: leaf; binding; slip; written; boxed; unknown.

On the gap element, the reason attribute is compulsory, and must take one of the following values: damage; illegible; cancelled; irrelevant.

On all members of the att.dimensions class, the unit attribute is compulsory, and must take one of the following values: chars; leaves; lines; mm; pages; words. The precision attribute is removed.

On the handNote element, the script attribute is compulsory, and must take one of the following values: carolmin; textualis; cursiva; hybrida; humbook; humcursiva; kanzlei; kurrent; other.

On the handNote element, the scope attribute is compulsory, and must take one of the following values: sole; major; minor.

On the hi element, the rend attribute is compulsory, and must take one of the following values: hyphenated; underline; double-underline; bold; caps; italic; sup; rubric.

On the layout element, the columns attribute is compulsory, and must take a numeric value.

On the msDesc element, the xml:id attribute is compulsory, and must be a valid XML identifier.

On the msDesc element, the xml:lang attribute is compulsory, and must be a valid ISO 639 language code.

On the name element, the type attribute is compulsory, and must take one of the following values: person; place; org; unknown.

On the objectDesc element, the form attribute is compulsory, and must take one of the following values: codex; leaf; scroll; other.

On the person element, the sex attribute is compulsory, and must be one of 1 (male), 2 (female), 0 (inapplicable), or 9 (unknown).

On the region element, the type attribute is compulsory, and must take one of the following values: parish; county; compass; geog; state; unknown.

On the supplied element, the reason attribute is compulsory, and must take one of the following values: omitted; illegible; damage; unknown.

On the supportDesc element, the material attribute is compulsory, and must take one of the following values: perg; chart; mixed; unknown.

The following changes do not affect TEI conformance since either they affect only optional parts of TEI content models or they involve additional value constraints for TEI attributes:

Schema enrich: Model classes

model.addressLike

model.addressLike raggruppa elementi utilizzati per rappresentare un indirizzo postale o di posta elettronica
Modulo tei
Usato da
Membri affiliation

model.biblLike

model.biblLike raggruppa elementi che contengono una descrizione bibliografica
Modulo tei
Usato da
Membri bibl msDesc

model.biblPart

model.biblPart raggruppa gli elementi che possono apparire all'interno di elementi di citazioni bibliografiche
Modulo tei
Usato da
Membri model.imprintPart [biblScope distributor pubPlace publisher] model.respLike [author editor funder principal respStmt sponsor] edition extent idno msIdentifier relatedItem

model.choicePart

model.choicePart raggruppa gli elementi (escluso l'elemento choice) che possono essere usati in alternanza con choice
Modulo tei
Usato da
Membri abbr am corr ex expan orig reg seg sic unclear

model.common

model.common raggruppa elementi comuni a livello di porzioni di testo o interlivello
Modulo tei
Usato da
Membri model.divPart [model.lLike [l] model.pLike [p] lg] model.inter [model.biblLike [bibl msDesc] model.egLike model.labelLike [desc label] model.listLike [list listBibl listEvent listOrg listPerson listPlace] model.qLike [model.quoteLike [quote] q] ]

model.dateLike

model.dateLike raggruppa elementi che contengono indicazioni relative a date
Modulo tei
Usato da
Membri date

model.dimLike

model.dimLike groups elements which describe a measurement forming part of the physical dimensions of some object.
Modulo tei
Usato da
Membri depth height width

model.divBottom

model.divBottom groups elements which can occur at the end of a text division; for example, trailer, byline, etc.raggruppa gli elementi che appaiono alla fine di una partizione testuale, per esempio trailer, byline, ecc.
Modulo tei
Usato da
Membri model.divBottomPart model.divWrapper [docAuthor]

model.divGenLike

model.divGenLike raggruppa elementi utilizzati per rappresentare una partizione testuale generata piuttosto che esplicitamente presente nella fonte
Modulo tei
Usato da
Membri divGen

model.divLike

model.divLike raggruppa elementi utilizzati per rappresentare partizioni testuali generiche non numerate
Modulo tei
Usato da
Membri div

model.divPart

model.divPart raggruppa elementi che compaiono tra paragrafi e altre porzioni di testo ma non al loro interno
Modulo tei
Usato da
Membri model.lLike [l] model.pLike [p] lg

model.divTop

model.divTop raggruppa elementi che si presentano all'inizio di una partizione testuale
Modulo tei
Usato da
Membri model.divTopPart [model.headLike [head] ] model.divWrapper [docAuthor]

model.divTopPart

model.divTopPart raggruppa elementi che possono presentarsi solo all'inizio di una partizione testuale
Modulo tei
Usato da
Membri model.headLike [head]

model.divWrapper

model.divWrapper raggruppa gli elementi che appaiono all'inizio di una partizione testuale
Modulo tei
Usato da
Membri docAuthor

model.emphLike

model.emphLike raggruppa elementi a livello di sintagma tipograficamente distinti e ai quali è attribuibile una funzione specifica
Modulo tei
Usato da
Membri foreign gloss term title

model.encodingPart

model.encodingPart raggruppa gli elementi utilizzati all'interno di encodingDesc e che appaiono più volte.
Modulo header
Usato da
Membri charDecl classDecl editorialDecl geoDecl projectDesc

model.frontPart

model.frontPart raggruppa gli elementi che appaiono a livello di partizioni testuali all'interno del peritesto iniziale o finale
Modulo tei
Usato da
Membri divGen titlePage

model.gLike

model.gLike raggruppa elementi di cui è inframmezzato il testo che rapresentano oggetti non Unicode
Modulo tei
Usato da
Membri g

model.global

model.global raggruppa elementi vuoti che possono apparire in qualsiasi punto di un testo TEI
Modulo tei
Usato da
Membri model.global.edit [addSpan damageSpan delSpan gap space] model.global.meta [index] model.milestoneLike [anchor cb fw lb milestone pb] model.noteLike [note] figure

model.global.edit

model.global.edit raggruppa elementi vuoti con funzioni editoriali specifiche, per esempio l'indicazione dell'inizio di una porzione di testo aggiunto, rimosso o mancante nell'originale
Modulo tei
Usato da
Membri addSpan damageSpan delSpan gap space

model.global.meta

model.global.meta raggruppa elementi vuoti che descrivono lo status di altri elementi, per esempio stabilendo gruppi di collegamenti o interpretazioni astratte, oppure fornendo indicazioni di certezza, ecc., e che possono apparire in qualsiasi punto all'interno di un documento
Modulo tei
Usato da
Membri index

model.glossLike

model.glossLike raggruppa elementi che assegnano un nome, descrizione o spiegazione alternativi a elementi di codifica
Modulo tei
Usato da
Membri desc gloss

model.graphicLike

model.graphicLike raggruppa elementi che contengono immagini, formule, esempi, e oggetti simili
Modulo tei
Usato da
Membri formula graphic

model.headLike

model.headLike raggruppa elementi utilizzati per fornire un titolo all'inizio di una partizione testuale
Modulo tei
Usato da
Membri head

model.headerPart

model.headerPart raggruppa gli elementi utilizzati all'interno di teiHeader e che appaiono più volte.
Modulo header
Usato da
Membri encodingDesc profileDesc

model.hiLike

model.hiLike raggruppa elementi a livello sintagmatico relativi a evidenziatura
Modulo tei
Usato da
Membri hi

model.highlighted

model.highlighted raggruppa elementi a livello di sintagma tipograficamente distinti
Modulo tei
Usato da
Membri model.emphLike [foreign gloss term title] model.hiLike [hi]

model.imprintPart

model.imprintPart raggruppa gli elementi bibliografici che appaiono all'interno delle sigle editoriali
Modulo tei
Usato da
Membri biblScope distributor pubPlace publisher

model.inter

model.inter raggruppa elementi della classe intermedia (interlivello): tali elementi possono apparire sia all'interno che tra paragrafi e altri elementi del tipo porzione di testo
Modulo tei
Usato da
Membri model.biblLike [bibl msDesc] model.egLike model.labelLike [desc label] model.listLike [list listBibl listEvent listOrg listPerson listPlace] model.qLike [model.quoteLike [quote] q]

model.lLike

model.lLike raggruppa elementi che rappresentano componenti metriche come i versi
Modulo tei
Usato da
Membri l

model.labelLike

model.labelLike raggruppa elementi utilizzati per spiegare o illustrare altre parti di un documento
Modulo tei
Usato da
Membri desc label

model.limitedPhrase

model.limitedPhrase raggruppa elementi a livello di sintagma ad eccezione degli elementi intesi principalmente per la trascrizione di fonti esistenti
Modulo tei
Usato da
Membri model.emphLike [foreign gloss term title] model.pPart.data [model.addressLike [affiliation] model.dateLike [date] model.measureLike [depth dim geo height width] model.nameLike [model.nameLike.agent [name orgName persName] model.offsetLike [geogFeat offset] model.persNamePart [addName forename genName nameLink roleName surname] model.placeStateLike [model.placeNamePart [bloc country district geogName placeName region settlement] ] ] ] model.pPart.editorial [abbr am choice ex expan subst] model.pPart.msdesc [catchwords dimensions handShift heraldry locus locusGrp material origDate origPlace secFol signatures stamp watermark] model.ptrLike [ptr ref]

model.listLike

model.listLike raggruppa tutti gli elementi del tipo lista
Modulo tei
Usato da
Membri list listBibl listEvent listOrg listPerson listPlace

model.measureLike

model.measureLike raggruppa elementi riferiti a numeri, quantità, misurazioni o altra porzione di testo che veicola un significato di tipo numerico
Modulo tei
Usato da
Membri depth dim geo height width

model.milestoneLike

model.milestoneLike raggruppa elementi del tipo milestone utilizzati per rappresentare sistemi di riferimento
Modulo tei
Usato da
Membri anchor cb fw lb milestone pb

model.msItemPart

model.msItemPart classe di elementi che appaiono all'interno della descrizione di un manoscritto
Modulo tei
Usato da
Membri model.msQuoteLike [colophon explicit finalRubric incipit rubric title] model.quoteLike [quote] model.respLike [author editor funder principal respStmt sponsor] bibl decoNote filiation listBibl msItem textLang

model.msQuoteLike

model.msQuoteLike groups elements which represent passages such as titles quoted from a manuscript as a part of its description.
Modulo tei
Usato da
Membri colophon explicit finalRubric incipit rubric title

model.nameLike

model.nameLike raggruppa gli elementi che nominano o indicano una persona, un luogo (costruito dall'uomo o geografico), o un'organizzazione
Modulo tei
Usato da
Membri model.nameLike.agent [name orgName persName] model.offsetLike [geogFeat offset] model.persNamePart [addName forename genName nameLink roleName surname] model.placeStateLike [model.placeNamePart [bloc country district geogName placeName region settlement] ]

model.nameLike.agent

model.nameLike.agent raggruppa elementi che contengono nomi di individui o enti societari
Modulo tei
Usato da
Membri name orgName persName

model.noteLike

model.noteLike raggruppa tutti gli elementi del tipo nota
Modulo tei
Usato da
Membri note

model.offsetLike

model.offsetLike raggruppa elementi che risultano solo come parte di un nome di luogo
Modulo tei
Usato da
Membri geogFeat offset

model.pLike

model.pLike classe di elementi di tipo paragrafo a scopo di interscambio.
Modulo tei
Usato da
Membri p

model.pLike.front

model.pLike.front raggruppa gli elementi che appaiono come componenti diretti del peritesto iniziale quando non è dato un frontespizio elettronico.
Modulo tei
Usato da
Membri docAuthor docEdition docImprint docTitle head titlePart

model.pPart.data

model.pPart.data raggruppa elementi a livello sintagmatico che contengono nomi, date, numeri, misurazioni, e dati simili
Modulo tei
Usato da
Membri model.addressLike [affiliation] model.dateLike [date] model.measureLike [depth dim geo height width] model.nameLike [model.nameLike.agent [name orgName persName] model.offsetLike [geogFeat offset] model.persNamePart [addName forename genName nameLink roleName surname] model.placeStateLike [model.placeNamePart [bloc country district geogName placeName region settlement] ] ]

model.pPart.edit

model.pPart.edit raggruppa elementi a livello sintagmatico utilizzati per semplici interventi editoriali di correzione e trascrizione
Modulo tei
Usato da
Membri model.pPart.editorial [abbr am choice ex expan subst] model.pPart.transcriptional [add corr damage del orig reg restore sic supplied unclear]

model.pPart.editorial

model.pPart.editorial raggruppa elementi a livello di sintagma per semplici interventi editoriali, utili sia per il trascrittore che per l'autore
Modulo tei
Usato da
Membri abbr am choice ex expan subst

model.pPart.msdesc

model.pPart.msdesc raggruppa gli elementi utilizzati per descrivere manoscritti
Modulo tei
Usato da
Membri catchwords dimensions handShift heraldry locus locusGrp material origDate origPlace secFol signatures stamp watermark

model.pPart.transcriptional

model.pPart.transcriptional raggruppa elementi a livello di sintagma utilizzati per la trascrizione di fonti preesistenti
Modulo tei
Usato da
Membri add corr damage del orig reg restore sic supplied unclear

model.persEventLike

model.persEventLike classe di elementi che descrivono eventi specifici nella vita di una persona, per esempio, nascita, matrimonio, nomina, ecc.; tali elementi non rappresentano caratteristiche vere e proprie di un individuo ma spesso fanno sì che l'individuo in questione acquisisca determinate caratteristiche o un dato status
Modulo tei
Usato da
Membri birth death event

model.persNamePart

model.persNamePart raggruppa gli elementi che compongono un nome proprio di persona
Modulo namesdates
Usato da
Membri addName forename genName nameLink roleName surname

model.persStateLike

model.persStateLike classe di elementi che descrivono le caratteristiche mutevoli e con una determinata durata di una persona, per esempio occupazione, residenza, nome, ecc.; tali caratteristiche di un individuo rappresentano in genere una conseguenza delle sue azioni o di quelle degli altri
Modulo tei
Usato da
Membri affiliation education floruit occupation persName residence

model.persTraitLike

model.persTraitLike classe di elementi che descrive caratteristiche fisiche o di derivazione sociale generalmente immutabili di una persona, per esempio colore dei capelli, etnia, sesso, ecc.; tali caratteristiche di un undividuo sono di solito indipendenti dalla sua volontà o dalle sue azioni;
Modulo tei
Usato da
Membri age faith langKnowledge nationality sex socecStatus trait

model.personLike

model.personLike classe di elementi utilizzati per fornire informazioni relative a persone e relazioni tra le stesse
Modulo tei
Usato da
Membri org person personGrp

model.personPart

model.personPart raggruppa elementi che descrivono determinate caratteristiche delle persone a cui si fa riferimento nel testo o che partecipano a un'interazione verbale
Modulo tei
Usato da
Membri model.persEventLike [birth death event] model.persStateLike [affiliation education floruit occupation persName residence] model.persTraitLike [age faith langKnowledge nationality sex socecStatus trait] bibl

model.phrase

model.phrase raggruppa gli elementi che appaiono a livello di singole parole o sintagmi
Modulo tei
Usato da
Membri model.graphicLike [formula graphic] model.highlighted [model.emphLike [foreign gloss term title] model.hiLike [hi] ] model.pPart.data [model.addressLike [affiliation] model.dateLike [date] model.measureLike [depth dim geo height width] model.nameLike [model.nameLike.agent [name orgName persName] model.offsetLike [geogFeat offset] model.persNamePart [addName forename genName nameLink roleName surname] model.placeStateLike [model.placeNamePart [bloc country district geogName placeName region settlement] ] ] ] model.pPart.edit [model.pPart.editorial [abbr am choice ex expan subst] model.pPart.transcriptional [add corr damage del orig reg restore sic supplied unclear] ] model.pPart.msdesc [catchwords dimensions handShift heraldry locus locusGrp material origDate origPlace secFol signatures stamp watermark] model.ptrLike [ptr ref] model.segLike [seg]

model.physDescPart

model.physDescPart elementi descrittivi specifici che costituiscono la descrizione fisica di un manoscritto o di una fonte scritta simile
Modulo tei
Usato da
Membri accMat additions bindingDesc decoDesc handDesc musicNotation objectDesc sealDesc typeDesc

model.placeEventLike

model.placeEventLike raggruppa elementi che descrivono eventi che si verificano in un dato luogo o che hanno effetto sullo stesso
Modulo tei
Usato da
Membri event

model.placeLike

model.placeLike raggruppa elementi utilizzati per fornire informazioni relative a luoghi e relazioni corrispondenti
Modulo tei
Usato da
Membri place

model.placeNamePart

model.placeNamePart raggruppa gli elementi che fanno parte del nome di un luogo
Modulo tei
Usato da
Membri bloc country district geogName placeName region settlement

model.placeStateLike

model.placeStateLike raggruppa elementi che descrivono stati mutevoli di un luogo
Modulo tei
Usato da
Membri model.placeNamePart [bloc country district geogName placeName region settlement]

model.placeTraitLike

model.placeTraitLike raggruppa elementi che descrivono tratti immutabili di un luogo
Modulo tei
Usato da
Membri location population trait

model.profileDescPart

model.profileDescPart raggruppa gli elementi utilizzati all'interno di profileDesc e che appaiono più volte.
Modulo header
Usato da
Membri handNotes langUsage textClass

model.ptrLike

model.ptrLike raggruppa elementi utilizzati per stabilire collocazioni e riferimenti
Modulo tei
Usato da
Membri ptr ref

model.publicationStmtPart

model.publicationStmtPart raggruppa i figli di publicationStmt
Modulo tei
Usato da
Membri authority availability date distributor idno pubPlace publisher

model.qLike

model.qLike raggruppa elementi relativi all'evidenziatura che appaiono all'interno di o tra elementi a livello di porzioni di testo
Modulo tei
Usato da
Membri model.quoteLike [quote] q

model.quoteLike

model.quoteLike raggruppa elementi che contengono direttamente le citazioni
Modulo tei
Usato da
Membri quote

model.resourceLike

model.resourceLike raggruppa elementi non testuali che possono costituire un documento TEI insieme a un'intestazione e a un testo
Modulo tei
Usato da
TEI
Membri facsimile

model.respLike

model.respLike raggruppa elementi utilizzati per indicare responsabilità intellettuale, per esempio all'interno di un elemento bibliografico
Modulo tei
Usato da
Membri author editor funder principal respStmt sponsor

model.segLike

model.segLike raggruppa elementi utilizzati per una segmentazione arbitraria
Modulo tei
Usato da
Membri seg

model.titlepagePart

model.titlepagePart raggruppa gli elementi che appaiono come componenti dirette del frontespizio elettronico (docTitle, docAuthor, docImprint, <epigraph>, ecc.)
Modulo tei
Usato da
Membri docAuthor docEdition docImprint docTitle graphic titlePart

Schema enrich: Attribute classes

att.ascribed

att.ascribed assegna degli attributi agli elementi che rappresentano parole o azioni attribuibili a singoli individui
Modulo tei
Membri change q
Attributi
who indica la persona o gruppo di persone alle quali viene attribuito il contenuto dell'elemento
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori For transcribed speech, this will typically identify a participant or participant group; in other contexts, it will point to any identified person element.

att.canonical

att.canonical provides attributes which can be used to associate a representation such as a name or title with canonical information about the object being named or referenced.
Modulo tei
Membri att.naming [att.personal [addName forename genName orgName persName roleName surname] affiliation birth bloc collection country death district education event geogFeat geogName institution name nationality occupation origPlace placeName population pubPlace region relation repository residence settlement socecStatus trait] author docAuthor docTitle resp term title
Attributi
key provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind.
Stato Opzionale
Tipo di dati string
Valori any string of Unicode characters
ref (reference) provides an explicit means of locating a full definition for the entity being named by means of one or more URIs.
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco

att.coordinated

att.coordinated elementi posizionabili all'interno di un sistema di coordinate bidimensionale
Modulo transcr
Membri surface zone
Attributi
ulx assegna il valore x all'angolo superiore sinistro di uno spazio rettangolare
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
uly assegna il valore y all'angolo superiore sinistro di uno spazio rettangolare
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
lrx assegna il valore x all'angolo inferiore destro di uno spazio rettangolare
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
lry assegna il valore y all'angolo inferiore destro di uno spazio rettangolare
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal

att.damaged

att.damaged fornisce attributi che descrivono la natura di eventuali danni fisici che influenzano una lettura
Modulo tei
Membri damage damageSpan
Attributi att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
hand in caso di danneggiamento (volontario o meno) riconducibile a una mano identificabile, indica la mano responsabile del danneggiamento
Stato Opzionale
Tipo di dati xsd:anyURI
Valori must be one of the hand identifiers declared in the document header (see section ??).
agent classifica la causa del danneggiamento, se rintracciabile
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
rubbing
dannegiamento per sfregamento dei margini del foglio
mildew
danneggiamento per muffa sulla superficie del foglio
smoke
danneggiamento per fumo
degree indica l'entità del danneggiamento misurato in base a una scala funzionale; il marcatore damage con l'attributo degree dovranno essere utilizzati solo se il testo può essere letto con una certa sicurezza; i testi derivanti da altre fonti andranno marcati come supplied
Stato Opzionale
Tipo di dati
Valori an alphanumeric categorization of the degree of damage, as 0.4.
group assegna un numero arbitrario a ognuna delle porzioni di danneggiamento considerate parte dello stesso fenomeno fisico
Stato Obbligatorio se applicabile
Tipo di dati xsd:nonNegativeInteger

att.datable

att.datable assegna attributi per la normalizzazione di elementi che contengono eventi databili
Modulo tei
Membri acquisition affiliation age binding birth bloc country custEvent date death district education event faith floruit geogFeat langKnowledge langKnown location nationality occupation orgName origDate origPlace origin persName placeName population provenance region relation residence seal settlement sex socecStatus stamp trait
Attributi att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)

att.datable.w3c

att.datable.w3c indica degli attributi per la normalizzazione di elementi che contengono eventi databili utilizzando i tipi di dati del W3C
Modulo tei
Membri att.datable [acquisition affiliation age binding birth bloc country custEvent date death district education event faith floruit geogFeat langKnowledge langKnown location nationality occupation orgName origDate origPlace origin persName placeName population provenance region relation residence seal settlement sex socecStatus stamp trait]
Attributi
period fornisce un puntatore a una data posizione definendo un determinato periodo di tempo entro il quale l'oggetto da datare è collocabile
Stato Opzionale
Tipo di dati xsd:anyURI
when indica il valore di una data o di un orario in un formato standard
Stato Opzionale
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.

Examples of W3C date, time, and date & time formats.

<date when="1945-10-24">24 Oct 45</date>
<date when="1996-09-24T07:25:00Z">September 24th, 1996 at 3:25 in the morning</date>
<time when="1999-01-04T20:42:00-05:00">Jan 4 1999 at 8 pm</time>
<time when="14:12:38">fourteen twelve and 38 seconds</time>
<date when="1962-10">October of 1962</date>
<date when="--06-12">June 12th</date>
<date when="---01">the first of the month</date>
<date when="--08">August</date>
<date when="2006">MMVI</date>
<date when="0056">56 AD</date>
<date when="-0056">56 BC</date>
This list begins in
the year 1632, more precisely on Trinity Sunday, i.e. the Sunday after
Pentecost, in that year the <date calendar="Julian" when="1632-06-06">27th of May (old style)</date>.
<opener>
 <dateline>
  <placeName>Dorchester, Village,</placeName>
  <date when="1828-03-02">March 2d. 1828.</date>
 </dateline>
 <salute>To
   Mrs. Cornell,</salute> Sunday <time when="12:00:00">noon.</time>
</opener>
notBefore specifica la prima data possibile per un evento nel formato standard aaaa-mm-gg
Stato Opzionale
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
notAfter specifica l'ultima data possibile per un evento nel formato standard aaaa-mm-gg
Stato Opzionale
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
from indica l'inizio del periodo nel formato standard
Stato Opzionale
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
to indica la fine del periodo nel formato standard
Stato Opzionale
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.

att.declarable

att.declarable individua attributi per gli elementi contenuti nell'intestazione che possono essere selezionati autonomamente grazie all'apposito attributo decls
Modulo tei
Membri availability bibl editorialDecl geoDecl langUsage listBibl listEvent listOrg listPerson listPlace projectDesc sourceDesc textClass
Attributi
default indica se l'elemento è selezionato automaticamente quando è selezionato il genitore
Stato Obbligatorio se applicabile
Tipo di dati xsd:boolean
I valori legali sono:
true
l'elemento è selezionato se è selezionato il genitore
false
l'elemento deve essere esplicitamente selezionato, a meno che non sia l'unico del suo genere, nel qual caso è selezionato se è selezionato il genitore [Valore di default]

att.declaring

att.declaring assegna attributi agli elementi che possono essere autonomamente associati a un determinato elemento dichiarato nell'intestazione, non tenendo conto del default ereditato per quell'elemento
Modulo tei
Membri back body div facsimile front gloss graphic group lg p ptr ref surface term text
Attributi
decls identifica uno o più elementi dichiarabili all'interno dell'intestazione, i quali sono validi per l'elemento a cui è assegnato l'attributo in questione e il suo contenuto
Stato Obbligatorio se applicabile
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori must identify a set of declarable elements of different types.

att.dimensions

att.dimensions assegna degli attributi che descrivono la grandezza di oggetti fisici
Modulo tei
Membri att.damaged [damage damageSpan] att.editLike [att.transcriptional [add addSpan del delSpan restore subst] affiliation age am birth corr date death education event ex expan faith floruit gap langKnowledge langKnown location nationality occupation org orgName origDate origPlace origin persName person place placeName population reg relation residence sex socecStatus supplied trait unclear] depth dim dimensions height space width
Attributi att.ranging (@atLeast, @atMost, @min, @max)
unit specifica le unità usate per la misurazione
Stato Opzionale
Tipo di dati xsd:Name
I valori legali sono:
cm
mm
[Valore di default]
in
lines
chars
quantity specifica la lunghezza nelle unità indicate
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
extent indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words.
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } separato da spazio bianco
Valori any measurement phrase, e.g. 25 letters, 2 × 3 inches.
<gap extent="5 words"/>
<height extent="2 ft 8 in"/>
scope indica l'applicabilità della misurazione, laddove venga misurato più di un oggetto
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
all
la misurazione fa riferimento a tutti i casi
most
la misurazione fa riferimento alla maggior parte dei casi esaminati
range
la misurazione fa riferimento solo ai casi specificati

att.divLike

att.divLike identifica un insieme di attributi comuni a tutti gli elementi che si comportano come partizioni testuali
Modulo tei
Membri div lg
Attributi
org (organizzazione) specifica come è organizzato il contenuto della partizione testuale
Stato Opzionale
I valori legali sono:
composite
contenuto composito: non viene specificato quale sia l'ordine in cui debbano essere elaborati i contenuti della partizione, né viene indicato il rapporto in cui questi si trovano tra loro
uniform
contenuto uniforme: i contenuti dell'elemento costituiscono un'unità logica che va elaborata in sequenza [Valore di default]
sample indica se la partizione è un campione del testo originario e, in tal caso, da quale parte di questo è tratta
Stato Opzionale
I valori legali sono:
initial
alla partizione testuale manca del materiale nella parte finale presente nell'originale
medial
alla partizione testuale manca del materiale nella parte iniziale e in quella finale
final
alla partizione manca del materiale nella parte iniziale
unknown
la posizione del materiale prelevato dall'originale all'interno di quest'ultimo è sconosciuta
complete
la partizione testuale non è stata prelevata da alcun originale [Valore di default]
part specifica se la partizione è suddivisa in ulteriori elementi strutturali, come per esempio un discorso diviso in due o più strofe
Stato Obbligatorio se applicabile
I valori legali sono:
Y
(sì) la partizione è incompleta
N
(no) la partizione è completa o non viene fatto alcun riferimento alla sua completezza [Valore di default]
I
(iniziale) parte iniziale di una partizione incompleta
M
(mediano) parte mediana di una partizione incompleta
F
(finale) parte finale di una partizione incompleta

att.editLike

att.editLike assegna degli attributi che descrivono il carattere di un intervento critico codificato o interpretazione di altro tipo
Modulo tei
Membri att.transcriptional [add addSpan del delSpan restore subst] affiliation age am birth corr date death education event ex expan faith floruit gap langKnowledge langKnown location nationality occupation org orgName origDate origPlace origin persName person place placeName population reg relation residence sex socecStatus supplied trait unclear
Attributi att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
cert (certezza) corrisponde al grado di certezza associato all'intervento o interpretazione
Stato Opzionale
Tipo di dati "high" | "medium" | "low" | "unknown"
resp (responsabile) indica il responsabile dell'intervento o interpretazione, per esempio un curatore o trascrittore
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori A pointer to an element in the document header that is associated with a person asserted as responsible for some aspect of the text's creation, transcription, editing, or encoding.
evidence indica il carattere delle prove a sostegno dell'affidabilità o accuratezza dell'intervento o interpretazione
Stato Opzionale
Tipo di dati xsd:Name
I valori suggeriti includono:
internal
esistono prove interne a sostegno dell'intervento
external
esistono prove interne a sostegno dell'intervento
conjecture
l'intervento o interpretazione è stata effettuata dal curatore, catalogatore o critico in base alla loro esperienza
source contiene una lista di uno o più puntatori indicanti le fonti a sostegno di una data lettura
Stato Obbligatorio se applicabile
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori A space-delimited series of sigla; each sigil should correspond to a witness or witness group and occur as the value of the xml:id attribute on a <witness> or msDesc element elsewhere in the document.

att.global

att.global stabilisce un insieme di attributi comuni a tutti gli elementi dello schema di codifica TEI
Modulo tei
Membri
Attributi att.global.facs (@facs)
xml:id (identificatore) assegna un identificatore unico all'elemento a cui è associato l'attributo
Stato Opzionale
Tipo di dati xsd:ID
Valori any valid XML identifier.
n (numero) assegna un numero (o altra etichetta) a un elemento che non è necessariamente unico all'interno del documento
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } separato da spazio bianco
Valori any string of characters; often, but not necessarily, numeric.
xml:lang (lingua) indica la lingua del contenuto dell'elemento utilizzando i codici tratti da RFC 3066
Stato Opzionale
Tipo di dati xsd:language
Valori The value must conform to BCP 47. If the value is a private use code (i.e., starts with x- or contains -x-) it should, and if not it may, match the value of an ident attribute of a language element supplied in the TEI Header of the current document.
rend (resa) indica come l'elemento in questione è stato reso o rappresentato nel testo originario
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } separato da spazio bianco
Valori any string of characters; if the typographic rendition of a text is to be systematically recorded, a systematic set of values for the rend attribute should be defined.
<head rend="align(center) case(allcaps)">
 <lb/>To The <lb/>Duchesse <lb/>of <lb/>Newcastle,
<lb/>On Her <lb/>
 <hi rend="case(mixed)">New Blazing-World</hi>.
</head>
xml:base assegna un riferimento URI di base grazie al quale eventuali applicazioni possono analizzare riferimenti URI relativi come riferimenti URI assoluti
Stato Opzionale
Tipo di dati xsd:anyURI
Valori any syntactically valid URI reference.
<div type="bibl">
 <head>Bibliography</head>
 <listBibl
   xml:base="http://www.lib.ucdavis.edu/BWRP/Works/">

  <bibl n="1">
   <author>
    <name>Landon, Letitia Elizabeth</name>
   </author>
   <ref target="LandLVowOf.sgm">
    <title>The Vow of the Peacock</title>
   </ref>
  </bibl>
  <bibl n="2">
   <author>
    <name>Compton, Margaret Clephane</name>
   </author>
   <ref target="NortMIrene.sgm">
    <title>Irene, a Poem in Six Cantos</title>
   </ref>
  </bibl>
  <bibl n="3">
   <author>
    <name>Taylor, Jane</name>
   </author>
   <ref target="TaylJEssay.sgm">
    <title>Essays in Rhyme on Morals and Manners</title>
   </ref>
  </bibl>
 </listBibl>
</div>

att.global.facs

att.global.facs elementi che possono essere associati a un'immagine o una superficie all'interno dell'elemento facsimile
Modulo transcr
Membri att.global
Attributi
facs (facsimile) indica direttamente un'immagine o una parte di un elemento facsimile corrispondente a tale elemento
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori one or more URIs, separated by whitespace.

att.handFeatures

att.handFeatures indica degli attributi che descrivono aspetti delle mano utilizzata per la scrittura del manoscritto
Modulo tei
Membri handNote handShift typeNote
Attributi
scribe assegna un nome o altro identificatore standard al trascrittore che si ritiene corrisponda alla mano in questione
Stato Opzionale
Tipo di dati xsd:Name
Valori Un nom quelconque.
script caratterizza un determinato stile di scrittura utilizzato dalla mano in questione, per esempio segretario, incisione su rame, Chancery, italiano, ecc.
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:Name separato da spazio bianco
medium descrive la tinta o il tipo di inchiostro, per esempio marrone, o altri strumenti di scrittura, per esempio matita
Stato Opzionale
Tipo di dati xsd:Name
scope specifica in quale misura è utilizzata la mano in questione nel manoscritto
Stato Opzionale
I valori legali sono:
sole
unica mano utilizzata nel manoscritto
major
mano utilizzata nella maggior parte del manoscritto
minor
mano utilizzata solo di rado nel manoscritto

att.internetMedia

att.internetMedia indica degli attributi che specificano il tipo di risorsa informatica utilizzando una tassonomia standard
Modulo tei
Membri graphic
Attributi
mimeType (MIME media type) specifica il tipo MIME appropriato
Stato Obbligatorio se applicabile
Tipo di dati token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Valori The value should be a valid MIME media type

att.msExcerpt

att.msExcerpt  (estratto di manoscritto) assegna degli attributi utilizzati per descrivere estratti di un manoscritto inseriti in una descrizione dello stesso
Modulo msdescription
Membri explicit incipit msContents msItem quote
Attributi
defective indica se il brano citato sia o meno incompleto a causa di perdite o danni
Stato Opzionale
Tipo di dati xsd:boolean | "unknown" | "inapplicable"

att.naming

att.naming identifica degli attributi comuni a elementi che si riferiscono a persone, luoghi, organizzazioni, ecc. indicati per nome
Modulo tei
Membri att.personal [addName forename genName orgName persName roleName surname] affiliation birth bloc collection country death district education event geogFeat geogName institution name nationality occupation origPlace placeName population pubPlace region relation repository residence settlement socecStatus trait
Attributi att.canonical (@key, @ref)
nymRef (riferimento al nome canonico) indica un modo di localizzare la forma canonica (nym) dei nomi associati all'oggetto definito dall'elemento che lo contiene
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori any valid URI

att.personal

att.personal  (attributi per componenti di nomi propri di persona) attributi comuni agli elementi che compongono un nome proprio di persona
Modulo tei
Membri addName forename genName orgName persName roleName surname
Attributi att.naming (@nymRef) (att.canonical (@key, @ref))
full indica se la componente del nome compare per esteso, come abbreviazione o come iniziale
Stato Opzionale
I valori legali sono:
yes
la componente del nome compare per esteso [Valore di default]
abb
(abbreviato) la componente del nome compare in forma abbreviata
init
(lettera iniziale) la componente del nome è indicata da una sola iniziale
sort specifica la posizione della componente all'interno del nome proprio di persona in relazione alle altre componenti
Stato Opzionale
Tipo di dati xsd:nonNegativeInteger
Valori A positive number indicating the sort order.

att.placement

att.placement identifica degli attributi che descrivono la collocazione di un elemento testuale all'interno della pagina o dell'oggetto di origine
Modulo tei
Membri add addSpan figure fw note
Attributi
place
Stato Consigliato
Tipo di dati 1–∞ occorrenze di  xsd:Name separato da spazio bianco
I valori suggeriti includono:
below
al di sotto della linea
bottom
margine inferiore
margin
in the margin (left, right, or both)
top
nel margine superiore
opposite
nella pagina accanto
overleaf
dall'altro lato del foglio
above
al di sopra della linea
end
alla fine del capitolo o del volume
inline
within the body of the text.
inspace
in a predefined space, for example left by an earlier scribe.
<add place="margin">[An addition written in the margin]</add>
<add place="bottom opposite">[An addition written at the
foot of the current page and also on the facing page]</add>
<note place="bottom">Ibid, p.7</note>

att.pointing

att.pointing definisce un insieme di attributi usati da tutti gli elementi che puntano ad altri elementi tramite uno o più URI
Modulo linking
Membri ptr ref
Attributi
type fornisce una classificazione per il puntatore utilizzando una tassonomia funzionale
Stato Opzionale
Tipo di dati xsd:Name
Valori The type should indicate the intended function of the pointer, or the rhetorical relationship between its source and target.
evaluate indica il significato previsto quando la destinazione di un puntatore è essa stessa un puntatore
Stato Opzionale
I valori legali sono:
all
se l'elemento puntato è esso stesso un puntatore, allora sarà presa la destinazione di quel puntatore e così via fino a trovare un elemento che non è un puntatore
one
se l'elemento puntato è esso stesso un puntatore, allora la sua destinazione (che sia un puntatore o meno) è presa come destinazione del puntatore
none
non viene condotta altra valutazione delle destinazioni se non quella necessaria a rintracciare l'elemento specificato nella destinazione del puntatore

att.ranging

att.ranging provides attributes for describing numerical ranges.
Modulo tei
Membri att.dimensions [att.damaged [damage damageSpan] att.editLike [att.transcriptional [add addSpan del delSpan restore subst] affiliation age am birth corr date death education event ex expan faith floruit gap langKnowledge langKnown location nationality occupation org orgName origDate origPlace origin persName person place placeName population reg relation residence sex socecStatus supplied trait unclear] depth dim dimensions height space width]
Attributi
atLeast gives a minimum estimated value for the measurement.
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
atMost gives a maximum estimated value for the measurement.
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
min where the measurement summarizes more than one observation, supplies the minimum value observed.
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
max where the measurement summarizes more than one observation, supplies the maximum value observed.
Stato Opzionale
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal

att.segLike

att.segLike assegna degli attributi agli elementi usati per una segmentazione arbitraria
Modulo tei
Membri seg
Attributi
function caratterizza la funzione del segmento
Stato Opzionale
Tipo di dati xsd:Name
Valori For a <cl>, may take values such as coordinate, subject, adverbial etc. For a <phr>, such values as subject, predicate etc. may be more appropriate.
part specifica se il segmento è suddiviso in ulteriori elementi strutturali, come per esempio una frase divisa in due o più proposizioni
Stato Obbligatorio se applicabile
I valori legali sono:
Y
(sì) il segmento è incompleto
N
(no) il segmento è completo o non viene fatto alcun riferimento alla sua completezza [Valore di default]
I
(iniziale) parte iniziale di un segmento incompleto
M
(mediano) parte mediana di un segmento incompleto
F
(finale) parte finale di un segmento incompleto

att.sourced

att.sourced provides attributes identifying the source edition from which some encoded feature derives.
Modulo tei
Membri cb lb milestone pb refState
Attributi
ed (edition) supplies an arbitrary identifier for the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text.
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori Any string of characters; usually a siglum conventionally used for the edition.
Esempio
<l>Of Mans First Disobedience,<lb ed="1674"/> and<lb ed="1667"/> the Fruit</l>
<l>Of that Forbidden Tree, whose<lb ed="1667 1674"/> mortal tast</l>
<l>Brought Death into the World,<lb ed="1667"/> and all<lb ed="1674"/> our woe,</l>

att.spanning

att.spanning assegna degli attributi agli elementi che delimitano una porzione di testo utilizzando dei puntatori invece di racchiudere il testo stesso
Modulo tei
Membri addSpan damageSpan delSpan index
Attributi
spanTo indica la fine della porzione di testo che ha inizio con l'elemento a cui è assegnato l'attributo
Stato Obbligatorio se applicabile
Tipo di dati xsd:anyURI
Valori points to an element following this one in the current document.

att.transcriptional

att.transcriptional assegna degli attributi propri degli elementi che descrivono il carattere di un intervento dell'autore o del trascrittore di un testo nella redazione di un manoscritto o di altra fonte simile
Modulo tei
Membri add addSpan del delSpan restore subst
Attributi att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
hand indica il responsabile dell'aggiunta o della cancellazione
Stato Opzionale
Tipo di dati xsd:anyURI
Valori must refer to a handNote element, typically declared in the document header (see section ??).
status indica l'effetto dell'intervento, per esempio in caso di cancellazione, quando questa comprenda troppo testo o troppo poco, o in caso di aggiunta, quando questa riproduce parte del testo già presente
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
duplicate
l'intero testo identificato come aggiunta riproduce parte del testo già presente nell'originale, indipendentemente dal fatto che la riproduzione sia esatta (parola per parola) o meno
duplicate-partial
una parte del testo identificato come aggiunta riproduce parte del testo già presente nell'originale
excessStart
una parte del testo all'inizio della cancellazione è identificata come cancellata anche se chiaramente non dovrebbe esserlo
excessEnd
una parte del testo alla fine della cancellazione è identificata come cancellata anche se chiaramente non dovrebbe esserlo
shortStart
una parte del testo all'inizio della cancellazione non è identificata come cancellata anche se chiaramente dovrebbe esserlo
shortEnd
una parte del testo alla fine della cancellazione non è identificata come cancellata anche se chiaramente dovrebbe esserlo
partial
una parte del testo all'interno della cancellazione non è identificata come cancellata anche se chiaramente dovrebbe esserlo
unremarkable
la cancellazione non è erronea [Valore di default]
seq (sequenza) stabilisce un numero sequenziale relativo all'ordine in cui si ritiene che ricorrano i tratti codificati ai quali è assegnato tale attributo
Stato Obbligatorio se applicabile
Tipo di dati xsd:nonNegativeInteger

att.translatable

att.translatable assegna degli attributi utilizzati per indicare lo status di una porzione traducibile di un documento isolato
Modulo tei
Membri desc gloss
Attributi
version indica nome o numero di versione dell'originale da cui deriva la versione tradotta
Stato Opzionale
Tipo di dati token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }

att.typed

att.typed assegna degli attributi generici utilizzabili per qualsiasi classificazione e sottoclassificazione di elementi
Modulo tei
Membri accMat add addName addSpan altIdentifier anchor bibl bloc cb charProp corr country custEvent damage damageSpan date decoNote del delSpan dim district div event explicit filiation finalRubric forename g genName geogFeat gloss head incipit lb lg listBibl listEvent listOrg listPerson listPlace location mapping milestone msName name nameLink offset org orgName origDate pb persName place placeName population quote reg region relatedItem relationGrp restore roleName rubric seal seg settlement stamp surname term text trait
Attributi
type caratterizza l'elemento utilizzando una classificazione o tipologia funzionale
Stato Opzionale
Tipo di dati xsd:Name
subtype stabilisce, se necessario, una sottocategorizzazione dell'elemento
Stato Opzionale
Tipo di dati xsd:Name

Schema enrich: Macros

macro.limitedContent

macro.limitedContent (paragraph content) defines the content of prose elements that are not used for transcription of extant materials.
Modulo tei
Usato da
Dichiarazione
macro.limitedContent = ( text | model.limitedPhrase | model.inter )*

macro.paraContent

macro.paraContent (contenuto di paragrafo) definisce il contenuto di paragrafi ed elementi simili
Modulo tei
Usato da
Dichiarazione
macro.paraContent =
   ( text | model.gLike | model.phrase | model.inter | model.global )*

macro.phraseSeq

macro.phraseSeq (sequenza sintagmatica) definisce una sequenza di caratteri ed elementi di tipo sintagmatico
Modulo tei
Usato da
Dichiarazione
macro.phraseSeq = ( text | model.gLike | model.phrase | model.global )*

macro.phraseSeq.limited

macro.phraseSeq.limited (limited phrase sequence) defines a sequence of character data and those phrase-level elements that are not typically used for transcribing extant documents.
Modulo tei
Usato da
Dichiarazione
macro.phraseSeq.limited = ( text | model.limitedPhrase | model.global )*

macro.specialPara

macro.specialPara (contenuto di paragrafo "speciale") definisce il modello di contenuto di elementi quali note o voci di lista che contiene una serie di elementi a livello di componenti aventi la stessa struttura di un paragrafo con una serie di elementi a livello sintagmatico e interlivello
Modulo tei
Usato da
Dichiarazione
macro.specialPara =
   (
      text
    | model.gLikemodel.phrasemodel.intermodel.divPartmodel.global
   )*

macro.xtext

macro.xtext (testo esteso) definisce una sequenza di caratteri ed elementi gaiji
Modulo tei
Usato da
Dichiarazione
macro.xtext = ( text | model.gLike )*

Schema enrich: Elements

<TEI>

<TEI> (documento TEI) contiene un documento TEI-conforme, comprendente un'intestazione e un testo, sia esso isolato o parte di un elemento <teiCorpus> http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DS http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCDEF
Modulo textstructure
Oltre agli attributi globali
version versione dello schema TEI
Stato Opzionale
Tipo di dati xsd:decimal
Valori A number identifying the version of the TEI guidelines
Usato da
Può contenere
header: teiHeader
textstructure: text
transcr: facsimile
Dichiarazione
                        element 
                        TEI
{
   att.global.attributes,
   attribute version { xsd:decimal }?,
   ( teiHeader, ( ( model.resourceLike+, text? ) | text ) )
}

<s:ns prefix="tei" uri="http://www.tei-c.org/ns/1.0"/>

<s:ns prefix="rng" uri="http://relaxng.org/ns/structure/1.0"/>
Esempio
<TEI>
 <teiHeader>
  <fileDesc>
   <titleStmt>
    <title>The shortest TEI Document Imaginable</title>
   </titleStmt>
   <publicationStmt>
    <p>First published as part of TEI P2.</p>
   </publicationStmt>
   <sourceDesc>
    <p>No source: this is an original work.</p>
   </sourceDesc>
  </fileDesc>
 </teiHeader>
 <text>
  <body>
   <p>This is about the shortest TEI document imaginable.</p>
  </body>
 </text>
</TEI>

<abbr>

<abbr> (abbreviazione) contiene un'abbreviazione di qualsiasi genere. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONAAB
Modulo core
Oltre agli attributi globali
type pemette al codificatore di classificare l'abbreviazione secondo una tipologia funzionale.
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
suspension
l'abbreviazione consiste delle prime lettere di una parola o sintagma, omettendo il restante.
contraction
l'abbreviazione omette alcune lettere nella parte centrale.
brevigraph
l'abbreviazione consiste di un simbolo o segno speciale.
superscription
l'abbreviazione include testo scritto al di sopra della linea.
acronym
l'abbreviazione consiste delle lettere iniziali delle una parola di una frase.
title
labbreviazione si riferisce al titolo (Sig., Sig.ra ecc.)
organization
l'abbreviazione si riferisce al nome di un organizzazione.
geographic
l'abbreviazione si riferisce ad un toponimo
Usato da
Può contenere
Dichiarazione
                        element 
                        abbr
{
   att.global.attributes,
   attribute type { xsd:Name }?,
   macro.phraseSeq
}
Esempio
<abbr>SPQR</abbr>
Esempio
<choice>
 <abbr>SPQR</abbr>
 <expan>senatus populusque romanorum</expan>
</choice>

<accMat>

<accMat> (materiale allegato) contiene eventuali dettagli riguardanti maeriale aggiuntivo strettamente collegato al manoscritto in esame, per esempio documenti non attali o frammenti rilegati insieme al manoscritto in un periodo storico precedente a quello attuale 1.5.3.3 Accompanying Material
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        accMat
{
   att.global.attributes,
   att.typed.attributes,
   macro.specialPara
}
Esempio
<accMat>A copy of a tax form from 1947 is included in the envelope
with the letter. It is not catalogued separately.</accMat>

<acquisition>

<acquisition> contiene informazioni relative al processo di acquisizione di un manoscritto o di una sua parte 1.6 History
Modulo msdescription
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
Dichiarazione
                        element 
                        acquisition
{
   att.global.attributes,
   att.datable.attributes,
   macro.specialPara
}
Esempio
<acquisition>Left to the <name type="place">Bodleian</name> by
<name type="person">Richard Rawlinson</name> in 1755.
</acquisition>

<add>

<add> (aggiunta) contiene lettere, parole o frasi inserite in un testo da un autore, copista, commentatore o correttore. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COEDADD
Modulo core
Oltre agli attributi globali att.transcriptional (@hand, @status, @seq) (att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) ) att.placement (@place) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        add
{
   att.global.attributes,
   att.transcriptional.attribute.hand,
   att.transcriptional.attribute.status,
   att.transcriptional.attribute.seq,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.placement.attributes,
   att.typed.attributes,
   macro.paraContent
}
Esempio
The story I am going to relate is true as to
its main facts, and as to the consequences <add place="above">of
these facts</add> from which this tale takes its title.

<addName>

<addName> (nome aggiuntivo) contiene una componente aggiuntiva del nome, come un soprannome, un epiteto, o eventuali altre espressioni utilizzate all'interno di un nome proprio di persona http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPER
Modulo namesdates
Oltre agli attributi globali att.personal (@full, @sort) (att.naming (@nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        addName
{
   att.global.attributes,
   att.personal.attributes,
   att.typed.attributes,
   macro.phraseSeq
}
Esempio
<persName>
 <forename>Frederick</forename>
 <addName type="epithet">the Great</addName>
 <roleName>Emperor of Prussia</roleName>
</persName>

<addSpan>

<addSpan> (porzione di testo aggiunta) segnala l'inizio di una porzione di testo più lunga aggiunta da un autore, un trascrittore, un annotatore o un correttore (vedi anche add) http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHAD
Modulo transcr
Oltre agli attributi globali att.transcriptional (@hand, @status, @seq) (att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) ) att.placement (@place) att.typed (@type, @subtype) att.spanning (@spanTo)
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        addSpan
{
   att.global.attributes,
   att.transcriptional.attribute.hand,
   att.transcriptional.attribute.status,
   att.transcriptional.attribute.seq,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.placement.attributes,
   att.typed.attributes,
   att.spanning.attributes,
   empty
}

<s:assert test="@spanTo">The spanTo= attribute of <s:name/>
is required.</s:assert>
Esempio
<handNote xml:id="HEOL" scribe="HelgiÓlafsson"/>
<!-- ... -->
<body>
 <div>
<!-- text here -->
 </div>
 <addSpan n="added gathering" hand="#HEOL" spanTo="#P025"/>
 <div>
<!-- text of first added poem here -->
 </div>
 <div>
<!-- text of second added poem here -->
 </div>
 <div>
<!-- text of third added poem here -->
 </div>
 <div>
<!-- text of fourth added poem here -->
 </div>
 <anchor xml:id="P025"/>
 <div>
<!-- more text here -->
 </div>
</body>

<additional>

<additional> raggruppa ulteriori informazioni combinando informazioni bibliografiche relative al manoscritto o a copie surrogate dello stesso con informazioni di carattere curatoriale o amministrativo 1.7 Additional information
Modulo msdescription
Usato da
Può contenere
core: listBibl
msdescription: adminInfo surrogates
Dichiarazione
                        element 
                        additional
{
   att.global.attributes,
   ( adminInfo?, surrogates?, listBibl? )
}
Esempio
<additional>
 <adminInfo>
  <recordHist>
<!-- record history here -->
  </recordHist>
  <custodialHist>
<!-- custodial history here -->
  </custodialHist>
 </adminInfo>
 <surrogates>
<!-- information about surrogates here -->
 </surrogates>
 <listBibl>
<!-- full bibliography here -->
 </listBibl>
</additional>

<additions>

<additions> contiene un descrizione di qualsiasi aggiunta significativa trovata all'interno di un manoscritto come note a margine o altre annotazioni 1.5.2 Writing, Decoration, and Other Notations
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element additions { att.global.attributes, macro.specialPara }
Esempio
<additions>
 <p>There are several marginalia in this manuscript. Some consist of
   single characters and others are figurative. On 8v is to be found a drawing of
   a mans head wearing a hat. At times sentences occurs: On 5v:
 <q xml:lang="is">Her er skrif andres isslendin</q>,
   on 19r: <q xml:lang="is">þeim go</q>,
   on 21r: <q xml:lang="is">amen med aund ok munn halla rei knar hofud summu all huad
     batar þad mælgi ok mal</q>,
   On 21v: some runic letters and the sentence <q xml:lang="la">aue maria gracia plena dominus</q>.</p>
</additions>

<addrLine>

<addrLine> (riga dell'indirizzo) contiene una riga di un indirizzo (postale). http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONAAD http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOI
Modulo core
Usato da
Può contenere
Dichiarazione
element addrLine { att.global.attributes, macro.phraseSeq }
Esempio
<address>
 <addrLine>Computing Center, MC 135</addrLine>
 <addrLine>P.O. Box 6998</addrLine>
 <addrLine>Chicago, IL</addrLine>
 <addrLine>60680 USA</addrLine>
</address>

<adminInfo>

<adminInfo> (informazioni amministrative) contiene informazioni relative alla gestione e disponibilità del manoscritto e alla descrizione stessa della documentazione 1.7.1 Administrative information
Modulo msdescription
Usato da
Può contenere
core: note
header: availability
msdescription: custodialHist recordHist
Dichiarazione
                        element 
                        adminInfo
{
   att.global.attributes,
   ( recordHist?, availability?, custodialHist?, model.noteLike? )
}
Esempio
<adminInfo>
 <recordHist>
  <source>Record created <date>1 Aug 2004</date>
  </source>
 </recordHist>
 <availability>
  <p>Until 2015 permission to photocopy some materials from this
     collection has been limited at the request of the donor. Please ask repository staff for details
     if you are interested in obtaining photocopies from Series 1:
     Correspondence.</p>
 </availability>
 <custodialHist>
  <p>Collection donated to the Manuscript Library by the Estate of
     Edgar Holden in 1993. Donor number: 1993-034.</p>
 </custodialHist>
</adminInfo>

<affiliation>

<affiliation> (affiliation) contiene una descrizione informale dell'appartenenza presente o passata di una persona a una determinata organizzazione, per esempio un'azienda o un ente finanziatore http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHPA
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
Dichiarazione
                        element 
                        affiliation
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   att.naming.attributes,
   macro.phraseSeq
}
Esempio
<affiliation>Junior project officer for the US <name type="org">National Endowment for
   the Humanities</name>
</affiliation>
<affiliation notAfter="1960-01-01" notBefore="1957-02-28">Paid up member of the
<orgName>Australian Journalists Association</orgName>
</affiliation>

<age>

<age> (age) indica l'età della persona
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
value assegna un codice numerco che rappresenta l'età o la fascia di età
Stato Opzionale
Tipo di dati xsd:nonNegativeInteger
Usato da
Può contenere
Dichiarazione
                        element 
                        age
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   attribute value { xsd:nonNegativeInteger }?,
   macro.phraseSeq.limited
}
Esempio
<age value="2" notAfter="1986">under 20 in the early eighties</age>

<altIdentifier>

<altIdentifier> (identificatore alternativo.) contiene un identificatore strutturato alternativo o precedente utilizzato per un manoscritto, per esempio un precedente numero di catalogazione 1.2 The Manuscript Identifier
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype)
type caratterizza l'elemento utilizzando una classificazione o tipologia funzionale
Stato Richiesto
Tipo di dati xsd:Name
I valori legali sono:
former
former catalogue or shelf number
system
former system identifier (Manuscriptorium specific)
partial
identifier of a previously distinct item
internal
internal project identifier
other
unspecified [Valore di default]
Usato da
Può contenere
Dichiarazione
                        element 
                        altIdentifier
{
   att.global.attributes,
   attribute type { "former" | "system" | "partial" | "internal" | "other" },
   att.typed.attribute.subtype,
   (
      model.placeNamePart_sequenceOptional,
      institution?,
      repository?,
      collection?,
      idno,
      note?
   )
}
Esempio
<altIdentifier>
 <settlement>San Marino</settlement>
 <repository>Huntington Library</repository>
 <idno>MS.El.26.C.9</idno>
</altIdentifier>

<am>

<am> (marcatore di abbreviazione) contiene una sequenza di lettere o segni presenti in un'abbreviazione e omessi o sostituiti nella forma estesa dell'abreviazione stessa http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHAB
Modulo transcr
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        am
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   ( text | model.gLike | model.pPart.transcriptional )*
}
Esempio
do you
<abbr>Mr<am>.</am>
</abbr> Jones?

<anchor>

<anchor> (punto di ancoraggio) aggancia un indentificatore a una posizione all'interno del testo indipendentemente dal fatto che questa corrisponda o meno a un elemento testuale http://www.tei-c.org/release/doc/tei-p5-doc/it/html/TS.html#TSSAPA http://www.tei-c.org/release/doc/tei-p5-doc/it/html/SA.html#SACS
Modulo linking
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere Elemento vuoto
Dichiarazione
element anchor { att.global.attributes, att.typed.attributes, empty }
Esempio
<s>The anchor is he<anchor xml:id="A234"/>re somewhere.</s>
<s>Help me find it.<ptr target="#A234"/>
</s>

<author>

<author> in un riferimento bibliografico contiene il nome dell'autore (o degli autori), personale o collettivo, di un'opera; è la dichiarazione di responsabilità primaria di ciascuna unità bibliografica. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOR http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD21
Modulo core
Oltre agli attributi globali att.canonical (@key, @ref)
Usato da
Può contenere
Dichiarazione
                        element 
                        author
{
   att.global.attributes,
   att.canonical.attributes,
   macro.phraseSeq
}
Esempio
<author>British Broadcasting Corporation</author>
<author>La Fayette, Marie Madeleine Pioche de la Vergne, comtesse de (1634–1693)</author>
<author>Anonymous</author>
<author>Bill and Melinda Gates</author>
<author>
 <persName>Beaumont, Francis</persName> and
<persName>John Fletcher</persName>
</author>
<author>
 <orgName key="BBC">British Broadcasting
   Corporation</orgName>: Radio 3 Network
</author>

<authority>

<authority> (autorità di pubblicazione) fornisce il nome di una persona o di un'organizzazione responsabile della messa a disposizione di un file elettronico, diversa dalll'editore o dal distributore. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24
Modulo header
Usato da
Può contenere
Dichiarazione
element authority { att.global.attributes, macro.phraseSeq.limited }
Esempio
<authority>John Smith</authority>

<availability>

<availability> fornisce informazioni sulla disponibilità di un testo, per esempio su qualsiasi restrizione che si applica alla sua utilizzazione o distribuzione, il suo statuto in merito al copyright, etc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24
Modulo header
Oltre agli attributi globali att.declarable (@default)
status fornisce un codice che identifica l'attuale disponibilità del testo.
Stato Richiesto
I valori legali sono:
free
unknown
[Valore di default]
restricted
Usato da
Può contenere
core: p
Dichiarazione
                        element 
                        availability
{
   attribute status { "free" | "unknown" | "restricted" },
   att.global.attributes,
   att.declarable.attributes,
   model.pLike+
}
Esempio
<availability status="restricted">
 <p>Available for academic research purposes only.</p>
</availability>
<availability status="free">
 <p>In the public domain</p>
</availability>
<availability status="restricted">
 <p>Available under licence from the publishers.</p>
</availability>

<back>

<back> (peritesto finale) contiene qualsiasi appendice che segua il testo vero e proprio http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSBACK http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DS
Modulo textstructure
Oltre agli attributi globali att.declaring (@decls)
Usato da
Può contenere
Dichiarazione
                        element 
                        back
{
   att.global.attributes,
   att.declaring.attributes,
   (
      ( model.frontPart | model.pLike.front | model.global )*,
      (
         (
            (
               ( model.div1Like ),
               ( model.frontPart | model.div1Like | model.global )*
            )
          | (
               ( model.divLike ),
               ( model.frontPart | model.divLike | model.global )*
            )
         )?
      ),
      ( ( ( model.divBottomPart ), ( model.divBottomPart | model.global )* )? )
   )
}
Esempio
<back>
 <div1 type="appendix">
  <head>The Golden Dream or, the Ingenuous Confession</head>
  <p>To shew the Depravity of human Nature </p>
 </div1>
 <div1 type="epistle">
  <head>A letter from the Printer, which he desires may be inserted</head>
  <salute>Sir.</salute>
  <p>I have done with your Copy, so you may return it to the Vatican, if you please </p>
 </div1>
 <div1 type="advert">
  <head>The Books usually read by the Scholars of Mrs Two-Shoes are these and are sold at Mr
     Newbery's at the Bible and Sun in St Paul's Church-yard.</head>
  <list>
   <item n="1">The Christmas Box, Price 1d.</item>
   <item n="2">The History of Giles Gingerbread, 1d.</item>
   <item n="42">A Curious Collection of Travels, selected from the Writers of all Nations,
       10 Vol, Pr. bound 1l.</item>
  </list>
 </div1>
 <div1 type="advert">
  <head>
   <hi rend="center">By the KING's Royal Patent,</hi> Are sold by J. NEWBERY, at the
     Bible and Sun in St. Paul's Church-Yard.</head>
  <list>
   <item n="1">Dr. James's Powders for Fevers, the Small-Pox, Measles, Colds, &amp;c.
       2s. 6d</item>
   <item n="2">Dr. Hooper's Female Pills, 1s.</item>
  </list>
 </div1>
</back>

<bibl>

<bibl> (citazione bibliografica) contiene una citazione bibliografica strutturata liberamente i cui componeneti potrebbero o meno essere codificati esplicitamente. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBITY http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD3 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAS2
Modulo core
Oltre agli attributi globali att.declarable (@default) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        bibl
{
   att.global.attributes,
   att.declarable.attributes,
   att.typed.attributes,
   (
      text
    | model.gLikemodel.highlightedmodel.pPart.datamodel.pPart.editmodel.segLikemodel.ptrLikemodel.biblPartmodel.global
   )*
}
Esempio
<bibl>Blain, Clements and Grundy: Feminist Companion to Literature in English (Yale,
1990)</bibl>
Esempio
<bibl>
 <title level="a">The Interesting story of the Children in the Wood</title>. In
<author>Victor E Neuberg</author>, <title>The Penny Histories</title>.
<publisher>OUP</publisher>
 <date>1968</date>.
</bibl>

<biblScope>

<biblScope> (estensione del riferimento bibliografico) definisce l'estensione di un riferimento bibliografico, per esempio mediante una lista di numeri di pagina, o il titolo di una parte di un'opera più ampia. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOI
Modulo core
Oltre agli attributi globali
type identifica il tipo di informazione veicolata dall'elemento, ad esempio pagine, volume.
Stato Richiesto
Tipo di dati xsd:Name
I valori legali sono:
volume
pages
[Valore di default]
from specifies the starting point of the range of units indicated by the type attribute.
Stato Opzionale
Tipo di dati token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
to specifies the end-point of the range of units indicated by the type attribute.
Stato Opzionale
Tipo di dati token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Usato da
Può contenere
Dichiarazione
                        element 
                        biblScope
{
   attribute type { "volume" | "pages" },
   attribute from { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } }?,
   attribute to { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } }?,
   att.global.attributes,
   macro.phraseSeq
}
Esempio
<biblScope>pp 12–34</biblScope>
<biblScope type="pp" from="12" to="34"/>
<biblScope type="vol">II</biblScope>
<biblScope type="pp">12</biblScope>

<binding>

<binding> contiene la descrizione di una legatura, cioè del tipo di copertine, tavole, ecc. utilizzate per il manoscritto 1.5.3.1 Binding Descriptions
Modulo msdescription
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
contemporary specifica se la legatura è coeva o meno rispetto alla maggior parte del suo contenuto
Stato Opzionale
Tipo di dati xsd:boolean | "unknown" | "inapplicable"
Usato da
Può contenere
core: p
msdescription: condition decoNote
Dichiarazione
                        element 
                        binding
{
   att.global.attributes,
   att.datable.attributes,
   attribute contemporary { xsd:boolean | "unknown" | "inapplicable" }?,
   ( model.pLike | condition | decoNote )+
}
Esempio
<binding contemporary="true">
 <p>Contemporary blind stamped leather over wooden boards with evidence of a fore edge clasp
   closing to the back cover.</p>
</binding>
Esempio
<bindingDesc>
 <binding contemporary="false">
  <p>Quarter bound by the Phillipps' binder, Bretherton, with his sticker on the front
     pastedown.</p>
 </binding>
 <binding contemporary="false">
  <p>Rebound by an unknown 19th c. company; edges cropped and gilt.</p>
 </binding>
</bindingDesc>

<bindingDesc>

<bindingDesc> (descrizione della rilegatura) descrive la legatura attuale e precedente di un manoscritto sotto forma di una serie di paragrafi o di una serie di diversi elementi binding, uno per ogni legatura del manoscritto 1.5.3.1 Binding Descriptions
Modulo msdescription
Usato da
Può contenere
core: p
msdescription: binding condition decoNote
Dichiarazione
                        element 
                        bindingDesc
{
   att.global.attributes,
   ( ( model.pLike | decoNote | condition )+ | binding+ )
}
Esempio
<bindingDesc>
 <p>Sewing not visible; tightly rebound over
   19th-cent. pasteboards, reusing panels of 16th-cent. brown leather with
   gilt tooling à la fanfare, Paris c. 1580-90, the centre of each
   cover inlaid with a 17th-cent. oval medallion of red morocco tooled in
   gilt (perhaps replacing the identifying mark of a previous owner); the
   spine similarly tooled, without raised bands or title-piece; coloured
   endbands; the edges of the leaves and boards gilt.Boxed.</p>
</bindingDesc>

<birth>

<birth> (birth) contiene informazioni relative al luogo e alla data di nascita di una persona http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHPA
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
Dichiarazione
                        element 
                        birth
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   att.naming.attributes,
   macro.phraseSeq
}
Esempio
<birth>Before 1920, Midlands region.</birth>
Esempio
<birth when="1960-12-10">In a small cottage near <name type="place">Aix-la-Chapelle</name>,
early in the morning of <date>10 Dec 1960</date>
</birth>

<bloc>

<bloc> (bloc) contiene il nome di un'unità geopolitica comprendente uno o più stati nazione o paesi http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPLAC
Modulo namesdates
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
Dichiarazione
                        element 
                        bloc
{
   att.global.attributes,
   att.naming.attributes,
   att.typed.attributes,
   att.datable.attributes,
   macro.phraseSeq
}
Esempio
<bloc type="union">the European Union</bloc>
<bloc type="continent">Africa</bloc>

<body>

<body> (corpo del testo) contiene l'intero corpo di un testo unitario, esclusi eventuale peritesto iniziale e finale http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DS
Modulo textstructure
Oltre agli attributi globali att.declaring (@decls)
Usato da
Può contenere
Dichiarazione
                        element 
                        body
{
   att.global.attributes,
   att.declaring.attributes,
   (
      model.global*,
      ( ( model.divTop ), ( model.global | model.divTop )* )?,
      ( ( model.divGenLike ), ( model.global | model.divGenLike )* )?,
      (
         ( ( model.divLike ), ( model.global | model.divGenLike )* )+
       | ( ( model.div1Like ), ( model.global | model.divGenLike )* )+
       | (
            ( ( model.common ), model.global* )+,
            (
               ( ( model.divLike ), ( model.global | model.divGenLike )* )+
             | ( ( model.div1Like ), ( model.global | model.divGenLike )* )+
            )?
         )
      ),
      ( ( model.divBottom ), model.global* )*
   )
}
Esempio
<body>
 <l>Nu scylun hergan hefaenricaes uard</l>
 <l>metudæs maecti end his modgidanc</l>
 <l>uerc uuldurfadur sue he uundra gihuaes</l>
 <l>eci dryctin or astelidæ</l>
 <l>he aerist scop aelda barnum</l>
 <l>heben til hrofe haleg scepen.</l>
 <l>tha middungeard moncynnæs uard</l>
 <l>eci dryctin æfter tiadæ</l>
 <l>firum foldu frea allmectig</l>
 <trailer>primo cantauit Cædmon istud carmen.</trailer>
</body>

<catDesc>

<catDesc> (descrizione della categoria) descrive una categoria all'interno di una tassonomia o tipologia di testo, sotto forma di una breve descrizione in prosa o secondo i parametri situazionali usati in modo formale dall'elemento TEI testDesc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD55
Modulo header
Usato da
Può contenere
Dichiarazione
                        element 
                        catDesc
{
   att.global.attributes,
   ( text | model.limitedPhrase | model.catDescPart )*
}
Esempio
<catDesc>Prose reportage</catDesc>
Esempio
<catDesc>
 <textDesc n="novel">
  <channel mode="w">print; part issues</channel>
  <constitution type="single"/>
  <derivation type="original"/>
  <domain type="art"/>
  <factuality type="fiction"/>
  <interaction type="none"/>
  <preparedness type="prepared"/>
  <purpose type="entertain" degree="high"/>
  <purpose type="inform" degree="medium"/>
 </textDesc>
</catDesc>

<catRef>

<catRef> (riferimento alla categoria) specifica una o più categorie definite all'interno di una tassonomia o tipologia di testo http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD43
Modulo header
Oltre agli attributi globali
target identifica le categorie interessate
Stato Richiesto
Tipo di dati 1–∞ occorrenze di  xsd:anyURI separato da spazio bianco
Valori A series of one or more space-separated pointers (URIs) to category elements, typically located within a taxonomy element inside a TEI header.
scheme identifica lo schema di classificazione all'interno del quale sono definite le categorie interessate.
Stato Opzionale
Tipo di dati xsd:anyURI
Valori May supply the identifier of the associated taxonomy element.
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        catRef
{
   att.global.attributes,
   attribute target { list { xsd:anyURI+ } },
   attribute scheme { xsd:anyURI }?,
   empty
}
Esempio
<catRef target="#news #prov #sales2"/>
<!-- elsewhere -->
<taxonomy>
 <category xml:id="news">
  <catDesc>Newspapers</catDesc>
 </category>
 <category xml:id="prov">
  <catDesc>Provincial</catDesc>
 </category>
 <category xml:id="sales2">
  <catDesc>Low to average annual sales</catDesc>
 </category>
</taxonomy>

<catchwords>

<catchwords> descrive il sistema utilizzato per garantire l'ordinamento corretto dei quaderni che costituiscono un codice o incunabolo, ottenuto solitamente tramite annotazioni a piè di pagina 1.1.7 Catchwords, Signatures, Secundo Folio
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element catchwords { att.global.attributes, macro.phraseSeq }

<category>

<category> contiene una sola categoria descrittiva, possibilmente innestata in una categoria più generale, all'interno di una tassonomia definita dall'utente. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD55
Modulo header
Usato da
Può contenere
core: desc gloss
header: catDesc category
Dichiarazione
                        element 
                        category
{
   att.global.attributes,
   ( ( catDesc | model.glossLike* ), category* )
}
Esempio
<category xml:id="b1">
 <catDesc>Prose reportage</catDesc>
</category>
Esempio
<category xml:id="b2">
 <catDesc>Prose </catDesc>
 <category xml:id="b11">
  <catDesc>reportage</catDesc>
 </category>
 <category xml:id="b12">
  <catDesc>fiction</catDesc>
 </category>
</category>

<cb>

<cb> (interruzione di colonna) indica il limite tra una colonna di un testo e la successiva in un sistema di riferimento standard http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CORS5
Modulo core
Oltre agli attributi globali att.typed (@type, @subtype) att.sourced (@ed)
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        cb
{
   att.global.attributes,
   att.typed.attributes,
   att.sourced.attributes,
   empty
}
Esempio

Markup of an early English dictionary printed in two columns:

<pb/>
<cb n="1"/>
<entryFree>
 <form>Well</form>, <sense>a Pit to hold Spring-Water</sense>:
<sense>In the Art of <hi rend="italic">War</hi>, a Depth the Miner
   sinks into the Ground, to find out and disappoint the Enemies Mines,
   or to prepare one</sense>.
</entryFree>
<entryFree>To <form>Welter</form>, <sense>to wallow</sense>, or
<sense>lie groveling</sense>.</entryFree>
<!-- remainder of column -->
<cb n="2"/>
<entryFree>
 <form>Wey</form>, <sense>the greatest Measure for dry Things,
   containing five Chaldron</sense>.
</entryFree>
<entryFree>
 <form>Whale</form>, <sense>the greatest of
   Sea-Fishes</sense>.
</entryFree>

<change>

<change> sintetizza un particolare cambiamento o correzione effettuato ad una particolare versione di un documento elettronico, condivisa da più ricercatori. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD6
Modulo header
Oltre agli attributi globali att.ascribed (@who)
when indica la data della modifica nel formato standard aaaa-mm-gg
Stato Obbligatorio se applicabile
Tipo di dati xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Valori a date, time, or date & time in any of the formats defined in XML Schema Part 2: Datatypes Second Edition
Usato da
Può contenere
Dichiarazione
                        element 
                        change
{
   att.global.attributes,
   att.ascribed.attributes,
   attribute 
                        when
   {
      xsd:date
    | xsd:gYear
    | xsd:gMonth
    | xsd:gDay
    | xsd:gYearMonth
    | xsd:gMonthDay
    | xsd:time
    | xsd:dateTime
   }?,
   ( text | model.limitedPhrase | model.inter | model.global )*
}
Esempio
<titleStmt>
 <title> ... </title>
 <editor xml:id="LDB">Lou Burnard</editor>
 <respStmt xml:id="BZ">
  <resp>copy editing</resp>
  <name>Brett Zamir</name>
 </respStmt>
</titleStmt>
<!-- ... -->
<revisionDesc>
 <change who="#BZ" when="2008-02-02">Finished chapter 23</change>
 <change who="#BZ" when="2008-01-02">Finished chapter 2</change>
 <change n="P2.2" when="1991-12-21" who="#LDB">Added examples to section 3</change>
 <change when="1991-11-11" who="#MSM">Deleted chapter 10</change>
</revisionDesc>

<char>

<char> (carattere) fornisce informazioni descrittive su di un carattere.
Modulo gaiji
Usato da
Può contenere
Dichiarazione
                        element 
                        char
{
   att.global.attributes,
   (
      charName?,
      model.glossLike*,
      charProp*,
      mapping*,
      model.graphicLike*,
      model.noteLike*
   )
}
Esempio
<char xml:id="circledU4EBA">
 <charName>CIRCLED IDEOGRAPH 4EBA</charName>
 <charProp>
  <unicodeName>character-decomposition-mapping</unicodeName>
  <value>circle</value>
 </charProp>
 <charProp>
  <localName>daikanwa</localName>
  <value>36</value>
 </charProp>
 <mapping type="standard"></mapping>
</char>

<charDecl>

<charDecl> (descrizione del carattere) fornisce informazioni descrittive su un caratteri o glifi.
Modulo gaiji
Usato da
Può contenere
core: desc
gaiji: char glyph
Dichiarazione
element charDecl { att.global.attributes, ( desc?, ( char | glyph )+ ) }
Esempio
<charDecl>
 <char xml:id="aENL">
  <charName>LATIN LETTER ENLARGED SMALL A</charName>
  <mapping type="standardized">a</mapping>
 </char>
</charDecl>

<charName>

<charName> (nome del carattere.) contiene il nome di un carattere, espresso secondo le convenzioni Unicode.
Modulo gaiji
Usato da
Può contenere Ammessi soltanto caratteri di testo
Dichiarazione
element charName { att.global.attributes, text }
Esempio
<charName>CIRCLED IDEOGRAPH 4EBA</charName>

<charProp>

<charProp> (proprietà del carattere.) fornisce un nome e un valore per alcune proprietà di un carattere o glifo parente.
Modulo gaiji
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        charProp
{
   att.global.attributes,
   att.typed.attributes,
   ( ( unicodeName | localName ), value )
}
Esempio
<charProp>
 <unicodeName>character-decomposition-mapping</unicodeName>
 <value>circle</value>
</charProp>
<charProp>
 <localName>daikanwa</localName>
 <value>36</value>
</charProp>

<choice>

<choice> raggruppa un numero di codifiche alternative per la stessa porzione di testo.
Modulo core
Usato da
Può contenere
linking: seg
transcr: am ex
Dichiarazione
element choice { att.global.attributes, ( model.choicePart | choice )* }
Esempio

An American encoding of Gulliver's Travels which retains the British spelling but also provides a version regularized to American spelling might be encoded as follows.

<p>Lastly, That, upon his solemn oath to observe all the above
articles, the said man-mountain shall have a daily allowance of
meat and drink sufficient for the support of <choice>
  <sic>1724</sic>
  <corr>1728</corr>
 </choice> of our subjects,
with free access to our royal person, and other marks of our
<choice>
  <orig>favour</orig>
  <reg>favor</reg>
 </choice>.</p>

<classCode>

<classCode> (codice di clasificazione) contiene il codice di classificazione utilizzato per questo testo in un sistema di calssificazione standard. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD43
Modulo header
Oltre agli attributi globali
scheme idantifica il sistema di classificazione o la tassonomia utilizzati.
Stato Richiesto
Tipo di dati xsd:anyURI
Valori may point to a local definition, for example in a taxonomy element, or more usually to some external location where the scheme is fully defined.
Usato da
Può contenere
Dichiarazione
                        element 
                        classCode
{
   att.global.attributes,
   attribute scheme { xsd:anyURI },
   macro.phraseSeq.limited
}
Esempio
<classCode scheme="http://www.udc.org">410</classCode>

<classDecl>

<classDecl> (dichiarazioni sulla ckassificazione) contiene una o più tassonomie che definiscono un qualsiasi codice classificatorio usato in un'altra porzione del testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD55 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD5
Modulo header
Usato da
Può contenere
header: taxonomy
Dichiarazione
element classDecl { att.global.attributes, taxonomy+ }
Esempio
<classDecl>
 <taxonomy xml:id="LCSH">
  <bibl>Library of Congress Subject Headings</bibl>
 </taxonomy>
</classDecl>
<!-- ... -->
<textClass>
 <keywords scheme="#LCSH">
  <list>
   <item>Political science</item>
   <item>United States -- Politics and government —
       Revolution, 1775-1783</item>
  </list>
 </keywords>
</textClass>

<collation>

<collation> contiene una descrizione di come i fogli o bifolia siano fisicamente disposti 1.5.1 Object Description
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element collation { att.global.attributes, macro.specialPara }
Esempio
<collation>The written leaves preceded by an original flyleaf,
conjoint with the pastedown.</collation>
Esempio
<collation>
 <p>
  <formula>1-5.8 6.6 (catchword, f. 46, does not match following text)
     7-8.8 9.10, 11.2 (through f. 82) 12-14.8 15.8(-7)</formula>
  <catchwords>Catchwords are written horizontally in center
     or towards the right lower margin in various manners:
     in red ink for quires 1-6 (which are also signed in red
     ink with letters of the alphabet and arabic numerals);
     quires 7-9 in ink of text within yellow decorated frames;
     quire 10 in red decorated frame; quire 12 in ink of text;
     quire 13 with red decorative slashes; quire 14 added in
     cursive hand.</catchwords>
 </p>
</collation>

<collection>

<collection> contiene il nome di una raccolta di manoscritti non necessariamente collocati in un unico deposito 1.2 The Manuscript Identifier
Modulo msdescription
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        collection
{
   att.global.attributes,
   att.naming.attributes,
   macro.xtext
}
Esempio
<msIdentifier>
 <country>USA</country>
 <region>California</region>
 <settlement>San Marino</settlement>
 <repository>Huntington Library</repository>
 <collection>Ellesmere</collection>
 <idno>El 26 C 9</idno>
 <msName>The Ellesmere Chaucer</msName>
</msIdentifier>

<colophon>

<colophon> contiene il colophon di un manoscritto, ovvero una dichiarazione contenente informazioni relative a data, luogo, committente, o motivo della produzione del manoscritto 1.4.1 The <msItem> Element
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element colophon { att.global.attributes, macro.phraseSeq }
Esempio
<colophon>Ricardus Franciscus Scripsit Anno Domini
1447.</colophon>
Esempio
<colophon>Explicit expliceat/scriptor ludere eat.</colophon>
Esempio
<colophon>Explicit venenum viciorum domini illius, qui comparavit Anno
domini Millessimo Trecentesimo nonagesimo primo, Sabbato in festo
sancte Marthe virginis gloriose. Laus tibi criste quia finitur
libellus iste.</colophon>

<condition>

<condition> contiene una descrizione della condizione fisica del manoscritto 1.5.1.5 Condition
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element condition { att.global.attributes, macro.specialPara }
Esempio
<condition>
 <p>There are lacunae in three places in this
   manuscript. After 14v two
   leaves has been cut out and narrow strips leaves remains in the spine. After
   68v one gathering is missing and after 101v at least one gathering of 8 leaves
   has been lost. </p>
 <p>Several leaves are damaged with tears or holes or have a
   irregular shape. Some of the damages do not allow the lines to be of full
   length and they are apparently older than the script. There are tears on fol.
   2r-v, 9r-v, 10r-v, 15r-18v, 19r-v, 20r-22v, 23r-v, 24r-28v, 30r-v, 32r-35v,
   37r-v, 38r-v, 40r-43v, 45r-47v, 49r-v, 51r-v, 53r-60v, 67r-v, 68r-v, 70r-v,
   74r-80v, 82r-v, 86r-v, 88r-v, 89r-v, 95r-v, 97r-98v 99r-v, 100r-v. On fol. 98
   the corner has been torn off. Several leaves are in a bad condition due to
   moist and wear, and have become dark, bleached or
   wrinkled. </p>
 <p>The script has been
   touched up in the 17th century with black ink. The touching up on the following
   fols. was done by
 <name>Bishop Brynjólf Sveinsson</name>: 1v, 3r, 4r, 5r,
   6v, 8v,9r, 10r, 14r, 14v, 22r,30v, 36r-52v, 72v, 77r,78r,103r, 104r,. An
   AM-note says according to the lawman
 <name>Sigurður Björnsson</name> that the rest of the
   touching up was done by himself and another lawman
 <name>Sigurður Jónsson</name>.
 <name>Sigurður Björnsson</name> did the touching up
   on the following fols.: 46v, 47r, 48r, 49r-v, 50r, 52r-v.
 <name>Sigurður Jónsson</name> did the rest of the
   touching up in the section 36r-59r containing
 <title>Bretasögur</title>
 </p>
</condition>

<corr>

<corr> (correzione) contiene la forma corretta di un brano apparentemente erroneo nel testo copia. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COEDCOR
Modulo core
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        corr
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.typed.attributes,
   macro.paraContent
}
Esempio

If all that is desired is to call attention to the fact that the copy text has been corrected, corr may be used alone:

I don't know,
Juan. It's so far in the past now — how <corr>can we</corr> prove
or disprove anyone's theories?
Esempio

It is also possible, using the choice and sic elements, to provide an uncorrected reading:

I don't know, Juan. It's so far in the past now —
how <choice>
 <sic>we can</sic>
 <corr>can we</corr>
</choice> prove or
disprove anyone's theories?

<country>

<country> (country) contiene il nome di un'unità geopolitica, come una nazione, un paese, una colonia, o un'unione di stati, che sia più ampia o amministrativamente superiore rispetto a una regione ma di dimensioni inferiori rispetto a un blocco http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPLAC
Modulo namesdates
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
Dichiarazione
                        element 
                        country
{
   att.global.attributes,
   att.naming.attributes,
   att.typed.attributes,
   att.datable.attributes,
   macro.phraseSeq
}
Esempio
<country key="DK">Denmark</country>

<creation>

<creation> contiene informazioni riguardanti la creazione di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD4C http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD4
Modulo header
Usato da
Può contenere
Dichiarazione
element creation { att.global.attributes, macro.phraseSeq.limited }
Esempio
<creation>
 <date>Before 1987</date>
</creation>
Esempio
<creation>
 <date when="1988-07-10">10 July 1988</date>
</creation>

<custEvent>

<custEvent> (evento legato alla conservazione) descrive un singolo evento nella storia della conservazione di un manoscritto 1.7.1.2 Availability and Custodial History
Modulo msdescription
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.typed (@type, @subtype)
type caratterizza l'elemento utilizzando una classificazione o tipologia funzionale
Stato Richiesto
Tipo di dati xsd:Name
I valori legali sono:
check
conservation
description
exhibition
loan
photography
other
[Valore di default]
Usato da
Può contenere
Dichiarazione
                        element 
                        custEvent
{
   att.global.attributes,
   att.datable.attributes,
   attribute 
                        type
   {
      "check"
    | "conservation"
    | "description"
    | "exhibition"
    | "loan"
    | "photography"
    | "other"
   },
   att.typed.attribute.subtype,
   macro.specialPara
}
Esempio
<custEvent type="photography">Photographed by David Cooper on <date>12 Dec 1964</date>
</custEvent>

<custodialHist>

<custodialHist> (storia della conservazione) contiene una descrizione della storia della conservazione del manoscritto sotto forma di prosa o come serie di eventi datati relativi alla gestione del manoscritto stesso 1.7.1.2 Availability and Custodial History
Modulo msdescription
Usato da
Può contenere
core: p
msdescription: custEvent
Dichiarazione
element custodialHist { att.global.attributes, ( model.pLike+ | custEvent+ ) }
Esempio
<custodialHist>
 <custEvent type="conservation" notBefore="1961-03" notAfter="1963-02">Conserved between March 1961 and February 1963 at
   Birgitte Dalls Konserveringsværksted.</custEvent>
 <custEvent type="photography" notBefore="1988-05-01" notAfter="1988-05-30">Photographed in
   May 1988 by AMI/FA.</custEvent>
 <custEvent type="transfer-dispatch" notBefore="1989-11-13" notAfter="1989-11-13">Dispatched to Iceland
   13 November 1989.</custEvent>
</custodialHist>

<damage>

<damage> contiene l'area visibile del danneggiamento al testimone http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHDA
Modulo transcr
Oltre agli attributi globali att.typed (@type, @subtype) att.damaged (@hand, @agent, @degree, @group) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
Usato da
Può contenere
Dichiarazione
                        element 
                        damage
{
   att.global.attributes,
   att.typed.attributes,
   att.damaged.attribute.hand,
   att.damaged.attribute.agent,
   att.damaged.attribute.degree,
   att.damaged.attribute.group,
   att.dimensions.attributes,
   macro.paraContent
}
Esempio
<l>The Moving Finger wri<damage agent="water" group="1">es; and</damage> having writ,</l>
<l>Moves <damage agent="water" group="1">
  <supplied>on: nor all your</supplied>
 </damage> Piety nor Wit</l>

<damageSpan>

<damageSpan> (porzione di testo danneggiata) segnala l'inizio di una sequenza più estesa di testo danneggiata ma ancora leggibile http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHDA
Modulo transcr
Oltre agli attributi globali att.damaged (@hand, @agent, @degree, @group) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.typed (@type, @subtype) att.spanning (@spanTo)
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        damageSpan
{
   att.global.attributes,
   att.damaged.attribute.hand,
   att.damaged.attribute.agent,
   att.damaged.attribute.degree,
   att.damaged.attribute.group,
   att.dimensions.attributes,
   att.typed.attributes,
   att.spanning.attributes,
   empty
}

<s:assert test="@spanTo">The spanTo= attribute of
<s:name/> is required.</s:assert>
Esempio
<p>Paragraph partially damaged. This is the undamaged
portion <damageSpan spanTo="#a34"/>and this the damaged
portion of the paragraph.</p>
<p>This paragraph is entirely damaged.</p>
<p>Paragraph partially damaged; in the middle of this
paragraph the damage ends and the anchor point marks
the start of the <anchor xml:id="a34"/> undamaged part of the text. ...</p>

<date>

<date> contiene una data in qualsiasi foemato http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONADA http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD6 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOI http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHSE http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDDATE
Modulo core
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.typed (@type, @subtype)
calendar indica il sistema o calendario al quale la data appartiene.
Stato Opzionale
Tipo di dati xsd:Name
I valori suggeriti includono:
Gregorian
calendario gregoriano
Julian
calendario giulian
Islamic
calendario lunare islamico o musulmano (Hijri)
Hebrew
calendario lunisolare ebraico o giudeo
Revolutionary
calendario della Rivoluzione francese
Iranian
calendario solare iraniano o persiano (Jalaali)
Coptic
calendario copto o alessandrino
Chinese
calendario lunisolare cinese
He was born on <date calendar="Gregorian">Feb. 22, 1732</date>
(<date calendar="Julian" when="1732-02-22"> Feb. 11, 1731/32, O.S.</date>).
Usato da
Può contenere
Dichiarazione
                        element 
                        date
{
   attribute 
                        calendar
   {
      "Gregorian"
    | "Julian"
    | "Islamic"
    | "Hebrew"
    | "Revolutionary"
    | "Iranian"
    | "Coptic"
    | "Chinese"
    | xsd:Name
   }?,
   att.global.attributes,
   att.datable.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.typed.attributes,
   ( text | model.gLike | model.phrase | model.global )*
}
Esempio
<date when="1980-02">early February 1980</date>
Esempio
Given on the <date when="1977-06-12">Twelfth Day
of June in the Year of Our Lord One Thousand Nine Hundred and Seventy-seven of the Republic
the Two Hundredth and first and of the University the Eighty-Sixth.</date>
Esempio
<date when="1990-09">September 1990</date>

<death>

<death> (death) contiene informazioni relative al luogo e alla data di morte di una persona http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHPA
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
Dichiarazione
                        element 
                        death
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   att.naming.attributes,
   macro.phraseSeq
}
Esempio
<death when="1902-10-01"/>
Esempio
<death when="1960-12-10">Passed away near <name type="place">Aix-la-Chapelle</name>, after suffering from cerebral palsy. </death>

<decoDesc>

<decoDesc> (descrizione della decorazione) contiene una descrizione della decorazione di un manoscritto in forma di sequenza di paragrafi oppure di sequenza di elementi decoNote organizzati per argomento 1.5.3 Bindings, Seals, and Additional Material
Modulo msdescription
Usato da
Può contenere
core: p
msdescription: decoNote
Dichiarazione
element decoDesc { att.global.attributes, ( model.pLike+ | decoNote+ ) }
Esempio
<decoDesc>
 <p>The start of each book of the Bible with a 10-line historiated
   illuminated initial; prefaces decorated with 6-line blue initials with red
   penwork flourishing; chapters marked by 3-line plain red initials; verses
   with 1-line initials, alternately blue or red.</p>
</decoDesc>

<decoNote>

<decoNote> (nota sulla decorazione) contiene una nota che descrive una componente decorativa di un manoscritto o una classe ragionevolmente omogenea di tali componenti 1.5.3 Bindings, Seals, and Additional Material
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype)
type caratterizza l'elemento utilizzando una classificazione o tipologia funzionale
Stato Opzionale
Tipo di dati xsd:Name
I valori legali sono:
border
diagram
initial
marginal
miniature
mixed
paratext
secondary
other
[Valore di default]
illustration
printmark
publishmark
vignette
frieze
map
unspecified
Usato da
Può contenere
Dichiarazione
                        element 
                        decoNote
{
   att.global.attributes,
   attribute 
                        type
   {
      "border"
    | "diagram"
    | "initial"
    | "marginal"
    | "miniature"
    | "mixed"
    | "paratext"
    | "secondary"
    | "other"
    | "illustration"
    | "printmark"
    | "publishmark"
    | "vignette"
    | "frieze"
    | "map"
    | "unspecified"
   }?,
   att.typed.attribute.subtype,
   macro.specialPara
}
Esempio
<decoDesc>
 <decoNote type="initial">
  <p>The start of each book of the Bible with
     a 10-line historiated illuminated initial;
     prefaces decorated with 6-line blue initials
     with red penwork flourishing; chapters marked by
     3-line plain red initials; verses with 1-line initials,
     alternately blue or red.</p>
 </decoNote>
</decoDesc>

<del>

<del> (cancellatura) contiene un carattere, parola o brano cancellati, codificati come cancellati, o altrimenti indicati come superflui o spuri, nella copia originale da parte di un autore, copista, commentatore o correttore. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COEDADD
Modulo core
Oltre agli attributi globali att.transcriptional (@hand, @status, @seq) (att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) ) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        del
{
   att.global.attributes,
   att.transcriptional.attribute.hand,
   att.transcriptional.attribute.status,
   att.transcriptional.attribute.seq,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.typed.attributes,
   macro.paraContent
}
Esempio
<l>
 <del rend="overtyped">Mein</del> Frisch <del rend="overstrike" type="primary">schwebt</del>
weht der Wind
</l>

<delSpan>

<delSpan> (porzione di testo cancellata) segnala l'inizio di una porzione di testo più lunga cancellata, indicata come cancellata, o indicata come superflua o spuria da un autore, un trascrittore, un annotatore o un correttore http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHAD
Modulo transcr
Oltre agli attributi globali att.transcriptional (@hand, @status, @seq) (att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) ) att.typed (@type, @subtype) att.spanning (@spanTo)
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        delSpan
{
   att.global.attributes,
   att.transcriptional.attribute.hand,
   att.transcriptional.attribute.status,
   att.transcriptional.attribute.seq,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.typed.attributes,
   att.spanning.attributes,
   empty
}

<s:assert test="@spanTo">The spanTo= attribute of <s:name/>
is required.</s:assert>
Esempio
<p>Paragraph partially deleted. This is the undeleted
portion <delSpan spanTo="#a23"/>and this the deleted
portion of the paragraph.</p>
<p>Paragraph deleted together with adjacent material.</p>
<p>Second fully deleted paragraph.</p>
<p>Paragraph partially deleted; in the middle of this
paragraph the deletion ends and the anchor point marks
the resumption <anchor xml:id="a23"/> of the text. ...</p>

<depth>

<depth> si riferisce a una misurazione presa lungo la larghezza del dorso 1.1.4 Dimensions
Modulo msdescription
Oltre agli attributi globali att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
Usato da
Può contenere
gaiji: g
Dichiarazione
element depth { att.global.attributes, att.dimensions.attributes, macro.xtext }
Esempio
<depth unit="in" quantity="4"/>

<desc>

<desc> (descrizione) contiene una breve descrizione dello scopo o dell'applicazione di un elemento, attributo, o valore di attributo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/TD.html#TDTAG http://www.tei-c.org/release/doc/tei-p5-doc/it/html/TD.html#TDATT http://www.tei-c.org/release/doc/tei-p5-doc/it/html/TD.html#TDCLA http://www.tei-c.org/release/doc/tei-p5-doc/it/html/TD.html#TDENT
Modulo core
Oltre agli attributi globali att.translatable (@version)
Usato da
Può contenere
Dichiarazione
                        element 
                        desc
{
   att.global.attributes,
   att.translatable.attributes,
   macro.limitedContent
}
Esempio
<desc>contains a brief description of the purpose and application for an element, attribute,
attribute value, class, or entity.</desc>

<dim>

<dim> contains any single measurement forming part of a dimensional specification of some sort. 1.1.4 Dimensions
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype) att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        dim
{
   att.global.attributes,
   att.typed.attributes,
   att.dimensions.attributes,
   macro.xtext
}
Esempio
<dim type="circumference" extent="4.67 in"/>

<dimensions>

<dimensions> contiene una qualsiasi indicazione relativa alle dimensioni 1.1.4 Dimensions
Modulo msdescription
Oltre agli attributi globali att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
type indica quale aspetto dell'oggetto viene misurato
Stato Richiesto
Tipo di dati xsd:Name
I valori legali sono:
leaf
binding
slip
written
boxed
unknown
[Valore di default]
Usato da
Può contenere
msdescription: depth dim height width
Dichiarazione
                        element 
                        dimensions
{
   attribute 
                        type
   {
      "leaf" | "binding" | "slip" | "written" | "boxed" | "unknown"
   },
   att.global.attributes,
   att.dimensions.attributes,
   ( ( dim | model.dimLike )* )
}

<s:report test="count(tei:width)> 1">Width element may appear once only
</s:report>
<s:report test="count(tei:height)> 1">Height element may appear once only
</s:report>
<s:report test="count(tei:depth)> 1">Depth element may appear once only
</s:report>
Esempio
<dimensions type="leaves">
 <height scope="range">157-160</height>
 <width>105</width>
</dimensions>
<dimensions type="ruled">
 <height scope="most">90</height>
 <width scope="most">48</width>
</dimensions>
<dimensions unit="in">
 <height>12</height>
 <width>10</width>
</dimensions>
Esempio

When simple numeric quantities are involved, they may be expressed on the quantity attribute of any or all of the child elements, as in the following example.

<dimensions type="leaves">
 <height scope="range">157-160</height>
 <width quantity="105"/>
</dimensions>
<dimensions type="ruled">
 <height unit="cm" scope="most" quantity="90"/>
 <width unit="cm" scope="most" quantity="48"/>
</dimensions>
<dimensions unit="in">
 <height quantity="12"/>
 <width quantity="10"/>
</dimensions>

<distributor>

<distributor> fornisce il nome di una persona o di un'organizzazione responsabile della distribuzione di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24
Modulo header
Usato da
Può contenere
Dichiarazione
element distributor { att.global.attributes, macro.phraseSeq }
Esempio
<distributor>Oxford Text Archive</distributor>
<distributor>Redwood and Burn Ltd</distributor>

<district>

<district> contiene il nome di una qualsiasi suddivisione all'interno di un insediamento, come una circoscrizione, un quartiere o altre unità amministrative o geografiche http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPLAC
Modulo namesdates
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
Dichiarazione
                        element 
                        district
{
   att.global.attributes,
   att.naming.attributes,
   att.typed.attributes,
   att.datable.attributes,
   macro.phraseSeq
}
Esempio
<placeName>
 <district type="ward">Jericho</district>
 <settlement>Oxford</settlement>
</placeName>
Esempio
<placeName>
 <district type="area">South Side</district>
 <settlement>Chicago</settlement>
</placeName>

<div>

<div> (partizione testuale) contiene una suddivisione del peritesto iniziale, del corpo del testo, o del peritesto finale http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSDIV
Modulo textstructure
Oltre agli attributi globali att.divLike (@org, @sample, @part) att.typed (@type, @subtype) att.declaring (@decls)
Usato da
Può contenere
Dichiarazione
                        element 
                        div
{
   att.global.attributes,
   att.divLike.attributes,
   att.typed.attributes,
   att.declaring.attributes,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( ( model.divLike | model.divGenLike ), model.global* )+ )
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.divLike | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Esempio
<body>
 <div type="part">
  <head>Fallacies of Authority</head>
  <p>The subject of which is Authority in various shapes, and the object, to repress all
     exercise of the reasoning faculty.</p>
  <div n="1" type="chapter">
   <head>The Nature of Authority</head>
   <p>With reference to any proposed measures having for their object the greatest
       happiness of the greatest number....</p>
   <div n="1.1" type="section">
    <head>Analysis of Authority</head>
    <p>What on any given occasion is the legitimate weight or influence to be attached to
         authority ... </p>
   </div>
   <div n="1.2" type="section">
    <head>Appeal to Authority, in What Cases Fallacious.</head>
    <p>Reference to authority is open to the charge of fallacy when... </p>
   </div>
  </div>
 </div>
</body>

<divGen>

<divGen> (partizione testuale generata automaticamente) indica la posizione in cui deve apparire una partizione testuale generata automaticamente da un'applicazione che elabora testi http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONOIX
Modulo core
Oltre agli attributi globali
type specifica quale tipo di partizione testuale generata (ad esempio indice, sommario, ecc.) apparirà
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
index
un indice sarà generato e inserito in questo punto.
toc
sommario
figlist
una lista di immagini
tablist
una lista di tabelle
Usato da
Può contenere
core: head
Dichiarazione
                        element 
                        divGen
{
   att.global.attributes,
   attribute type { xsd:Name }?,
   model.headLike*
}
Esempio

One use for this element is to allow document preparation software to generate an index and insert it in the appropriate place in the output. The example below assumes that the indexName attribute on index elements in the text has been used to specify index entries for the two generated indexes, named NAMES and THINGS:

<back>
 <div1 type="backmat">
  <head>Bibliography</head>
  <listBibl>
   <bibl/>
  </listBibl>
 </div1>
 <div1 type="backmat">
  <head>Indices</head>
  <divGen n="Index Nominum" type="NAMES"/>
  <divGen n="Index Rerum" type="THINGS"/>
 </div1>
</back>
Esempio

Another use for divGen is to specify the location of an automatically produced table of contents:

<front>
<!--<titlePage>...</titlePage>-->
 <divGen type="toc"/>
 <div>
  <head>Preface</head>
  <p> ... </p>
 </div>
</front>

<docAuthor>

<docAuthor> (autore del documento) contiene il nome dell'autore del documento, come indicato nel frontespizio (spesso ma non sempre contenuto all'interno dell'elemento byline) http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSTITL
Modulo textstructure
Oltre agli attributi globali att.canonical (@key, @ref)
Usato da
Può contenere
Dichiarazione
                        element 
                        docAuthor
{
   att.global.attributes,
   att.canonical.attributes,
   macro.phraseSeq
}
Esempio
<titlePage>
 <docTitle>
  <titlePart>Travels into Several Remote Nations of the World, in Four
     Parts.</titlePart>
 </docTitle>
 <byline> By <docAuthor>Lemuel Gulliver</docAuthor>, First a Surgeon,
   and then a Captain of several Ships</byline>
</titlePage>

<docEdition>

<docEdition> (edizione del documento) contiene una dichiarazione editoriale così come riportata nel frontespizio di un documento http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSTITL
Modulo textstructure
Usato da
Può contenere
Dichiarazione
element docEdition { att.global.attributes, macro.paraContent }
Esempio
<docEdition>The Third edition Corrected</docEdition>

<docImprint>

<docImprint> (sigla editoriale del documento) contiene la dichiarazione di pubblicazione (luogo e data di pubblicazione, casa editrice) così come riportata di norma in fondo al frontespizio http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSTITL
Modulo textstructure
Usato da
Può contenere
Dichiarazione
                        element 
                        docImprint
{
   att.global.attributes,
   ( text | model.gLike | model.phrase | pubPlace | publisher | model.global )*
}
Esempio
<docImprint>Oxford, Clarendon Press, 1987</docImprint>
Imprints may be somewhat more complex:
<docImprint>
 <pubPlace>London</pubPlace>
Printed for <name>E. Nutt</name>,
at
<pubPlace>Royal Exchange</pubPlace>;
<name>J. Roberts</name> in
<pubPlace>wick-Lane</pubPlace>;
<name>A. Dodd</name> without
<pubPlace>Temple-Bar</pubPlace>;
and <name>J. Graves</name> in
<pubPlace>St. James's-street.</pubPlace>
 <date>1722.</date>
</docImprint>

<docTitle>

<docTitle> (titolo del documento) contiene il titolo del documento in tutti i suoi elementi costitutivi, come specificato nel frontespizio http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSTITL
Modulo textstructure
Oltre agli attributi globali att.canonical (@key, @ref)
Usato da
Può contenere
figures: figure
linking: anchor
textstructure: titlePart
Dichiarazione
                        element 
                        docTitle
{
   att.global.attributes,
   att.canonical.attributes,
   ( model.global*, ( titlePart, model.global* )+ )
}
Esempio
<docTitle>
 <titlePart type="main">The DUNCIAD, VARIOURVM.</titlePart>
 <titlePart type="sub">WITH THE PROLEGOMENA of SCRIBLERUS.</titlePart>
</docTitle>

<edition>

<edition> (Edizione) descrive le peculiarità di una edizione del testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD22
Modulo header
Usato da
Può contenere
Dichiarazione
element edition { att.global.attributes, macro.phraseSeq }
Esempio
<edition>First edition <date>Oct 1990</date>
</edition>
<edition n="S2">Students' edition</edition>

<editionStmt>

<editionStmt> (dichiarazione sull'edizione) raggruppa le informazioni riguardo una edizione di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD22 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD2
Modulo header
Usato da
Può contenere
core: p respStmt
header: edition
Dichiarazione
                        element 
                        editionStmt
{
   att.global.attributes,
   ( model.pLike+ | ( edition, respStmt* ) )
}
Esempio
<editionStmt>
 <edition n="S2">Students' edition</edition>
 <respStmt>
  <resp>Adapted by </resp>
  <name>Elizabeth Kirk</name>
 </respStmt>
</editionStmt>
Esempio
<editionStmt>
 <p>First edition, <date>Michaelmas Term, 1991.</date>
 </p>
</editionStmt>

<editor>

<editor> è la dichiarazione di responsabilità secondaria di ciascuna unità bibliografica, ad esempio il nome di un individuo, di un'istituzione o organizzazione che agisce come curatore, compilatore, traduttore, ecc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOR
Modulo core
Oltre agli attributi globali
role specifica la natura della responsabilità intellettuale
Stato Opzionale
Tipo di dati xsd:Name
Valori semi-open list (examples might include: translator, editor, compiler, illustrator, etc.)
Usato da
Può contenere
Dichiarazione
                        element 
                        editor
{
   att.global.attributes,
   attribute role { xsd:Name }?,
   macro.phraseSeq
}
Esempio
<editor>Eric Johnson</editor>
<editor role="illustrator">John Tenniel</editor>

<editorialDecl>

<editorialDecl> (dichiarazione sulle pratiche editoriali) fornisce dettagli su principi e pratiche editoriali seguite nella codifica di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD53 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD5 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAS2
Modulo header
Oltre agli attributi globali att.declarable (@default)
Usato da
Può contenere
core: p
Dichiarazione
                        element 
                        editorialDecl
{
   att.global.attributes,
   att.declarable.attributes,
   ( model.pLike+ | model.editorialDeclPart+ )
}
Esempio
<editorialDecl>
 <normalization>
  <p>All words converted to Modern American spelling using
     Websters 9th Collegiate dictionary
  </p>
 </normalization>
 <quotation marks="all" form="std">
  <p>All opening quotation marks converted to “ all closing
     quotation marks converted to &amp;cdq;.</p>
 </quotation>
</editorialDecl>

<education>

<education> contiene una descrizione relativa all'istruzione di una persona http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHPA
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
Dichiarazione
                        element 
                        education
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   att.naming.attributes,
   macro.phraseSeq
}
Esempio
<education>Left school at age 16</education>
<education notBefore="1986-01-01" notAfter="1990-06-30">Attended <name>Cherwell School</name>
</education>

<encodingDesc>

<encodingDesc> (descrizione della codifica) documenta la relazione fra un documento elettronico e la o le fonti da cui è derivato. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD5 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD11
Modulo header
Usato da
Può contenere
Dichiarazione
                        element 
                        encodingDesc
{
   att.global.attributes,
   ( ( model.encodingPart | model.pLike )+ )
}
Esempio
<encodingDesc>
 <p>Basic encoding, capturing lexical information only. All
   hyphenation, punctuation, and variant spellings normalized. No
   formatting or layout information preserved.</p>
</encodingDesc>

<event>

<event> (event) qualsiasi fenomeno o evento non necessariamente vocale o comunicativo, come rumori accidentali o altri fenomeni che incidano sulla comunicazione in atto
Modulo namesdates
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.typed (@type, @subtype) att.naming (@nymRef) (att.canonical (@key, @ref))
where indica la posizione di un evento facendo riferimento a un elemento place
Stato Opzionale
Tipo di dati xsd:anyURI
Valori any valid URI
Usato da
Può contenere
msdescription: msDesc
namesdates: event
Dichiarazione
                        element 
                        event
{
   att.global.attributes,
   att.datable.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.typed.attributes,
   att.naming.attributes,
   attribute where { xsd:anyURI }?,
   (
      model.headLike*,
      ( ( model.pLike+ ) | ( model.labelLike+ ) ),
      ( model.noteLike | model.biblLike )*,
      event*
   )
}
Esempio
<person>
 <event type="mat" when="1972-10-12">
  <label>matriculation</label>
 </event>
 <event type="grad" when="1975-06-23">
  <label>graduation</label>
 </event>
</person>

<ex>

<ex> (espansione) contiene una sequenza di lettere aggiunte da un revisore o trascrittore in fase di espansione di un'abbreviazione http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHAB
Modulo transcr
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        ex
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   macro.xtext
}
Esempio
The address is Southmoor <choice>
 <expan>R<ex>oa</ex>d</expan>
 <abbr>Rd</abbr>
</choice>

<expan>

<expan> (espansione) contiene l'esapnsione di un'abbreviazione. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONAAB
Modulo core
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
Usato da
Può contenere
Dichiarazione
                        element 
                        expan
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   macro.phraseSeq
}
Esempio
The address is Southmoor <choice>
 <expan>Road</expan>
 <abbr>Rd</abbr>
</choice>

<explicit>

<explicit> contiene l' explicit di un manoscritto, ovvero le parole di chiusura del testo vero e proprio, a esclusione di eventuali titoli in rosso o colophon successivi 1.4.1 The <msItem> Element
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype) att.msExcerpt (@defective)
Usato da
Può contenere
Dichiarazione
                        element 
                        explicit
{
   att.global.attributes,
   att.typed.attributes,
   att.msExcerpt.attributes,
   macro.phraseSeq
}
Esempio
<explicit>sed libera nos a malo.</explicit>
<rubric>Hic explicit oratio qui dicitur dominica.</rubric>
<explicit type="defective">ex materia quasi et forma sibi
proporti<gap/>
</explicit>
<explicit type="reverse">saued be shulle that doome of day the at
</explicit>

<extent>

<extent> descrive la grandezza approssimativa di un documento elettronico così come immagazzinata su supporto, secondo una qualsiasi unità funzionale. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD23 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD2 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOI
Modulo header
Usato da
Può contenere
Dichiarazione
element extent { att.global.attributes, macro.phraseSeq }
Esempio
<extent>3200 sentences</extent>
<extent>between 10 and 20 Mb</extent>
<extent>ten 3.5 inch high density diskettes</extent>

<facsimile>

<facsimile> contiene una rappresentazione di una qualche fonte scritta sotto forma di una serie di immagini piuttosto che di testo trascritto o codificato
Modulo transcr
Oltre agli attributi globali att.declaring (@decls)
Usato da
Può contenere
core: graphic
figures: formula
textstructure: back front
transcr: surface
Dichiarazione
                        element 
                        facsimile
{
   att.global.attributes,
   att.declaring.attributes,
   ( front?, ( model.graphicLike | surface )+, back? )
}
Esempio
<facsimile>
 <graphic url="page1.png"/>
 <surface>
  <graphic url="page2-highRes.png"/>
  <graphic url="page2-lowRes.png"/>
 </surface>
 <graphic url="page3.png"/>
 <graphic url="page4.png"/>
</facsimile>
Esempio
<facsimile>
 <surface
   ulx="0"
   uly="0"
   lrx="200"
   lry="300">

  <graphic url="Bovelles-49r.png"/>
 </surface>
</facsimile>

<faith>

<faith> indica fede, religione, o credo di una persona
Modulo namesdates
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) ) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
Dichiarazione
                        element 
                        faith
{
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   att.datable.attributes,
   macro.phraseSeq
}
Esempio
<faith>protestant</faith>

<figDesc>

<figDesc> (Descrizione di una figura) contiene una breve descrizione dell'aspetto o del contenuto di una figura, da utilizzare quando si vuole documentare un'immagine senza mostrarla. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/FT.html#FTGRA
Modulo figures
Usato da
Può contenere
Dichiarazione
element figDesc { att.global.attributes, macro.limitedContent }
Esempio
<figure>
 <graphic url="emblem1.png"/>
 <head>Emblemi d'Amore</head>
 <figDesc>A pair of naked winged cupids, each holding a
   flaming torch, in a rural setting.</figDesc>
</figure>

<figure>

<figure> contiene una porzione di testo costituita da grafici, illustrazioni o figure. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/FT.html#FT
Modulo figures
Oltre agli attributi globali att.placement (@place)
Usato da
Può contenere
Dichiarazione
                        element 
                        figure
{
   att.global.attributes,
   att.placement.attributes,
   (
      model.headLikemodel.pLikefigDescmodel.graphicLikemodel.egLikemodel.global
   )*
}
Esempio
<figure>
 <head>Figure One: The View from the Bridge</head>
 <figDesc>A Whistleresque view showing four or five sailing boats in the foreground, and a
   series of buoys strung out between them.</figDesc>
 <graphic url="http://www.example.org/fig1.png" scale="0.5"/>
</figure>

<fileDesc>

<fileDesc> (descrizione del file) contiene una descrizione bibliografica completa di un file elettronico. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD2 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD11
Modulo header
Usato da
Può contenere
Dichiarazione
                        element 
                        fileDesc
{
   att.global.attributes,
   (
      (
         titleStmt,
         editionStmt?,
         extent?,
         publicationStmt,
         seriesStmt?,
         notesStmt?
      ),
      sourceDesc+
   )
}
Esempio
<fileDesc>
 <titleStmt>
  <title>The shortest possible TEI document</title>
 </titleStmt>
 <publicationStmt>
  <p>Distributed as part of TEI P5</p>
 </publicationStmt>
 <sourceDesc>
  <p>No print source exists: this is an original digital text</p>
 </sourceDesc>
</fileDesc>

<filiation>

<filiation> contiene informazioni relative alla filiazione del manoscritto, cioè la sua relazione con altri manoscritti sopravvissuti per lo stesso testo, cioè i suoi protografi, antigrafi e apografi 1.4.1 The <msItem> Element
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        filiation
{
   att.global.attributes,
   att.typed.attributes,
   macro.specialPara
}
Esempio
<msContents>
 <msItem>
  <title>Beljakovski sbornik</title>
  <filiation type="protograph">Bulgarian</filiation>
  <filiation type="antigraph">Middle Bulgarian</filiation>
  <filiation type="apograph">
   <ref target="#DN17">Dujchev N 17</ref>
  </filiation>
 </msItem>
</msContents>
<!-- ... -->
<msDesc xml:id="DN17">
<!-- ... -->
</msDesc>

In this example, the reference to ‘Dujchev N17’ includes a link to some other manuscript description which has the identifier DN17.

Esempio
<msItem>
 <title>Guan-ben</title>
 <filiation>
  <p>The "Guan-ben" was widely current among mathematicians in the
     Qing dynasty, and "Zhao Qimei version" was also read. It is
     therefore difficult to know the correct filiation path to follow.
     The study of this era is much indebted to Li Di. We explain the
     outline of his conclusion here. Kong Guangsen
     (1752-1786)(17) was from the same town as Dai Zhen, so he obtained
     "Guan-ben" from him and studied it(18). Li Huang (d. 1811)
     (19) took part in editing Si Ku Quan Shu, so he must have had
     "Guan-ben". Then Zhang Dunren (1754-1834) obtained this version,
     and studied "Da Yan Zong Shu Shu" (The General Dayan
     Computation). He wrote Jiu Yi Suan Shu (Mathematics
     Searching for One, 1803) based on this version of Shu Xue Jiu
     Zhang (20).</p>
  <p>One of the most important persons in restoring our knowledge
     concerning the filiation of these books was Li Rui (1768(21)
     -1817)(see his biography). ... only two volumes remain of this
     manuscript, as far as chapter 6 (chapter 3 part 2) p.13, that is,
     question 2 of "Huan Tian San Ji" (square of three loops),
     which later has been lost.</p>
 </filiation>
</msItem>
<!--http://www2.nkfust.edu.tw/~jochi/ed1.htm-->

<finalRubric>

<finalRubric> contiene una stringa di parole che segnala la fine di una partizione testuale e spesso ne dichiara autore e titolo; tale stringa è solitamente evidenziata rispetto al resto tramite inchiostro rosso, diverso stile o diversa dimensione del carattere, o altro espediente grafico 1.4.1 The <msItem> Element
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        finalRubric
{
   att.global.attributes,
   att.typed.attributes,
   macro.phraseSeq
}
Esempio
<finalRubric>Explicit le romans de la Rose ou l'art
d'amours est toute enclose.</finalRubric>
<finalRubric>ok lúkv ver þar Brennu-Nials savgv</finalRubric>

<floruit>

<floruit> contiene informazioni relative al periodod di attività di una persona
Modulo namesdates
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
Usato da
Può contenere
Dichiarazione
                        element 
                        floruit
{
   att.global.attributes,
   att.datable.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   macro.phraseSeq
}
Esempio
<floruit notBefore="1066" notAfter="1100"/>

<foliation>

<foliation> descrive il sistema o i sistemi di numerazione usati per contare i fogli o le pagine di un codice 1.5.1.4 Foliation
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element foliation { att.global.attributes, macro.specialPara }
Esempio
<foliation>Contemporary foliation in red
roman numerals in the centre
of the outer margin.</foliation>

<foreign>

<foreign> (straniero) identifica una parola o un sintagma appartenente ad una lingua diversa da quella del testo circostante. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COHQHF
Modulo core
Usato da
Può contenere
Dichiarazione
element foreign { att.global.attributes, macro.phraseSeq }
Esempio
This is
heathen Greek to you still? Your <foreign xml:lang="la">lapis
philosophicus</foreign>?

<forename>

<forename> contiene un prenome assegnato o un nome di battesimo http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPER
Modulo namesdates
Oltre agli attributi globali att.personal (@full, @sort) (att.naming (@nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        forename
{
   att.global.attributes,
   att.personal.attributes,
   att.typed.attributes,
   macro.phraseSeq
}
Esempio
<persName>
 <roleName>Ex-President</roleName>
 <forename>George</forename>
 <surname>Bush</surname>
</persName>

<formula>

<formula> contiene una formula matematica o di altra natura. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/FT.html#FTFOR
Modulo figures
Oltre agli attributi globali
notation fornisce il nome di un'annotazione definita precedentemente utilizzata come contenuto dell'elemento.
Stato Opzionale
Tipo di dati xsd:anyURI
Valori The name of a formal notation previously declared in the document type declaration.
Usato da
Può contenere
core: graphic
figures: formula
Dichiarazione
                        element 
                        formula
{
   att.global.attributes,
   attribute notation { xsd:anyURI }?,
   ( text | model.graphicLike )*
}
Esempio
<formula notation="TeX">$e=mc^2$</formula>

<front>

<front> (peritesto iniziale) contiene qualsiasi materiale peritestuale (intestazioni, frontespizio, prefazioni, dediche, etc.) che si trovi prima dell'inizio del testo vero e proprio http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSTITL http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DS
Modulo textstructure
Oltre agli attributi globali att.declaring (@decls)
Usato da
Può contenere
Dichiarazione
                        element 
                        front
{
   att.global.attributes,
   att.declaring.attributes,
   (
      ( model.frontPart | model.pLike.front | model.global )*,
      (
         (
            (
               ( model.div1Like ),
               ( model.frontPart | model.div1Like | model.global )*
            )
          | (
               ( model.divLike ),
               ( model.frontPart | model.divLike | model.global )*
            )
         )?
      ),
      ( ( ( model.divBottomPart ), ( model.divBottomPart | model.global )* )? )
   )
}
Esempio
<front>
 <epigraph>
  <quote>Nam Sibyllam quidem Cumis ego ipse oculis meis
     vidi in ampulla pendere, et cum illi pueri dicerent:
  <q xml:lang="grc">Sibylla ti weleis</q>; respondebat
     illa: <q xml:lang="grc">apowanein welo.</q>
  </quote>
 </epigraph>
 <div type="dedication">
  <p>For Ezra Pound <q xml:lang="it">il miglior fabbro.</q>
  </p>
 </div>
</front>
Esempio
<front>
 <div type="dedication">
  <p>To our three selves</p>
 </div>
 <div type="preface">
  <head>Author's Note</head>
  <p>All the characters in this book are purely imaginary, and if the
     author has used names that may suggest a reference to living persons
     she has done so inadvertently.
     ...</p>
 </div>
</front>

<funder>

<funder> (finanziatore) indica il nome di un individuo, istituzione o organizzazione responsabile del finanziamento di un progetto o testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD21
Modulo header
Usato da
Può contenere
Dichiarazione
element funder { att.global.attributes, macro.phraseSeq.limited }
Esempio
<funder>The National Endowment for the Humanities, an independent federal agency</funder>
<funder>Directorate General XIII of the Commission of the European Communities</funder>
<funder>The Andrew W. Mellon Foundation</funder>
<funder>The Social Sciences and Humanities Research Council of Canada</funder>

<fw>

<fw> (convenzioni grafiche) contiene intestazione, piè di pagina, reclamo o simili relativi alla pagina corrente http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHSK
Modulo transcr
Oltre agli attributi globali att.placement (@place)
type classifica le convenzioni usate secondo una tipologia funzionale
Stato Consigliato
Tipo di dati xsd:Name
I valori esemplificativi includono:
header
titolo nell'intestazione di pagina
footer
titolo nel piè di pagina
pageNum
(numero di pagina) numero di pagina o simbolo di foliazione
lineNum
(numero di riga) numero di riga di testo in prosa o componimento poetico
sig
(firma) firma o simbolo comune
catch
(reclamo) reclamo
Usato da
Può contenere
Dichiarazione
                        element 
                        fw
{
   att.global.attributes,
   att.placement.attributes,
   attribute type { xsd:Name }?,
   macro.phraseSeq
}
Esempio
<fw type="sig" place="bottom">C3</fw>

<g>

<g> (carattere o glifo) rapperesenta un carattere o glifo non standard.
Modulo gaiji
Oltre agli attributi globali att.typed (@type, @subtype)
ref punta a una descrizione del carattere o glifo.
Stato Opzionale
Tipo di dati xsd:anyURI
Valori a pointer to some another element.
Usato da
Può contenere Ammessi soltanto caratteri di testo
Dichiarazione
                        element 
                        g
{
   att.global.attributes,
   att.typed.attributes,
   attribute ref { xsd:anyURI }?,
   text
}
Esempio
<g ref="#ctlig">ct</g>
This example points to a glyph element with the identifier ctlig like the following:
<glyph xml:id="ctlig">
<!-- here we describe the particular ct-ligature intended -->
</glyph>
Esempio
<g ref="#per-glyph">per</g>
The medieval brevigraph per could similarly be considered as an individual glyph, defined in a glyph element with the identifier per like the following:
<glyph xml:id="per-glyph">
<!-- ... -->
</glyph>

<gap>

<gap> (gap) indica un punto in cui del materiale è stato omesso dalla trascrizione, sia per ragioni editoriali descritte nell'intestazione TEI, come pratica di campionatura, sia perché il materiale è illegibile o incomprensibile. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COEDADD
Modulo core
Oltre agli attributi globali att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
reason gives the reason for omission of this material from the transcription.
Stato Richiesto
Tipo di dati 1–∞ occorrenze di  token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } separato da spazio bianco
Valori any short indication of the reason for the omission.
I valori legali sono:
damage
medium is damaged
illegible
material cannot be reliably read
cancelled
material can be read but has been cancelled by scribe
irrelevant
material is not regarded as relevant by the transcriber [Valore di default]
omitted
material omitted by transcriber
lacuna
material missing from the source
hand nel caso in cui il testo sia stato volontariamente omesso dalla trascrizione da una mano identificabile, indica la mano autrice dell'omissione
Stato Opzionale
Tipo di dati xsd:anyURI
Valori must be one of the hand identifiers declared in the document header (see section ??).
agent nel caso in cui il testo sia stato omesse a causa di danneggiamento, indica la causa del danno qualora possa essere identificata.
Stato Opzionale
Tipo di dati xsd:Name
I valori esemplificativi includono:
rubbing
il danno è causato da segni di strofinamento sui bordi del foglio
mildew
il danno è causato da macchie di umido sulla superficie del foglio
smoke
il danno è causato dal fumo
unit names the unit used for describing the extent of the gap
Stato Opzionale
Tipo di dati xsd:Name
I valori legali sono:
chars
written characters
leaves
leaves
lines
lines
mm
millimetres
pages
pages
words
words
Usato da
Può contenere
core: desc gloss
Dichiarazione
                        element 
                        gap
{
   attribute 
                        reason
   {
      list
      {
         (
            "damage"
          | "illegible"
          | "cancelled"
          | "irrelevant"
          | "omitted"
          | "lacuna"
         )+
      }
   },
   attribute hand { xsd:anyURI }?,
   attribute agent { xsd:Name }?,
   att.global.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   attribute unit { "chars" | "leaves" | "lines" | "mm" | "pages" | "words" }?,
   att.dimensions.attribute.quantity,
   att.dimensions.attribute.extent,
   att.dimensions.attribute.scope,
   att.ranging.attributes,
   model.glossLike*
}
Esempio
<gap extent="4" unit="chars" reason="illegible"/>
Esempio
<gap extent="1" unit="essay" reason="sampling"/>

<genName>

<genName> (componente generazionale del nome) contiene una componente del nome utilizzata per distinguere nomi simili tra loro sulla base della differenza di età o dell'appartenenza a generazioni diverse delle persone nominate http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPER
Modulo namesdates
Oltre agli attributi globali att.personal (@full, @sort) (att.naming (@nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
                        element 
                        genName
{
   att.global.attributes,
   att.personal.attributes,
   att.typed.attributes,
   macro.phraseSeq
}
Esempio
<persName>
 <forename>Charles</forename>
 <genName>II</genName>
</persName>
Esempio
<persName>
 <surname>Pitt</surname>
 <genName>the Younger</genName>
</persName>

<geo>

<geo> (coordinate geografiche) contiene una qualsiasi espressione di una serie di coordinate geografiche che rappresenti un punto, una linea o un'area sulla superficie della terra in una data notazione
Modulo namesdates
Usato da
Può contenere Ammessi soltanto caratteri di testo
Dichiarazione
element geo { att.global.attributes, text }
Esempio
<geo>41.687142 -74.870109</geo>

<geoDecl>

<geoDecl> (dichiarazione di coordinate geografiche) documenta la notazione e il dato utilizzati per le coordinate geografiche espressi come contenuto di un elemento geo collocato altrove all'interno del documento
Modulo header
Oltre agli attributi globali att.declarable (@default)
datum indica un nome in codice comunemente impiegato per il dato utilizzato
Stato Obbligatorio se applicabile
Tipo di dati xsd:Name
I valori suggeriti includono:
WGS84
(sistema geodetico mondiale) coppia numeri da interpretare come latitudine seguita da longitudine secondo il sistema geodetico mondiale [Valore di default]
MGRS
(sistema di riferimento delle coordinate MGRS) i valori indicati sono codici di entità geospaziali basati su coordinate UTM (Universale Trasverso di Mercatore)
OSGB36
(sistema di riferimento a reticolato OSGB36) il valore indicato va interpretato come riferimento dell'OSGB36
ED50
(sistema di riferimento ED50) il valore indicato va interpretato come latitudine seguita da longitudine secondo il sistema di coordinate ED50
Usato da
Può contenere
Dichiarazione
                        element 
                        geoDecl
{
   att.global.attributes,
   att.declarable.attributes,
   attribute datum { "WGS84" | "MGRS" | "OSGB36" | "ED50" | xsd:Name }?,
   macro.phraseSeq
}
Esempio
<geoDecl datum="OSGB36"/>

<geogFeat>

<geogFeat> (nome di elemento geografico) contiene un nome comune che identifica elementi geografici inclusi in un nome proprio geografico, come valle, monte, ecc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPLAC
Modulo namesdates
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to))
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        geogFeat
{
   att.global.attributes,
   att.naming.attributes,
   att.typed.attributes,
   att.datable.attributes,
   macro.xtext
}
Esempio
<geogName> The <geogFeat>vale</geogFeat> of White Horse</geogName>

<geogName>

<geogName> (nome proprio geografico) nome associato a un elemento geografico, come valle Windrush o Monte Sinai http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDPLAC
Modulo namesdates
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref))
type fornisce informazioni più specifiche relativamente a cultura, lingua o uso impiegate per classificare la componente del nome
Stato Obbligatorio se applicabile
Tipo di dati xsd:Name
Valori one of a set of codes defined for the application.
Usato da
Può contenere
Dichiarazione
                        element 
                        geogName
{
   att.global.attributes,
   att.naming.attributes,
   attribute type { xsd:Name }?,
   macro.phraseSeq
}
Esempio
<geogName>
 <geogFeat>Mount</geogFeat>
 <name>Sinai</name>
</geogName>

<gloss>

<gloss> identifica un sintagma o una parola che fornisce una glossa o definizione per qualche altra parola o sintagma. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COHQU
Modulo core
Oltre agli attributi globali att.declaring (@decls) att.translatable (@version) att.typed (@type, @subtype)
target identifica un elemento term associato attraverso un riferimento URI assoluto o relativo
Stato Opzionale
Tipo di dati xsd:anyURI
Valori should be a valid URI reference that resolves to a term element
cRef (riferimento canonico) identifica l'elemento associato term usando un riferimento canonico a partire da uno schema definito in un elemento <refsDecl> nell'intestazione TEI
Stato Opzionale
Tipo di dati xsd:anyURI
Valori the result of applying the algorithm for the resolution of canonical references (described in section ??) should be a valid URI reference that resolves to a term element
Usato da
Può contenere
Dichiarazione
                        element 
                        gloss
{
   att.global.attributes,
   att.declaring.attributes,
   att.translatable.attributes,
   att.typed.attributes,
   ( attribute target { xsd:anyURI }? | attribute cRef { xsd:anyURI }? ),
   macro.phraseSeq
}
Esempio
We may define <term xml:id="tdpv" rend="sc">discoursal point of view</term> as
<gloss target="#tdpv">the relationship, expressed
through discourse structure, between the implied author or some other addresser, and the
fiction.</gloss>

<glyph>

<glyph> (glifo) fornisce informazioni descrittive su di un glifo.
Modulo gaiji
Usato da
Può contenere
Dichiarazione
                        element 
                        glyph
{
   att.global.attributes,
   (
      glyphName?,
      model.glossLike*,
      charProp*,
      mapping*,
      model.graphicLike*,
      model.noteLike*
   )
}
Esempio
<glyph xml:id="rstroke">
 <glyphName>LATIN SMALL LETTER R WITH A FUNNY STROKE</glyphName>
 <charProp>
  <localName>entity</localName>
  <value>rstroke</value>
 </charProp>
 <graphic url="glyph-rstroke.png"/>
</glyph>

<glyphName>

<glyphName> (nome del glifo) contiene il nome di un glifo, espresso secondo le convenzioni Unicode per i nome dei caratteri.
Modulo gaiji
Usato da
Può contenere Ammessi soltanto caratteri di testo
Dichiarazione
element glyphName { att.global.attributes, text }
Esempio
<glyphName>CIRCLED IDEOGRAPH 4EBA</glyphName>

<graphic>

<graphic> indica la posizione di un grafico, di una illustrazione o immagine. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COGR
Modulo core
Oltre agli attributi globali att.internetMedia (@mimeType) att.declaring (@decls)
width ampiezza dell'immagine da visualizzare
Stato Obbligatorio se applicabile
Tipo di dati token { pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" }
height altezza dell'immagine da visualizzare
Stato Obbligatorio se applicabile
Tipo di dati token { pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" }
scale scala da applicare all'immagine per ottenere la grandezza desiderata
Stato Obbligatorio se applicabile
Tipo di dati xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
url (URL (localizzatore universale di risorse)) URL di destinazione
Stato Obbligatorio se applicabile
Tipo di dati xsd:anyURI
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        graphic
{
   att.global.attributes,
   att.internetMedia.attributes,
   att.declaring.attributes,
   attribute 
                        width
   {
      token
      {
         pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)"
      }
   }?,
   attribute 
                        height
   {
      token
      {
         pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)"
      }
   }?,
   attribute 
                        scale
   {
      xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal
   }?,
   attribute url { xsd:anyURI }?,
   empty
}
Esempio
<figure>
 <graphic url="fig1.png"/>
 <head>Figure One: The View from the Bridge</head>
 <figDesc>A Whistleresque view showing four or five sailing boats in the foreground, and a
   series of buoys strung out between them.</figDesc>
</figure>

<group>

<group> contiene il corpo di un testo composito, che raggruppa cioè un insieme di testi distinti (o più insiemi di testi) considerati come unità per determinati scopi, per esempio l'opera completa di un autore, una serie di saggi, ecc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DS http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSGRP http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCDEF
Modulo textstructure
Oltre agli attributi globali att.declaring (@decls)
Usato da
Può contenere
figures: figure
linking: anchor
textstructure: docAuthor group text
Dichiarazione
                        element 
                        group
{
   att.global.attributes,
   att.declaring.attributes,
   (
      ( model.divTop | model.global )*,
      ( ( text | group ), ( text | group | model.global )* ),
      model.divBottom*
   )
}
Esempio
<egXML><text>
<!-- Section on Alexander Pope starts -->
  <front>
<!-- biographical notice by editor -->
  </front>
  <group>
   <text>
<!-- first poem -->
   </text>
   <text>
<!-- second poem -->
   </text>
  </group>
</text>
<!-- end of Pope section-->
</egXML>

<handDesc>

<handDesc> (descrizione delle mani) contiene una descrizione dei diversi tipi di scrittura usati in un manoscritto 1.5.2 Writing, Decoration, and Other Notations
Modulo msdescription
Oltre agli attributi globali
hands specifica il numero delle diverse mani identificate all'interno del manoscritto
Stato Opzionale
Tipo di dati xsd:nonNegativeInteger
Usato da
Può contenere
core: p
header: handNote
msdescription: summary
Dichiarazione
                        element 
                        handDesc
{
   att.global.attributes,
   attribute hands { xsd:nonNegativeInteger }?,
   ( model.pLike+ | ( summary?, handNote+ ) )
}
Esempio
<handDesc>
 <handNote scope="major">Written throughout in <term>angelicana formata</term>.</handNote>
</handDesc>
Esempio
<handDesc hands="2">
 <p>The manuscript is written in two contemporary hands, otherwise
   unknown, but clearly those of practised scribes. Hand I writes
   ff. 1r-22v and hand II ff. 23 and 24. Some scholars, notably
   Verner Dahlerup and Hreinn Benediktsson, have argued for a third hand
   on f. 24, but the evidence for this is insubstantial.</p>
</handDesc>

<handNote>

<handNote> (nota sulla mano) descrive un determinato stile o una determinata mano all'interno di un manoscritto 1.5.2 Writing, Decoration, and Other Notations
Modulo header
Oltre agli attributi globali att.handFeatures (@scribe, @script, @medium, @scope)
script caratterizza un determinato stile di scrittura utilizzato dalla mano in questione, per esempio segretario, incisione su rame, Chancery, italiano, ecc.
Stato Richiesto
Tipo di dati 1–∞ occorrenze di  xsd:Name separato da spazio bianco
I valori legali sono:
carolmin
textualis
cursiva
hybrida
humbook
humcursiva
kanzlei
kurrent
other
script other than one of these [Valore di default]
unknown
script information not available
scope specifica in quale misura è utilizzata la mano in questione nel manoscritto
Stato Richiesto
I valori legali sono:
sole
[Valore di default]
major
minor
Usato da
Può contenere
Dichiarazione
                        element 
                        handNote
{
   att.global.attributes,
   att.handFeatures.attribute.scribe,
   attribute 
                        script
   {
      list
      {
         (
            "carolmin"
          | "textualis"
          | "cursiva"
          | "hybrida"
          | "humbook"
          | "humcursiva"
          | "kanzlei"
          | "kurrent"
          | "other"
          | "unknown"
         )+
      }
   },
   att.handFeatures.attribute.medium,
   attribute scope { "sole" | "major" | "minor" },
   macro.specialPara
}
Esempio
<handNote scope="sole">
 <p>Written in insular phase II half-uncial with interlinear Old English gloss in an
   Anglo-Saxon pointed minuscule.</p>
</handNote>

<handNotes>

<handNotes> contiene una serie di elementi che elencano le diverse mani della fonte http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHDH
Modulo transcr
Usato da
Può contenere
header: handNote
Dichiarazione
element handNotes { att.global.attributes, handNote+ }
Esempio
<handNotes>
 <handNote xml:id="H1" script="copperplate" medium="brown-ink">Carefully written with regular descenders</handNote>
 <handNote xml:id="H2" script="print" medium="pencil">Unschooled scrawl</handNote>
</handNotes>

<handShift>

<handShift> segnala l'inizio di una porzione di testo attribuibile ad un'altra mano o riconducibile a un cambio di redattore, stile di scrittura, inchiostro o carattere http://www.tei-c.org/release/doc/tei-p5-doc/it/html/PH.html#PHDH
Modulo transcr
Oltre agli attributi globali att.handFeatures (@scribe, @script, @medium, @scope)
new indica la nuova mano
Stato Consigliato
Tipo di dati xsd:anyURI
Valori must be one of the hand identifiers declared in the document header (see section ??).
resp indica chi (curatore o trascrittore) ha identificato il cambiamento di redattore
Stato Consigliato
Tipo di dati xsd:anyURI
Valori must be one of the identifiers declared in the document header, associated with a person asserted as responsible for some aspect of the text's creation, transcription, editing, or encoding (see chapter ??).
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        handShift
{
   att.global.attributes,
   att.handFeatures.attributes,
   attribute new { xsd:anyURI }?,
   attribute resp { xsd:anyURI }?,
   empty
}
Esempio
<l>When wolde the cat dwelle in his ynne</l>
<handShift medium="greenish-ink"/>
<l>And if the cattes skynne be slyk <handShift medium="black-ink"/> and gaye</l>

<head>

<head> (titolo) contiene qualsiasi tipo di titolo, per esempio il titolo di una sezione, di una lista, di un glossario, di una descrizione di manoscritto, ecc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DS.html#DSHD
Modulo core
Oltre agli attributi globali att.typed (@type, @subtype)
Usato da
Può contenere
Dichiarazione
element head { att.global.attributes, att.typed.attributes, macro.paraContent }
Esempio

The most common use for the head element is to mark the headings of sections. In older writings, the headings or incipits may be rather longer than usual in modern works. If a section has an explicit ending as well as a heading, it should be marked as a <trailer>, as in this example:

<div1 n="I" type="book">
 <head>In the name of Christ here begins the first book of the ecclesiastical history of
   Georgius Florentinus, known as Gregory, Bishop of Tours.</head>
 <list>
  <head>Chapter-Headings</head>
 </list>
 <div2 type="section">
  <head>In the name of Christ here begins Book I of the history.</head>
  <p>Proposing as I do ...</p>
  <p>From the Passion of our Lord until the death of Saint Martin four hundred and twelve
     years passed.</p>
  <trailer>Here ends the first Book, which covers five thousand, five hundred and ninety-six
     years from the beginning of the world down to the death of Saint Martin.</trailer>
 </div2>
</div1>
Esempio

The head element is also used to mark headings of other units, such as lists:

With a few exceptions, connectives are equally
useful in all kinds of discourse: description, narration, exposition, argument. <list type="simple">
 <head>Connectives</head>
 <item>above</item>
 <item>accordingly</item>
 <item>across from</item>
 <item>adjacent to</item>
 <item>again</item>
 <item>
<!-- ... -->
 </item>
</list>

<height>

<height> si riferisce a una misurazione presa lungo l'asse parallelo al dorso 1.1.4 Dimensions
Modulo msdescription
Oltre agli attributi globali att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max))
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        height
{
   att.global.attributes,
   att.dimensions.attributes,
   macro.xtext
}
Esempio
<height unit="in" quantity="7"/>

<heraldry>

<heraldry> contiene una formula araldica di solito parte di uno stemma, blasone, ecc. 1.1.8 Heraldry
Modulo msdescription
Usato da
Può contenere
Dichiarazione
element heraldry { att.global.attributes, macro.phraseSeq }
Esempio
<p>Ownership stamp (xvii cent.) on i recto with the arms
<heraldry>A bull passant within a bordure bezanty,
   in chief a crescent for difference</heraldry> [Cole],
crest, and the legend <q>Cole Deum</q>.</p>

<hi>

<hi> (evidenziato) codifica una parola o sintagma in quanto graficamente distinta dal testo circostante, senza che vengano specificate le ragioni dell'evidenziazione. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COHQHE http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COHQH
Modulo core
Oltre agli attributi globali
rend (resa) indica come l'elemento in questione è stato reso o rappresentato nel testo originario
Stato Richiesto
Tipo di dati 1–∞ occorrenze di  token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } separato da spazio bianco
Valori any string of characters; if the typographic rendition of a text is to be systematically recorded, a systematic set of values for the rend attribute should be defined.
I valori legali sono:
hyphenated
underline
double-underline
bold
caps
italic
sup
rubric
<head rend="align(center) case(allcaps)">
 <lb/>To The <lb/>Duchesse <lb/>of <lb/>Newcastle,
<lb/>On Her <lb/>
 <hi rend="case(mixed)">New Blazing-World</hi>.
</head>
Usato da
Può contenere
Dichiarazione
                        element 
                        hi
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   attribute 
                        rend
   {
      list
      {
         (
            "hyphenated"
          | "underline"
          | "double-underline"
          | "bold"
          | "caps"
          | "italic"
          | "sup"
          | "rubric"
         )+
      }
   },
   att.global.attribute.xmlbase,
   att.global.facs.attributes,
   macro.paraContent
}
Esempio
<hi rend="gothic">And this Indenture further witnesseth</hi>
that the said <hi rend="italic">Walter Shandy</hi>, merchant,
in consideration of the said intended marriage ...

<history>

<history> raggruppa gli elementi che descrivono la storia completa di un manoscritto o di una sua parte 1.6 History
Modulo msdescription
Usato da
Può contenere
core: p
Dichiarazione
                        element 
                        history
{
   att.global.attributes,
   ( model.pLike+ | ( summary?, origin?, provenance*, acquisition? ) )
}
Esempio
<history>
 <origin>
  <p>Written in Durham during the mid twelfth
     century.</p>
 </origin>
 <provenance>
  <p>Recorded in two medieval
     catalogues of the books belonging to Durham Priory, made in 1391 and
     1405.</p>
  <p>Given to W. Olleyf by William Ebchester, Prior (1446-56)
     and later belonged to Henry Dalton, Prior of Holy Island (Lindisfarne)
     according to inscriptions on ff. 4v and 5.</p>
 </provenance>
 <acquisition>
  <p>Presented to Trinity College in 1738 by
     Thomas Gale and his son Roger.</p>
 </acquisition>
</history>

<idno>

<idno> (numero identificatore) fornisce un identificatore, standard o meno, usato per identificare un'unità bibliografica http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD24 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD26 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBICOI
Modulo header
Oltre agli attributi globali
type classifica l'identificatore, ad esempio come codice ISBN o altri generi di identificatori standard.
Stato Opzionale
Tipo di dati xsd:Name
Valori A name or abbreviation indicating what type of identifying number is given (e.g. ISBN, LCCN).
Usato da
Può contenere Ammessi soltanto caratteri di testo
Dichiarazione
element idno { att.global.attributes, attribute type { xsd:Name }?, text }
Esempio
<idno type="ISSN">0143-3385</idno>
<idno type="DOI">doi:10.1000/123</idno>
<idno type="URL">http://authority.nzetc.org/463/</idno>
<idno type="LT">Thomason Tract E.537(17)</idno>
<idno type="Wing">C695</idno>

<incipit>

<incipit> contiene l' incipit di un manoscritto, cioè le prime parole del testo propriamente detto, a eccezione di eventuali titoli in rosso che lo precedono; gli incipit hanno una lunghezza sufficiente a deteminare di quale opera si tratti e, anticamente, erano spesso utilizzati per riferirsi alle opere stesse al posto di eventuali titoli 1.4.1 The <msItem> Element
Modulo msdescription
Oltre agli attributi globali att.typed (@type, @subtype) att.msExcerpt (@defective)
Usato da
Può contenere
Dichiarazione
                        element 
                        incipit
{
   att.global.attributes,
   att.typed.attributes,
   att.msExcerpt.attributes,
   macro.phraseSeq
}
Esempio
<incipit>Pater noster qui es in celis</incipit>
<incipit defective="true">tatem dedit hominibus alleluia.</incipit>
<incipit type="biblical">Ghif ons huden onse dagelix broet</incipit>
<incipit>O ongehoerde gewerdighe christi</incipit>
<incipit type="lemma">Firmiter</incipit>
<incipit>Ideo dicit firmiter quia ordo fidei nostre probari non potest</incipit>

<index>

<index> ( voce di indice) segna la posizione da indicizzare per qualsiasi scopo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CONOIX
Modulo core
Oltre agli attributi globali att.spanning (@spanTo)
indexName fornisce un nome per specificare a quale indice (o indici) la voce di indice appartiene.
Stato Opzionale
Tipo di dati xsd:Name
Valori an application-specific name, consisting of Unicode characters only.
Usato da
Può contenere
core: index term
Dichiarazione
                        element 
                        index
{
   att.global.attributes,
   att.spanning.attributes,
   attribute indexName { xsd:Name }?,
   ( term, index? )*
}
Esempio
David's other principal backer, Josiah ha-Kohen
<index indexName="NAMES">
 <term>Josiah ha-Kohen b. Azarya</term>
</index> b. Azarya, son of one of the last gaons of Sura <index indexName="PLACES">
 <term>Sura</term>
</index> was David's own first cousin.

<institution>

<institution> contiene il nome di un'organizzazione (per esempio un'università o una biblioteca) nella quale si trova il deposito del manoscritto 1.2 The Manuscript Identifier
Modulo msdescription
Oltre agli attributi globali att.naming (@nymRef) (att.canonical (@key, @ref))
Usato da
Può contenere
gaiji: g
Dichiarazione
                        element 
                        institution
{
   att.global.attributes,
   att.naming.attributes,
   macro.xtext
}
Esempio
<msIdentifier>
 <settlement>Oxford</settlement>
 <institution>University of Oxford</institution>
 <repository>Bodleian Library</repository>
 <idno>MS. Bodley 406</idno>
</msIdentifier>

<item>

<item> contiene un componente di una lista http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COLI http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD6
Modulo core
Usato da
Può contenere
Dichiarazione
element item { att.global.attributes, macro.specialPara }
Esempio
<list type="ordered">
 <head>Here begin the chapter headings of Book IV</head>
 <item n="4.1">The death of Queen Clotild.</item>
 <item n="4.2">How King Lothar wanted to appropriate one third of the Church revenues.</item>
 <item n="4.3">The wives and children of Lothar.</item>
 <item n="4.4">The Counts of the Bretons.</item>
 <item n="4.5">Saint Gall the Bishop.</item>
 <item n="4.6">The priest Cato.</item>
 <item> ...</item>
</list>

<keywords>

<keywords> contiene una lista delle parole chiave o frasi che identificano l'argomento o la natura di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD43
Modulo header
Oltre agli attributi globali
scheme identifica il vocabolario controllato all'interno del quale sono definite le parole chiave.
Stato Richiesto
Tipo di dati xsd:anyURI
Valori Usually this will indicate an external website or other location where the scheme is documented.
Usato da
Può contenere
core: list term
Dichiarazione
                        element 
                        keywords
{
   att.global.attributes,
   attribute scheme { xsd:anyURI },
   ( term+ | list )
}
Esempio
<keywords scheme="http://classificationweb.net">
 <list>
  <item>Babbage, Charles</item>
  <item>Mathematicians - Great Britain - Biography</item>
 </list>
</keywords>

<l>

<l> (verso) contiene un singolo verso, anche incompleto. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COVE http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CODV http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DR.html#DRPAL
Modulo core
Oltre agli attributi globali
part specifica se il verso sia completo dal punto di vista metrico
Stato Obbligatorio se applicabile
I valori legali sono:
Y
(sì) il verso non è completo
N
(no) o il verso è completo, o vi è dichiarazione circa la sua completezza [Valore di default]
I
(iniziale) la parte iniziale di un verso incompleto
M
(mediano) la parte intermedia di un verso incompleto
F
(finale) la parte finale di un verso incompleto
Usato da
Può contenere
Dichiarazione
                        element 
                        l
{
   att.global.attributes,
   attribute part { "Y" | "N" | "I" | "M" | "F" }?,
   macro.paraContent
}
Esempio
<l met="-/-/-/-/-/" part="Y"/>

<label>

<label> contiene l'etichetta associata ad una voce in una lista; nei glossari indica il dermine che viene definito http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COLI
Modulo core
Usato da
Può contenere
Dichiarazione
element label { att.global.attributes, macro.phraseSeq }
Esempio

Labels are most commonly used for the headwords in glossary lists; note the use of the global xml:lang attribute to set the default language of the glossary list to Middle English, and identify the glosses and headings as modern English or Latin:

<list type="gloss" xml:lang="enm">
 <head xml:lang="en">Vocabulary</head>
 <headLabel xml:lang="en">Middle English</headLabel>
 <headItem xml:lang="en">New English</headItem>
 <label>nu</label>
 <item xml:lang="en">now</item>
 <label>lhude</label>
 <item xml:lang="en">loudly</item>
 <label>bloweth</label>
 <item xml:lang="en">blooms</item>
 <label>med</label>
 <item xml:lang="en">meadow</item>
 <label>wude</label>
 <item xml:lang="en">wood</item>
 <label>awe</label>
 <item xml:lang="en">ewe</item>
 <label>lhouth</label>
 <item xml:lang="en">lows</item>
 <label>sterteth</label>
 <item xml:lang="en">bounds, frisks (cf. <cit>
   <ref>Chaucer, K.T.644</ref>
   <quote>a courser, <term>sterting</term>as the fyr</quote>
  </cit>
 </item>
 <label>verteth</label>
 <item xml:lang="la">pedit</item>
 <label>murie</label>
 <item xml:lang="en">merrily</item>
 <label>swik</label>
 <item xml:lang="en">cease</item>
 <label>naver</label>
 <item xml:lang="en">never</item>
</list>
Esempio

Labels may also be used to record explicitly the numbers or letters which mark list items in ordered lists, as in this extract from Gibbon's Autobiography. In this usage the label element is synonymous with the n attribute on the item element:

I will add two facts, which have seldom occurred
in the composition of six, or at least of five quartos. <list rend="runon" type="ordered">
 <label>(1)</label>
 <item>My first rough manuscript, without any intermediate copy, has been sent to the press.</item>
 <label>(2) </label>
 <item>Not a sheet has been seen by any human eyes, excepting those of the author and the
   printer: the faults and the merits are exclusively my own.</item>
</list>
Esempio

Labels may also be used for other structured list items, as in this extract from the journal of Edward Gibbon:

<list type="gloss">
 <label>March 1757.</label>
 <item>I wrote some critical observations upon Plautus.</item>
 <label>March 8th.</label>
 <item>I wrote a long dissertation upon some lines of Virgil.</item>
 <label>June.</label>
 <item>I saw Mademoiselle Curchod — <quote xml:lang="la">Omnia vincit amor, et nos cedamus
     amori.</quote>
 </item>
 <label>August.</label>
 <item>I went to Crassy, and staid two days.</item>
</list>

<langKnowledge>

<langKnowledge> (conoscenza della lingua) riassume la conoscenza linguistica di una persona in forma descrittiva o tramite una lista di elementi langKnown
Modulo namesdates
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
tags assegna uno o più marcatori validi alle lingue indicate
Stato Opzionale
Tipo di dati 1–∞ occorrenze di  xsd:language separato da spazio bianco
Usato da
Può contenere
core: p
namesdates: langKnown
Dichiarazione
                        element 
                        langKnowledge
{
   att.global.attributes,
   att.datable.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   attribute tags { list { xsd:language+ } }?,
   ( model.pLike | langKnown+ )
}
Esempio
<langKnowledge tags="en-GB fr">
 <p>British English and French</p>
</langKnowledge>
Esempio
<langKnowledge>
 <langKnown tag="en-GB" level="H">British English</langKnown>
 <langKnown tag="fr" level="M">French</langKnown>
</langKnowledge>

<langKnown>

<langKnown> (competenza linguistica) riassume la competenza di una persona in una determinata lingua http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAHPA
Modulo namesdates
Oltre agli attributi globali att.datable (att.datable.w3c (@period, @when, @notBefore, @notAfter, @from, @to)) att.editLike (@cert, @resp, @evidence, @source) (att.dimensions (@unit, @quantity, @extent, @scope) (att.ranging (@atLeast, @atMost, @min, @max)) )
tag assegna un marcatore valido alla lingua in questione
Stato Richiesto
Tipo di dati xsd:language
level codice che indica il livello di competenza della persona in una determinata lingua
Stato Opzionale
Tipo di dati token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Usato da
Può contenere
Dichiarazione
                        element 
                        langKnown
{
   att.global.attributes,
   att.datable.attributes,
   att.editLike.attribute.cert,
   att.editLike.attribute.resp,
   att.editLike.attribute.evidence,
   att.editLike.attribute.source,
   att.dimensions.attributes,
   attribute tag { xsd:language },
   attribute level { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } }?,
   macro.phraseSeq.limited
}
Esempio
<langKnown tag="en-GB" level="H">British English</langKnown>
<langKnown tag="fr" level="M">French</langKnown>

<langUsage>

<langUsage> (lingua utilizzata) descrive le lingue, i linguaggi secondari, i registri, i dialetti ecc. rappresentati all'interno di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD41 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD4 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAS2
Modulo header
Oltre agli attributi globali att.declarable (@default)
Usato da
Può contenere
header: language
Dichiarazione
                        element 
                        langUsage
{
   att.global.attributes,
   att.declarable.attributes,
   language+
}
Esempio
<langUsage>
 <language ident="fr-CA" usage="60">Québecois</language>
 <language ident="en-CA" usage="20">Canadian business English</language>
 <language ident="en-GB" usage="20">British English</language>
</langUsage>

<language>

<language> indica una lingua o un linguaggio secondario utilizzato all'interno di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD41
Modulo header
Oltre agli attributi globali
ident (identificatore) fornisce un codice per la lingua costruito come definito in RFC 3066 (o nei sui successori), utilizzato per identificare la lingua documentata da questo elemento e che è indicato dall'attributo globale xml:lang.
Stato Richiesto
Tipo di dati xsd:language
usage specifica la percentuale approsimativa (per volume) di testo che usa questa lingua.
Stato Opzionale
Tipo di dati xsd:nonNegativeInteger { maxInclusive = "100" }
Valori a whole number between 0 and 100
Usato da
Può contenere
Dichiarazione
                        element 
                        language
{
   att.global.attributes,
   attribute ident { xsd:language },
   attribute usage { xsd:nonNegativeInteger { maxInclusive = "100" } }?,
   macro.phraseSeq.limited
}
Esempio
<langUsage xml:lang="en-US">
 <language ident="en-US" usage="75">modern American English</language>
 <language ident="i-az-Arab" usage="20">Azerbaijani in Arabic script</language>
 <language ident="x-lap" usage="05">Pig Latin</language>
</langUsage>

<layout>

<layout> descrive la disposizione del testo sulla pagina, ivi comprese eventuali informazioni su rigatura, applicazione di indicazioni per foratura, o altri segni di tecniche di preparazione della pagina 1.5.2 Writing, Decoration, and Other Notations
Modulo msdescription
Oltre agli attributi globali
columns specifica il numero di colonne per pagina
Stato Richiesto
Tipo di dati 1–2 occorrenze di  xsd:nonNegativeInteger separato da spazio bianco
Valori may be given as a pair of numbers (to indicate a range) or as a single number.
ruledLines specifica il numero di righe per colonna
Stato Opzionale
Tipo di dati 1–2 occorrenze di  xsd:nonNegativeInteger separato da spazio bianco
Valori may be given as a pair of numbers (a range) or as a single number.
writtenLines specifica il numero di righe scritte per colonna
Stato Opzionale
Tipo di dati 1–2 occorrenze di  xsd:nonNegativeInteger separato da spazio bianco
Valori may be given as a pair of numbers (a range), or as a single number.
Usato da
Può contenere
Dichiarazione
                        element 
                        layout
{
   attribute 
                        columns
   {
      list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? }
   },
   attribute 
                        ruledLines
   {
      list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? }
   }?,
   attribute 
                        writtenLines
   {
      list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? }
   }?,
   att.global.attributes,
   macro.specialPara
}
Esempio
<layout columns="1" ruledLines="25 32">Most pages have between 25 and 32 long lines ruled in lead.</layout>
Esempio
<layout columns="2" ruledLines="42">
 <p>2 columns of 42 lines ruled in ink, with central rule
   between the columns.</p>
</layout>
Esempio
<layout columns="1 2" writtenLines="40 50">
 <p>Some pages have 2 columns, with central rule
   between the columns; each column with between 40 and 50 lines of writing.</p>
</layout>

<layoutDesc>

<layoutDesc> (descrizione dell'impaginazione) raggruppa l'insieme delle descrizioni dell'impaginazione relative a un manoscritto 1.5.2 Writing, Decoration, and Other Notations
Modulo msdescription
Usato da
Può contenere
core: p
msdescription: layout
Dichiarazione
element layoutDesc { att.global.attributes, ( model.pLike+ | layout+ ) }
Esempio
<layoutDesc>
 <p>Most pages have between 25 and 32 long lines ruled in lead.</p>
</layoutDesc>
Esempio
<layoutDesc>
 <layout columns="2" ruledLines="42">
  <p>
   <locus from="f12r" to="f15v"/>
     2 columns of 42 lines pricked and ruled in ink, with
     central rule between the columns.</p>
 </layout>
 <layout columns="3">
  <p>
   <locus from="f16"/>小孔的三欄可見.</p>
 </layout>
</layoutDesc>

<lb>

<lb> (interruzione di riga) segna l'inizio di una nuova riga (tipografica) in qualche edizione o versione di un testo. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CORS5 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DR.html#DRPAL
Modulo core
Oltre agli attributi globali att.typed (@type, @subtype) att.sourced (@ed)
Usato da
Può contenere Elemento vuoto
Dichiarazione
                        element 
                        lb
{
   att.global.attributes,
   att.typed.attributes,
   att.sourced.attributes,
   empty
}
Esempio

Indicating typographical line breaks within metrical lines, where they occur at different places in different editions:

<l>Of Mans First Disobedience,<lb ed="1674"/> and<lb ed="1667"/> the Fruit</l>
<l>Of that Forbidden Tree, whose<lb ed="1667 1674"/> mortal tast</l>
<l>Brought Death into the World,<lb ed="1667"/> and all<lb ed="1674"/> our woe,</l>
Esempio

Indicating line structure of title page, display text, etc.:

<docTitle>
 <titlePart type="main">
  <lb/>THE <lb/>Pilgrim's Progress <lb/>FROM <lb/>THIS WORLD, <lb/>TO
 <lb/>That which is to come: </titlePart>
<!-- etc. -->
</docTitle>

<lg>

<lg> (un gruppo di versi) contiene un gruppo di versi che costituiscono un'unità formale, per esempio una stanza, un refrain, un paragrafo in versi, ecc. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COVE http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#CODV http://www.tei-c.org/release/doc/tei-p5-doc/it/html/DR.html#DRPAL
Modulo core
Oltre agli attributi globali att.divLike (@org, @sample, @part) att.typed (@type, @subtype) att.declaring (@decls)
Usato da
Può contenere
figures: figure
linking: anchor
textstructure: docAuthor
Dichiarazione
                        element 
                        lg
{
   att.global.attributes,
   att.divLike.attributes,
   att.typed.attributes,
   att.declaring.attributes,
   (
      ( model.divTop | model.global )*,
      ( model.lLike | lg ),
      ( model.lLike | lg | model.global )*,
      ( ( model.divBottom ), model.global* )*
   )
}
Esempio
<lg type="free">
 <l>Let me be my own fool</l>
 <l>of my own making, the sum of it</l>
</lg>
<lg type="free">
 <l>is equivocal.</l>
 <l>One says of the drunken farmer:</l>
</lg>
<lg type="free">
 <l>leave him lay off it. And this is</l>
 <l>the explanation.</l>
</lg>

<list>

<list> (list) contiene una qualsiasi sequenza di voci organizzate in una lista. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COLI
Modulo core
Oltre agli attributi globali
type descrive la forma della lista
Stato Opzionale
Tipo di dati xsd:Name
I valori suggeriti includono:
ordered
le voci della lista sono in ordine numerico o alfabetico
bulleted
le voci della lista sono contraddistinte da un punto o altro
simple
le voci della lista sono sono ordinate [Valore di default]
gloss
ogni voce dell'elenco è la glossa di un termine o concetto dato da un elemento legenda che precede la voce stessa
Usato da
Può contenere
figures: figure
linking: anchor
textstructure: docAuthor
Dichiarazione
                        element 
                        list
{
   att.global.attributes,
   attribute type { "ordered" | "bulleted" | "simple" | "gloss" | xsd:Name }?,
   (
      ( ( model.divTop ) | ( model.global ) )*,
      (
         ( item, model.global* )+
       | ( ( label, model.global*, item, model.global* )+ )
      ),
      ( ( model.divBottom ), model.global* )*
   )
}
Esempio
<list type="ordered">
 <item>a butcher</item>
 <item>a baker</item>
 <item>a candlestick maker, with <list type="bullets">
   <item>rings on his fingers</item>
   <item>bells on his toes</item>
  </list>
 </item>
</list>
Esempio

The following example treats the short numbered clauses of Anglo-Saxon legal codes as lists of items. The text is from an ordinance of King Athelstan (924–939):

<div1 type="section">
 <head>Athelstan's Ordinance</head>
 <list type="ordered">
  <item n="1">Concerning thieves. First, that no thief is to be spared who is caught with
     the stolen goods, [if he is] over twelve years and [if the value of the goods is] over
     eightpence. <list type="ordered">
    <item n="1.1">And if anyone does spare one, he is to pay for the thief with his
         wergild — and the thief is to be no nearer a settlement on that account — or to
         clear himself by an oath of that amount.</item>
    <item n="1.2">If, however, he [the thief] wishes to defend himself or to escape, he is
         not to be spared [whether younger or older than twelve].</item>
    <item n="1.3">If a thief is put into prison, he is to be in prison 40 days, and he may
         then be redeemed with 120 shillings; and the kindred are to stand surety for him
         that he will desist for ever.</item>
    <item n="1.4">And if he steals after that, they are to pay for him with his wergild,
         or to bring him back there.</item>
    <item n="1.5">And if he steals after that, they are to pay for him with his wergild,
         whether to the king or to him to whom it rightly belongs; and everyone of those who
         supported him is to pay 120 shillings to the king as a fine.</item>
   </list>
  </item>
  <item n="2">Concerning lordless men. And we pronounced about these lordless men, from whom
     no justice can be obtained, that one should order their kindred to fetch back such a
     person to justice and to find him a lord in public meeting. <list type="ordered">
    <item n="2.1">And if they then will not, or cannot, produce him on that appointed day,
         he is then to be a fugitive afterwards, and he who encounters him is to strike him
         down as a thief.</item>
    <item n="2.2">And he who harbours him after that, is to pay for him with his wergild
         or to clear himself by an oath of that amount.</item>
   </list>
  </item>
  <item n="3">Concerning the refusal of justice. The lord who refuses justice and upholds
     his guilty man, so that the king is appealed to, is to repay the value of the goods and
     120 shillings to the king; and he who appeals to the king before he demands justice as
     often as he ought, is to pay the same fine as the other would have done, if he had
     refused him justice. <list type="ordered">
    <item n="3.1">And the lord who is an accessory to a theft by his slave, and it becomes
         known about him, is to forfeit the slave and be liable to his wergild on the first
         occasionp if he does it more often, he is to be liable to pay all that he owns.</item>
    <item n="3.2">And likewise any of the king's treasurers or of our reeves, who has been
         an accessory of thieves who have committed theft, is to liable to the same.</item>
   </list>
  </item>
  <item n="4">Concerning treachery to a lord. And we have pronounced concerning treachery to
     a lord, that he [who is accused] is to forfeit his life if he cannot deny it or is
     afterwards convicted at the three-fold ordeal.</item>
 </list>
</div1>

Note that nested lists have been used so the tagging mirrors the structure indicated by the two-level numbering of the clauses. The clauses could have been treated as a one-level list with irregular numbering, if desired.

Esempio
<p>These decrees, most blessed Pope Hadrian, we propounded in the public council ... and they
confirmed them in our hand in your stead with the sign of the Holy Cross, and afterwards
inscribed with a careful pen on the paper of this page, affixing thus the sign of the Holy
Cross. <list type="simple">
  <item>I, Eanbald, by the grace of God archbishop of the holy church of York, have
     subscribed to the pious and catholic validity of this document with the sign of the Holy
     Cross.</item>
  <item>I, Ælfwold, king of the people across the Humber, consenting have subscribed with
     the sign of the Holy Cross.</item>
  <item>I, Tilberht, prelate of the church of Hexham, rejoicing have subscribed with the
     sign of the Holy Cross.</item>
  <item>I, Higbald, bishop of the church of Lindisfarne, obeying have subscribed with the
     sign of the Holy Cross.</item>
  <item>I, Ethelbert, bishop of Candida Casa, suppliant, have subscribed with thef sign of
     the Holy Cross.</item>
  <item>I, Ealdwulf, bishop of the church of Mayo, have subscribed with devout will.</item>
  <item>I, Æthelwine, bishop, have subscribed through delegates.</item>
  <item>I, Sicga, patrician, have subscribed with serene mind with the sign of the Holy
     Cross.</item>
 </list>
</p>

<listBibl>

<listBibl> (lista di citazioni) contiene una lista di citazioni bibliografiche di qualsiasi natura. http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CO.html#COBITY http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD3 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAS2
Modulo core
Oltre agli attributi globali att.declarable (@default) att.typed (@type, @subtype)
Usato da
Può contenere
linking: anchor
msdescription: msDesc
transcr: fw
Dichiarazione
                        element 
                        listBibl
{
   att.global.attributes,
   att.declarable.attributes,
   att.typed.attributes,
   ( model.headLike*, ( model.biblLike | model.milestoneLike | listBibl )+ )
}
Esempio
<listBibl>
 <head>Works consulted</head>
 <bibl>Blain, Clements and Grundy: Feminist Companion to
   Literature in English (Yale, 1990)
 </bibl>
 <biblStruct>
  <analytic>
   <title>The Interesting story of the Children in the Wood</title>
  </analytic>
  <monogr>
   <title>The Penny Histories</title>
   <author>Victor E Neuberg</author>
   <imprint>
    <publisher>OUP</publisher>
    <date>1968</date>
   </imprint>
  </monogr>
 </biblStruct>
</listBibl>

<listEvent>

<listEvent> (list of events) contains a list of descriptions, each of which provides information about an identifiable event.
Modulo namesdates
Oltre agli attributi globali att.typed (@type, @subtype) att.declarable (@default)
Usato da
Può contenere
Dichiarazione
                        element 
                        listEvent
{
   att.global.attributes,
   att.typed.attributes,
   att.declarable.attributes,
   ( model.headLike*, ( event | listEvent )+, ( relation | relationGrp )* )
}
Esempio
<listEvent>
 <head>Battles of the American Civil War: Kentucky</head>
 <event xml:id="event01" when="1861-09-19">
  <label>Barbourville</label>
  <desc>The Battle of Barbourville was one of the early engagements of
     the American Civil War. It occurred September 19, 1861, in Knox
     County, Kentucky during the campaign known as the Kentucky Confederate
     Offensive. The battle is considered the first Confederate victory in
     the commonwealth, and threw a scare into Federal commanders, who
     rushed troops to central Kentucky in an effort to repel the invasion,
     which was finally thwarted at the <ref target="#event02">Battle of
       Camp Wildcat</ref> in October.</desc>
 </event>
 <event xml:id="event02" when="1861-10-21">
  <label>Camp Wild Cat</label>
  <desc>The Battle of Camp Wildcat (also known as Wildcat Mountain and Camp
     Wild Cat) was one of the early engagements of the American Civil
     War. It occurred October 21, 1861, in northern Laurel County, Kentucky
     during the campaign known as the Kentucky Confederate Offensive. The
     battle is considered one of the very first Union victories, and marked
     the first engagement of troops in the commonwealth of Kentucky.</desc>
 </event>
 <event xml:id="event03" from="1864-06-11" to="1864-06-12">
  <label>Cynthiana</label>
  <desc>The Battle of Cynthiana (or Kellar’s Bridge) was an engagement
     during the American Civil War that was fought on June 11 and 12, 1864,
     in Harrison County, Kentucky, near the town of Cynthiana. A part of
     Confederate Brigadier General John Hunt Morgan's 1864 Raid into
     Kentucky, the battle resulted in a victory by Union forces over the
     raiders and saved the town from capture.</desc>
 </event>
</listEvent>

<listOrg>

<listOrg> (elenco delle organizzazioni) contiene una lista di descrizioni, ognuna delle quali fornisce informazioni relative a una determinata organizzazione http://www.tei-c.org/release/doc/tei-p5-doc/it/html/ND.html#NDORG
Modulo namesdates
Oltre agli attributi globali att.typed (@type, @subtype) att.declarable (@default)
Usato da
Può contenere
core: head
Dichiarazione
                        element 
                        listOrg
{
   att.global.attributes,
   att.typed.attributes,
   att.declarable.attributes,
   ( model.headLike*, ( org | listOrg )+, ( relationGrp | relation )* )
}
Esempio
<listOrg>
 <head>Libyans</head>
 <org>
  <orgName>Adyrmachidae</orgName>
  <desc>These people have, in most points, the same customs as the Egyptians, but
     use the costume of the Libyans. Their women wear on each leg a ring made of
     bronze [...] </desc>
 </org>
 <org>
  <orgName>Nasamonians</orgName>
  <desc>In summer they leave their flocks and herds upon the sea-shore, and go up
     the country to a place called Augila, where they gather the dates from the
     palms [...]</desc>
 </org>
 <org>
  <orgName>Garamantians</orgName>
  <desc>[...] avoid all society or intercourse with their fellow-men, have no
     weapon of war, and do not know how to defend themselves. [...]</desc>
<!-- ... -->
 </org>
</listOrg>

<listPerson>

<listPerson> (elenco delle persone) contiene una lista di descrizioni, ciascuna delle quali fornisce informazioni relative a una persona specifica o a un gruppo di persone, per esempio i partecipanti a un'interazione verbale o le persone identificate da una fonte storica http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAH http://www.tei-c.org/release/doc/tei-p5-doc/it/html/HD.html#HD4 http://www.tei-c.org/release/doc/tei-p5-doc/it/html/CC.html#CCAS2
Modulo namesdates
Oltre agli attributi globali att.typed (@type, @subtype) att.declarable (@default)
Usato da
Può contenere
core: head