The TEI TiteA standard for off-site text encoding
Perry Trolard
December 2006

Contents

1 Introduction

This document specifies how the Tite standard should be applied. Its organizing model is roughly the structure of a TEI document itself, and it proceeds from high-level features to low, starting with general requirements, text structure, directions on when to group texts, considerations about type of text (genre and format), down to instructions on marking phrase-level features, reference systems, and so forth. In its original ‘ODD’ (one document does-it-all) format, this document can generate everything necessary for working in Tite: both documentation (this Tite-specific prose as well as the full TEI technical documentation for relevant elements) and schemas in either W3C Schema, RelaxNG, or XML DTD. The Roma web tool can generate all of these.

Tite-encoded documents are TEI documents, and the Tite standard, with the exception of convenience elements (b, i, ul, sup, sub, smcap, cols and ornament all of which can be converted back to canonical TEI), is a pure subset of the TEI. That is, it was created primarily by removing elements and attributes from the TEI, and not from extensive modification. Thus as part of the TEI family, Tite inherits TEI semantics, and ambiguity in this specification should be resolved with reference to TEI Guidelines. What makes Tite distinct is that where the TEI in general is famously tolerant of multiple methods of encoding a given feature, Tite seeks uniformity of encoding through constraint, constraint via its stripped-down tag set and via this specification.

Tite can be used to encode printed prose, poetry, drama, newspapers, and anything else which can be described with the basic TEI building-blocks of divisions, paragraphs, line groups, and speeches.

A note on terms: I use document to refer generally to the item (book, pamphlet, newspaper, etc.) to be encoded and text as either linguistic material (as opposed to graphic or imagistic) or a logically distinct literary unit.

2 General Requirements

2.1 What to Capture

All printed material should be captured: all text (that is, printed characters) should be transcribed and the presence of graphical items or other non-transcribable elements should be indicated with markup (mostly the figure element). Normally text is understood to mean text in a Western character set, but this will be negotiated for each job. The presence of text in character sets outside the current scope should be indicated with the gap element.

2.2 End-of-line Hyphens

A distinction should be maintained in the electronic transcription between end-of-line or ‘soft’ hyphens (an artifact of page layout) and ‘hard’ hyphens (a linguistic feature). In the rare case of coincidence of the two types, the hyphen should be marked as hard (as it is not properly an end-of-line hyphen at all in this case).

2.3 Character Encoding

Texts should be encoded in UTF-8. For non-keyboard characters, each project should decide what kind of entities will serve best (mnemonic, numerical, etc.).

2.4 Accuracy and Verification

The standard for accuracy of transcription should be 99.99% (1 error in 10,000 characters). The sample size for verification should be 5% of the total text.

2.5 Documenting the Encoding Process

Almost unavoidably, difficult encoding situations will arise whose resolution may not be covered by these guidelines, ‘common sense’, or anything else close to hand. In any case like this where there is doubt or difficulty, it is important to document the markup choices that are made. To this end each encoded text should be accompanied by a document with such notes. These notes should reference both features of a document that seem remarkable to encoders (and how these were handled) and remarkable or non-obvious encoding decisions made by encoders.

3 Global Text Structure

3.1 TEI text structure

The basic structure of a TEI text is as follows:
<TEI>
 <teiHeader> [ TEI Header information ] </teiHeader>
 <text>
  <front> [ front matter ... ] </front>
  <body> [ body of text ... ] </body>
  <back> [ back matter ... ] </back>
 </text>
</TEI>

Thus there are two basic components: the (marked-up) text and its catalog-like description in the header. Tite is really only concerned with the text; it simply reproduces the teiHeader content model from the TEI Lite.

3.2 The teiHeader

Normally the patron institution maintains responsibility for the header. The header can be sent to the off-site location to be kept with the encoded text or no header may be sent. In the latter case a unique identifying number should be given as the xml:id attribute of the text element. For validation of header-less texts, if an XML DTD is being used as the schema, simply replace the TEI element with text as the root element in the document type declaration. (I.e. <!DOCTYPE text PUBLIC . . . >.) Otherwise any number of means could be employed to support intermediate validation, such as attaching dummy headers to all texts or temporarily modifying the schema to make the teiHeader element optional.

As was said above, the content model for Tite is taken verbatim from the TEI Tite, thus maintaining full flexibility for the patron institution while at the same time not imposing undue burden: a valid header can include as little as a title (titleStmt), publication statement (publicationStmt), and a description of the source document (sourceDesc).

3.3 Groups of Texts

A document should be encoded as a group of texts only when each potential member of the group contains its own front or back matter (most often, a separate title page). In this case the group element should replace the text element, and should contain child text elements each containing a front, body, and back (each text need not have both front and back matter, but should have at least one). Note that this group of texts will still have its own front and back matter. When dealing with a group of texts, the basic TEI text structure is modified to look like:
<TEI>
 <teiHeader> [ header information for the group ] </teiHeader>
 <text>
  <front> [ front matter for the group ] </front>
  <group>
   <text>
    <front> [ front matter of first text ] </front>
    <body> [ body of first text ] </body>
    <back> [ back matter of first text ] </back>
   </text>
   <text>
    <front> [ front matter of second text ] </front>
    <body> [ body of second text ] </body>
    <back> [ back matter of second text ] </back>
   </text> [ more texts or groups of texts here ] </group>
  <back> [ back matter for the group ] </back>
 </text>
</TEI>

In cases where a document appears to contain a group of texts but the above condition is not met, encode each unit as a div with an appropriate type attribute.

3.4 Structural Divisions

Tite uses numbered div elements: div1 through div7, which stand for levels of nesting within a text. div1s nest inside or are contained by the front, body, and back elements, div2s nest inside or are contained by div1s, etc. The document's table of contents is often a good place to find cues about where structural divisions start and end; other cues can be blank pages, recurring typographical or ornamental features, or a numbering system ("Chapter 5" etc.). Also, the presence of a heading will often indicate the beginning of a division.

The type attribute should be used to express the type of division being marked. Where present, use the unit name given in the document itself. Though any constrained enumerated list of type values will have to be determined on a job-by-job basis, some examples of appropriate division types are:
  • act
  • article
  • book
  • chapter
  • essay
  • letter
  • part
  • scene
  • section
  • subsection
For a good example of extensive use of enumerated lists to constrain possible types, see the University of Virginia Library's DLPS vendor specification.
The n attribute should be used to record sequential labels associated with a structural division (numbers, numerals, letters). When present, these labels should also be transcribed within the head tag. For instance:
<div n="IIItype="part">
 <head>III: It Awakes</head> [...]
</div>
When a heading is present, encode it with the head tag. If there is more than one heading at the beginning of a given division, encode each heading separately, using the type attribute to distinguish them. Appropriate values are:
  • main
  • sub (subtitle)
  • alt (alternate)
  • desc (descriptive)

3.4.1 False Indicators

A divisional title is a page that resembles a half-title page: it displays the title or heading of a major structural unit on an otherwise blank page. Divisional titles should be encoded not with a separate div element, but as a head within the appropriate div. For half-title pages and similar fly-title pages see the section on Front Matter.

Another potential false indication of a new structural division is an ornament used as an informal division: a printer's ornament of some sort, a string of asterisks or periods, or a horizontal line. Mark these with the special ornament element. If the ornament is a horizontal line or printer's device or otherwise not transcribable, make the element empty and include an appropriate type attribute (line or ornament); if the ornament is made up of characters, supply characters as the type value and transcribe the characters into ornament's content.

3.5 Front and Back Matter

Front and back matter should be encoded with the front and back elements, respectively. div1 elements should contain the major sections and should be characterized by type attribute values. The exception, however, is the title page, which should be encoded with the titlePage element. The titlePart element should have type attributes like for head but with one addition (volume):
  • main
  • sub (subtitle)
  • desc (descriptive title)
  • alt (alternate title)
  • volume (volume information)
<titePart type="volume"> should be used to encode volume information wherever it is found on the title page, even if it is separated from the other title information. Here is the element class that forms the titlePage content model:
<!ENTITY %
model.titlepagePart "graphic | byline | epigraph | docTitle | titlePart |
docAuthor | docEdition | docImprint | docDate | figure | ornament"
>

Information on the verso of the title page should be included as well (after a pb).

Common items to encode in front and back matter -- and therefore common type attribute values for front and back divisions are:
  • acknowledgements
  • advertisement
  • castlist
  • contents
  • dedication
  • fly-title
  • foreword
  • introduction
  • preface
  • appendix (back)
  • bibliography (back)
  • colophon (back)
  • glossary (back)
  • index (back)

Half-title and fly-title pages may be encountered in the front matter. A half-title page precedes the title page proper and sometimes includes volume or series information; a fly-title page comes at the very end of the front matter, just before the body. In the case of half-titles, encode these as <div1 type="half-title"> (with titlePart elements as appropriate); in the case of fly-titles, encode them likewise with <div1 type="fly-title">, making sure to make the fly-title division the last part of the front matter (and not the first part of the body, as may seem reasonable as well).

4 Types of Text

Tite is equipped to support basic encoding of several types of text: in terms of genre, it supports prose, verse, and drama, and in terms of format, it supports books, newspapers, pamphlets, and other similar printed material. Tite has special tags for letters, verse, drama, and newspapers.

4.1 Letters

opener and closer are elements designed to encode the beginning and ending sections of letters, prefaces, diary entries, or other personal types of writing. Both elements contain:
  • dateline: for recording time and place of composition
    • use date with type value (formatted yyyy-mm-dd) to record date information
  • signed: for recording a signature
  • salute: for recording salutation at the beginning ("Dear Roger,") or end ("Yours truly,")
opener contains addition elements that are not intended for use with letters:
  • argument: for a summary that precedes a division
  • byline: for a statement of responsibility for the document
However, the last opener-specific element, epigraph, will often be useful in the context of a letter. When encoding an epigraph, make sure to encode the content as you would any other feature, marking line groups, bibliographical elements, etc.

4.2 Verse

All verse should be encoded within at least one lg tag, even when there are no distinct stanzas or when the verse is interspersed with prose. If it is known, use the type attribute to express the type of line group. Sometimes within a poem there is a question about what should be tagged as a lg or as a separate div. As a rough rule of thumb, if there is a title accompanying the division, use the div tag; otherwise, use lg.

Each line of verse should be encoded with the l tag, and care should be taken to distinguish these logical lines of verse from lines motivated by page layout. The latter should be encoded as lbs. Thus
AS virtuous men pass mildly away, And whisper to their souls to go, Whilst some of their sad friends do say, "Now his breath goes," and some say, "No."
should be encoded as
<lg type="stanza">
 <l>AS virtuous men pass mildly away,</l>
 <l rend="indent1">And whisper to their souls to <lb/> go,</l>
 <l>Whilst some of their sad friends<lb/> do say,</l>
 <l rend="indent1">
  <q>Now his breath goes,</q> and <lb/> some say,
 <q>No.</q>
 </l>
</lg>
Also, as in the example above, use the rend attribute to mark when a line is indented more than its siblings. Using ‘numbered’ indent values (e.g. "indent1", "indent2", etc.) makes clear different levels of indentation.

4.3 Drama

The standard TEI elements for drama should be used: sp, stage, speaker. If the who attribute is used on sp, also transcribe who is written as the speaker, in whatever form in which it is written, in the speaker tag. Short pieces of stage direction that accompany the speaker designation may be included in the speaker tag.

Scenes and acts should be encoded as appropriately nested div elements with type attributes of scene or act, respectively. Cast lists can likewise be encoded used div and type="castlist".

Prologues and epilogues can be treated as sps of their own, unless their structure would be better represented by nesting these in div tags.

4.4 Newspapers

Tite includes the elements cols and cb which are well suited for the multi-column layout of newspapers. Decisions about how to render the layout in markup may not be well addressed here, but as an example of project-specific specifications see the University of Virginia Library's documentation.

5 Block-level Features

5.1 Block Quotations

Use the q element to encode block quotations, but not inline quotations. A block quotation is indicated by its being set off from surrounding text either with extra line-spacing or margins or with a different typeface. If necessary, an entire quoted text can go inside of a q tag, in which case a secondary TEI text hierarchy should nest inside of the quotation. This is preferable to employing an ambiguous use of div elements (where it is not clear whether the div is a structure in the containing text or the quoted text). Thus this is desirable:
<div1 type="intro">
 <p>[ . . . ]</p>
 <p>[ . . . ]</p>
 <q>[ here's a poem ]</q>
 <p>[ . . . ]</p>
</div1>
and this is not:
<div1 type="introduction">
 <div2 type="stuff before the poem">
  <p>[ . . . ]</p>
 </div2>
 <div2 type="poem">
  <lg>
   <l>here's a poem</l>
  </lg>
 </div2>
 <div2 type="stuff after the poem">
  <p>[ . . . ]</p>
 </div2>
</div1>

A q tag should not have any affect on the presence of quotation marks: if they are there, transcribe them.

5.2 Figures

If a figure has a heading or caption, encode it with the head tag. If there is associated text, simply use a p to encode it.

5.3 Tables and Lists

If a cell in a table is a heading or a label, use the role attribute on the cell tag and set it to label; if the cell contains data, there is no need to use role: data is the default. If a cell or row spans more than one column or row, use the rows or cols attributes set to the number of columns or rows that it spans.

If unsure about whether a structure is best encoded as a list or table, record it as a table only if it would not be properly understood without tabular layout.

TEI lists are either sequences of items or label-item pairs. If a list has the latter structure, be sure to encode each part.

5.4 Notes

Both the reference to the note in the running text and the note itself must be encoded. Use ptr or ref to encode the reference. If there is no reference in the text (often the case for marginal notes), supply a ptr element in a reasonable place in the text running beside the note. If there is a reference (number, symbol, etc.), use the ref element and include the reference text as the content. In both cases, a target attribute must be supplied which contains the xml:id value of the associated note.

When encoding the note itself with the note tag, the xml:id and place attributes must be supplied. See the TEI documentation for acceptable values for place; the most common will be foot, end, margin-left (-right, -top, -bot).

Transcribe the note directly after it is referenced in the document. In the case of notes without explicit reference (pointed to with ptr), set the anchored attribute to false.

5.5 ‘divWrapper’ Elements

Elements that can appear at the beginning and end of structural divisions, such as argument, epigraph, and opener, are called ‘divWrapper’ elements in the TEI class system. An argument is a summary, often peppered with dashes, of what is to come; be sure to distinguish this from a heading, which is a title for the division. If an epigraph comes with bibliographic or simple citation material, encode this as well. For example:
<epigraph>
 <cit>
  <q>"I have sworn upon the altar of God eternal hostility against every
     form of tyranny over the mind of man."</q>
  <bibl>
   <author>Thomas Jefferson.</author>
  </bibl>
 </cit>
</epigraph>

5.6 Uncertain Blocks

In rare cases in which the logical identity of a block-level element is hard to discern, use the TEI element ab (anonymous block) instead of applying a p or div tag. In these cases, be sure to document this decision in accompanying notes. Applying this element should be viewed as a last resort.

The gap element should be used when for some reason the document being transcribed contains illegible text (smudged, torn, missing, etc.) or something outside the scope of transcription for a given project: characters in an unsupported character set, for instance. gap indicates that something is omitted. When using gap, set the reason attribute to an appropriate value. (See unclear below.)

6 Phrase-level features

6.1 Typographical Changes

There are six elements in Tite that capture specific typographical features:
  • for bold-face glyphs
  • for italicized glyphs
  • for underlined glyphs
  • for glyphs in small-caps
  • for glyphs in subscript
  • for glyphs in superscript
These mark the physical change, and are agnostic about a logical motivation for it. There are two exceptions to this approach, however: marking foreign words and titles. In the case of foreign words, use the foreign tag; in the case of titles, use the title tag only if certain that the word or phrase in question is a title. If a phrase is, say, italicized but you are uncertain about its being a title, use the i tag instead. Foreign words should be marked only if they are typographically distinguished from surrounding text.

If there is a typographical feature not covered by the above elements, the TEI hi tag is still available in Tite. Enumerated lists of attribute values for hi's rend attribute should be negotiated job-by-job.

6.2 Alignment and Indentation

If the alignment of an element seems remarkable, set the element's rend attribute to an appropriate value (normally center, right, left, etc.). However, exhaustive description of alignment is not necessary. Headings, for instance, do not need to be marked as being centered, etc.

6.3 Punctuation

Standard keyboard punctuation marks should suffice for transcribing document punctuation except in the case of the ampersand, which must be represented with the entity reference &mp; in an XML document.

6.4 Uncertain Segments

The seg element is the phrase-level analogue to the ab tag. If a phrase-level feature seems to be present but its identity is hard to fathom, use this tag. This, again, is a kind of last resort.

Alternately, when a passage of text is for some reason too hard to discern, use the unclear element, setting the reason attribute to an appropriate value. When using unclear, surround the entire word with the tag if any part of it is unclear (not just the illegible letter, say).

7 Reference Systems

Encode page breaks (pb) at the start of each page, and encode breaks even for blank pages. If the page is numbered, include the page number as the value of the n attribute and no matter where the page number is printed on the page, place the pb tag at the "top."

If marking column breaks, follow the same rules as for page breaks. Column breaks are imagined to appear at the top of the column, at the beginning of the column's text. The cols element exists to record a change in columnar layout. If such a change occurs, mark the beginning of the new layout with cols and supply the new number of columns as the value for the n attribute.

If line breaks are to be captured, use the lb element.

Appendixes

Appendix A Substantive changes from P4

The TEI Tite conforms to the TEI P5 Guidelines, which makes a number of changes from the TEI P4 Guidelines. The following brief list indicates some of the major changes in P4 encoding practice which will need to be employed for P5 conformance.

Appendix B Formal specification

With the exception of two added elements and six easily convertible ‘convenience elements’, the TEI Tite is a pure subset of the TEI, modelled by stripping down the TEI Lite. All of the elements defined in it are taken from the following standard TEI modules: tei, core, header, textstructure, figures, and linking.

The following elements from those modules are excluded from the schema in both the TEI Lite and Tite: alt, altGrp, altIdent, analytic, attDef, attList, attRef, biblItem, biblStruct, binaryObject, broadcast, cb, classSpec, classes, content, correction, datatype, defaultVal, desc, distinct, div0, egXML, elementSpec, equipment, equiv, exemplum, fsdDecl, headItem, headLabel, hyphenation, imprimatur, interpretation, join, joinGrp, link, linkGrp, listRef, macroSpec, measure, meeting, memberOf, metDecl, metSym, moduleRef, moduleSpec, monogr, normalization, postBox, postCode, quotation, quote, recording, recordingStmt, remarks, schemaSpec, scriptStmt, segmentation, series, specDesc, specGrp, specGrpRef, specList, state, stdVals, street, stringVal, tag, timeline, valDesc, valItem, valList, variantEncoding, when.

Tite excludes the modules analysis and tagdocs where Lite includes some elements from these modules. Therefore Tite is less those elements as well.

The following elements are excluded in the TEI Lite but included in Tite: ab, div1, div2, div3, div4, div5, div6, div7.

The following are the elements that Tite excludes from the TEI Lite: addaltIdent, biblFull, choice, corr, del, divGen, emph, expan, gloss, imprint, index, mentioned, orig, reg, rs, sic, soCalled, teiCorpus, term, divanchor.

Finally, the following are the elements that Tite adds to the TEI: b, i, ul, smcap, sub, sup, cols, and ornament.

Here is the TEI Tite schema itself:

Classes defined

att.ascribed

att.ascribed

att.ascribed provides attributes for elements representing speech or action that can be ascribed to a specific individual.
Module tei
Members change q said sp
Attributes In addition to global attributes
who indicates the person, or group of people, to whom the element content is ascribed.
Status Optional
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values For transcribed speech, this will typically identify a participant or participant group; in other contexts, it will point to any identified person element.

att.datable

att.datable

att.datable provides attributes for normalization of elements that contain dates, times, or datable events.
Module tei
Members application date time
Attributes Global attributes and those inherited from [att.datable.w3c ]
Note
This ‘superclass’ provides attributes that can be used to provide normalized values of temporal information. By default, the attributes from the att.datable.w3c class are provided. If the module for names & dates is loaded, this class also provides attributes from the att.datable.iso class. In general, the possible values of attributes restricted to the W3C datatypes form a subset of those values available via the ISO 8601 standard. However, the greater expressiveness of the ISO datatypes may not be needed, and there exists much greater software support for the W3C datatypes.

att.datable.w3c

att.datable.w3c

att.datable.w3c provides attributes for normalization of elements that contain datable events using the W3C datatypes.
Module tei
Members att.datable [ application date time]
Attributes In addition to global attributes
period supplies a pointer to some location defining a named period of time within which the datable item is understood to have occurred.
Status Optional
Datatype xsd:anyURI
when supplies the value of a date or time in a standard form.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values 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"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
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="Julianwhen="1632-06-06"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
27th of May (old style)</date>.
<opener
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
The value of the when attribute is a string representing a date or time, or both, in any one of the following forms:
  • a date in any of the standard formats described by XML Schema Part 2: Datatypes Second Edition, i.e. most commonly yyyy-mm-dd, but also yyyy, --mm, ---dd, yyyy-mm, or --mm-dd
  • a time in the standard format described by XML Schema Part 2: Datatypes Second Edition, i.e. hh:mm:ss
  • a combined date and time in any of the standard formats described by XML Schema Part 2: Datatypes Second Edition, i.e. yyyy-mm-ddThh:mm:ss
The value of when is constrained to be in one of the date, time, or combined date & time formats recognized by the W3C XML Schema Part 2: Datatypes specification. This is true whether the date component (if any) is a Gregorian or a proleptic Gregorian date.
At the time of this writing, the W3C does not permit the year 0000, which would normally be used to represent the year 1 BCE. Using the current W3C system, the year 1 BCE is indicated with -0001, the year 2 BCE with -0002, etc.
It is the intention of the XML Schema Working Group to allow 0000 as … the lexical representation of 1 BCE (which is a leap year), -0001 will become the lexical representation of 2 BCE, -0002 of 3 BCE, etc.
Thus in some cases it may be advantageous to use the when-iso attribute to indicate years BCE instead.
notBefore specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
notAfter specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
from indicates the starting point of the period in standard form.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.
to indicates the ending point of the period in standard form.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values A normalized form of temporal expression conforming to the W3C XML Schema Part 2: Datatypes Second Edition.

att.declarable

att.declarable

att.declarable provides attributes for those elements in the TEI Header which may be independently selected by means of the special purpose decls attribute.
Module tei
Members bibl editorialDecl geoDecl langUsage listBibl projectDesc refsDecl samplingDecl sourceDesc textClass
Attributes Global attributes only

att.declaring

att.declaring

att.declaring provides attributes for elements which may be independently associated with a particular declarable element within the header, thus overriding the inherited default for that element.
Module tei
Members back body div1 div2 div3 div4 div5 div6 div7 floatingText front group ptr ref text
Attributes In addition to global attributes
decls identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content.
Status Mandatory when applicable
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values must identify a set of declarable elements of different types.
Note
The rules governing the association of declarable elements with individual parts of a TEI text are fully defined in chapter .

att.divLike

att.divLike

att.divLike provides attributes common to all elements which behave in the same way as divisions.
Module tei
Members div1 div2 div3 div4 div5 div6 div7 lg
Attributes Global attributes only

att.editLike

att.editLike

att.editLike provides attributes describing the nature of a encoded scholarly intervention or interpretation of any kind.
Module tei
Members date gap time unclear
Attributes In addition to global attributes
source contains a list of one or more pointers indicating the sources which support the given reading.
Status Mandatory when applicable
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values 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

att.global provides attributes common to all elements in the TEI encoding scheme.
Module tei
Members b cols i ornament smcap sub sup ul
Attributes In addition to global attributes and those inherited from [att.global.linking ]
xml:id (identifier) provides a unique identifier for the element bearing the attribute.
Status Optional
Datatype xsd:ID
Values any valid XML identifier .
Note
The xml:id attribute may be used to specify a canonical reference for an element; see section .
n (number) gives a number (or other label) for an element, which is not necessarily unique within the document.
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values any string of characters; often, but not necessarily, numeric.
Note
The n attribute may be used to specify the numbering of chapters, sections, list items, etc.; it may also be used in the specification of a standard reference system for the text.
xml:lang (language) indicates the language of the element content using a ‘tag’ generated according to BCP 47
Status Optional
Datatype xsd:language
Values 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.
Note
If no value is specified for xml:lang, the xml:lang value for the immediately enclosing element is inherited; for this reason, a value should always be specified on the outermost element (TEI).
rend (rendition) indicates how the element in question was rendered or presented in the source text.
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values 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)"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <lb/>To The
<lb/>Duchesse
<lb/>of
<lb/>Newcastle,
<lb/>On Her
<lb/>
 <hi rend="case(mixed)">New Blazing-World</hi>.

</head>
Note
These Guidelines make no binding recommendations for the values of the rend attribute; the characteristics of visual presentation vary too much from text to text and the decision to record or ignore individual characteristics varies too much from project to project. Some potentially useful conventions are noted from time to time at appropriate points in the Guidelines.
rendition points to a description of the rendering or presentation used for this element in the source text.
Status Optional
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values one or more URIs, separated by white space.
<head rendition="#ac #sc"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <lb/>To The
<lb/>Duchesse
<lb/>of
<lb/>Newcastle,
<lb/>On Her
<lb/>
 <hi rendition="#no">New Blazing-World</hi>.

</head>
<!-- elsewhere... -->
<rendition xml:id="scscheme="css">font-variant: smallcaps</rendition>
<rendition xml:id="noscheme="css">font-variant: normal</rendition>
<rendition xml:id="acscheme="css">text-align: center</rendition>
Note
The rendition attribute is used in a very similar way to the class attribute defined for XHTML but with the important distinction that its function is to describe the appearance of the source text, not necessarily to determine how that text should be presented on screen or paper.
Where both rendition and rend are supplied, the latter is understood to override or complement the former.
Each URI provided should indicate a rendition element defining the intended rendition in terms of some appropriate style language, as indicated by the scheme attribute.
xml:base provides a base URI reference with which applications can resolve relative URI references into absolute URI references.
Status Optional
Datatype xsd:anyURI
Values any syntactically valid URI reference.
<div type="bibl"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
The global attributes described here are made part of the attribute definition list declaration of each element by including a reference to the pattern att.global.attributes in each such declaration.

att.global.linking

att.global.linking

att.global.linking defines a set of attributes for hypertext and other linking, which are enabled for all elements when the additional tag set for linking is selected.
Module linking
Members att.global [ b cols i ornament smcap sub sup ul]
Attributes Global attributes only

att.handFeatures

att.handFeatures

att.handFeatures provides attributes describing aspects of the hand in which a manuscript is written.
Module tei
Members handNote
Attributes In addition to global attributes
scribe gives a standard name or other identifier for the scribe believed to be responsible for this hand.
Status Optional
Datatype xsd:Name
Values Any name
script characterizes the particular script or writing style used by this hand, for example secretary, copperplate, Chancery, Italian, etc..
Status Optional
Datatype 1–∞ occurrences of xsd:Nameseparated by whitespace
medium describes the tint or type of ink, e.g. brown, or other writing medium, e.g. pencil
Status Optional
Datatype xsd:Name
scope specifies how widely this hand is used in the manuscript.
Status Optional
Legal values are:
sole only this hand is used throughout the manuscript
major this hand is used through most of the manuscript
minor this hand is used occasionally in the manuscript

att.internetMedia

att.internetMedia

att.internetMedia provides attributes for specifying the type of a computer resource using a standard taxonomy.
Module tei
Members graphic
Attributes In addition to global attributes
mimeType (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type
Status Mandatory when applicable
Datatype token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Values The value should be a valid MIME media type
Note
This attribute class provides attributes for describing a computer resource, typically available over the internet, according to standard taxonomies. At present only a single taxonomy is supported, the Multipurpose Internet Mail Extensions Media Type system. This system of typology of media types is defined by the Internet Engineering Task Force in RFC 2046. The list of types is maintained by the Internet Assigned Numbers Authority.

att.measurement

att.measurement

att.measurement provides attributes to represent a regularized or normalized measurement.
Module tei
Members measureGrp
Attributes In addition to global attributes
unit indicates the units used for the measurement, usually using the standard symbol for the desired units.
Status Optional
Datatype xsd:Name
Suggested values include:
m (metre) SI base unit of length
kg (kilogram) SI base unit of mass
s (second) SI base unit of time
Hz (hertz) SI unit of frequency
Pa (pascal) SI unit of pressure or stress
(ohm) SI unit of electric resistance
L (litre) 1 dmł
t (tonne) 10ł kg
ha (hectare) 1 hm˛
(ĺngström) 10⁻ą⁰ m
mL (millilitre)
cm (centimetre)
dB (decibel) see remarks, below
kbit (kilobit) 10ł or 1000 bits
Kibit (kibibit) 2ą⁰ or 1024 bits
kB (kilobyte) 10ł or 1000 bytes
KiB (kibibyte) 2ą⁰ or 1024 bytes
MB (megabyte) 10⁶ or 1 000 000 bytes
MiB (mebibyte) 2˛⁰ or 1 048 576 bytes
Note
If the measurement being represented is not expressed in a particular unit, but rather is a number of discrete items, the unit count should be used, or the unit attribute may be left unspecified.
Wherever appropriate, a recognised SI unit name should be used (see further http://www.bipm.org/en/si/; http://physics.nist.gov/cuu/Units/). The list above is indicative rather than exhaustive.
quantity specifies the number of the specified units that comprise the measurement
Status Optional
Datatype xsd:double | xsd:decimal
commodity indicates the substance that is being measured
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Note
In general, when the commodity is made of discrete entities, the plural form should be used, even when the measurement is of only one of them.
Note
This attribute class provides a triplet of attributes that may be used either to regularize the values of the measurement being encoded, or to normalize them with respect to a standard measurement system.

<!-- regularization:--><l
   xmlns:tei="http://www.tei-c.org/ns/1.0">
So weren't you gonna buy <measure quantity="0.5unit="galcommodity="ice cream">half a gallon</measure>, baby</l>
<!-- normalization: -->
<l>So won't you go and buy <measure quantity="1.893unit="Lcommodity="ice cream">half a gallon</measure>,
baby?</l>
Note
The unit should normally be named using the standard abbreviation for an SI unit (see further http://www.bipm.org/en/si/; http://physics.nist.gov/cuu/Units/). However, encoders may also specify measurements using informally defined units such as lines or characters.

att.naming

att.naming

att.naming provides attributes common to elements which refer to named persons, places, organizations etc.
Module tei
Members name pubPlace
Attributes In addition to global attributes
key provides an external means of locating a full definition for the entity being named, such as a database record key or other token.
Status Optional
Datatype string
Values any string of Unicode characters
Note
The value may be a unique identifier from a database, or any other externally-defined name for the referent.
ref (reference) provides an explicit means of locating a full definition for the entity being named by means of a URI.
Status Optional
Datatype xsd:anyURI
Values any valid URI
Note
The value must point directly to an XML element containing the corresponding information, located within the current document or elsewhere and acccessible by a URI.
nymRef (reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it.
Status Optional
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values any valid URI
Note
The value must point directly to an XML element containing the corresponding information, located within the current document or elsewhere and acccessible by a URI.

att.placement

att.placement

att.placement provides attributes for describing where on the source page or object a textual element appears.
Module tei
Members figure note
Attributes In addition to global attributes
place
Status Recommended
Datatype xsd:Name
Suggested values include:
infralinear below the line
margin-bot (bottom margin) in the bottom margin
margin-left (left margin) in the left margin
margin-right (right margin) in the right margin
margin-top (top margin) in the top margin
opposite on the opposite, i.e. facing, page
overleaf on the other side of the leaf
supralinear above the line
verso on verso of the sheet or page
app (apparatus) note appears in the apparatus at the foot of the page.
end note appears at end of chapter or volume.
foot note appears at foot of page.
inline note appears as a marked paragraph in the body of the text.
interlinear note appears between lines of the text; a less precise form of either infralinear or supralinear.
inline addition is made in a space left in the witness by an earlier scribe.
mixed one or more of the other values

att.pointing

att.pointing

att.pointing defines a set of attributes used by all elements which point to other elements by means of one or more URI references.
Module linking
Members ptr ref
Attributes In addition to global attributes
type categorizes the pointer in some respect, using any convenient set of categories.
Status Optional
Datatype xsd:Name
Values The type should indicate the intended function of the pointer, or the rhetorical relationship between its source and target.
evaluate specifies the intended meaning when the target of a pointer is itself a pointer.
Status Optional
Legal values are:
all if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer.
one if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer.
none no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target.
Note
If no value is given, the application program is responsible for deciding (possibly on the basis of user input) how far to trace a chain of pointers.

att.segLike

att.segLike

att.segLike provides attributes for elements used for arbitrary segmentation.
Module tei
Members seg
Attributes Global attributes only

att.tableDecoration

att.tableDecoration

att.tableDecoration provides attributes used to decorate rows or cells of a table.
Module tei
Members cell row
Attributes In addition to global attributes
role indicates the kind of information held in this cell or in each cell of this row.
Status Optional
Datatype xsd:Name
Suggested values include:
label labelling or descriptive information only.
data data values. [Default]
Note
When this attribute is specified on a row, its value is the default for all cells in this row. When specified on a cell, its value overrides any default specified by the role attribute of the parent row element.
rows indicates the number of rows occupied by this cell or row.
Status Optional
Datatype xsd:nonNegativeInteger
Values A number; a value greater than one indicates that this cell (or row) spans several rows.
Note
Where several cells span several rows, it may be more convenient to use nested tables.
cols (columns) indicates the number of columns occupied by this cell or row.
Status Optional
Datatype xsd:nonNegativeInteger
Values A number; a value greater than one indicates that this cell or row spans several columns.
Note
Where an initial cell spans an entire row, it may be better treated as a heading.

att.translatable

att.translatable

att.translatable provides attributes used to indicate the status of a translatable portion of an ODD document.
Module tei
Members desc
Attributes In addition to global attributes
version specifies the version name or number of the source from which the translated version was derived
Status Optional
Datatype token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Note
The version may be a number, a letter, or a date

att.typed

att.typed

att.typed provides attributes which can be used to classify or subclassify elements in any way.
Module tei
Members ab application bibl cit date div1 div2 div3 div4 div5 div6 div7 floatingText head lg listBibl measureGrp relatedItem text time
Attributes In addition to global attributes
type characterizes the element in some sense, using any convenient classification scheme or typology.
Status Optional
Datatype xsd:Name

model.addrPart

model.addrPart

model.addrPart groups elements such as names or postal codes which may appear as part of a postal address.
Module tei
Used by address
Members model.nameLike [ model.nameLike.agent [ name] model.placeStateLike] addrLine

model.addressLike

model.addressLike

model.addressLike groups elements used to represent a postal or e-mail address.
Module tei
Used by model.pPart.data
Members address email

model.applicationLike

model.applicationLike

model.applicationLike groups elements used to record application-specific information about a document in its header.
Module header
Used by appInfo
Members application

model.biblLike

model.biblLike

model.biblLike groups elements containing a bibliographic description.
Module tei
Used by cit listBibl relatedItem sourceDesc taxonomy model.inter
Members bibl

model.biblPart

model.biblPart

model.biblPart groups elements which represent components of a bibliographic description.
Module tei
Used by bibl
Members model.imprintPart [ biblScope distributor pubPlace publisher] model.respLike [ author editor respStmt] edition extent idno relatedItem

model.choicePart

model.choicePart

model.choicePart groups elements (other than choice itself) which can be used within a choice alternation.
Module tei
Used by
Members abbr seg unclear

model.common

model.common

model.common groups common chunk- and inter-level elements.
Module tei
Used by argument body div1 div2 div3 div4 div5 div6 div7 epigraph postscript
Members model.divPart [ model.lLike [ l] model.pLike [ ab p] floatingText lg sp] model.inter [ model.biblLike [ bibl] model.egLike model.labelLike [ desc label] model.listLike [ list listBibl] model.qLike [ model.quoteLike [ cit] q said] model.stageLike [ stage] figure ornament table] ornament
Note
This class defines the set of chunk- and inter-level elements; it is used in many content models, including those for textual divisions.

model.dateLike

model.dateLike

model.dateLike groups elements containing temporal expressions.
Module tei
Used by model.pPart.data
Members date time

model.div1Like

model.div1Like

model.div1Like groups top-level structural divisions.
Module tei
Used by back body front
Members div1

model.div2Like

model.div2Like

model.div2Like groups second-level structural divisions.
Module tei
Used by div1
Members div2

model.div3Like

model.div3Like

model.div3Like groups third-level structural divisions.
Module tei
Used by div2
Members div3

model.div4Like

model.div4Like

model.div4Like groups fourth-level structural divisions.
Module tei
Used by div3
Members div4

model.div5Like

model.div5Like

model.div5Like groups fifth-level structural divisions.
Module tei
Used by div4
Members div5

model.div6Like

model.div6Like

model.div6Like groups sixth-level structural divisions.
Module tei
Used by div5
Members div6

model.div7Like

model.div7Like

model.div7Like groups seventh-level structural divisions.
Module tei
Used by div6
Members div7

model.divBottom

model.divBottom

model.divBottom groups elements appearing at the end of a text division.
Module tei
Used by body div1 div2 div3 div4 div5 div6 div7 group lg list
Members model.divBottomPart [ closer postscript signed trailer] model.divWrapper [ argument byline dateline docAuthor docDate epigraph]

model.divBottomPart

model.divBottomPart

model.divBottomPart groups elements which can occur only at the end of a text division.
Module tei
Used by back front model.divBottom
Members closer postscript signed trailer

model.divPart

model.divPart

model.divPart groups paragraph-level elements appearing directly within divisions.
Module tei
Used by macro.specialPara model.common
Members model.lLike [ l] model.pLike [ ab p] floatingText lg sp
Note
Note that this element class does not include members of the model.inter class, which can appear either within or between paragraph-level items.

model.divTop

model.divTop

model.divTop groups elements appearing at the beginning of a text division.
Module tei
Used by body div1 div2 div3 div4 div5 div6 div7 group lg list
Members model.divTopPart [ model.headLike [ head] opener salute] model.divWrapper [ argument byline dateline docAuthor docDate epigraph]

model.divTopPart

model.divTopPart

model.divTopPart groups elements which can occur only at the beginning of a text division.
Module tei
Used by model.divTop
Members model.headLike [ head] opener salute

model.divWrapper

model.divWrapper

model.divWrapper groups elements which can appear at either top or bottom of a textual division.
Module tei
Used by model.divTop model.divBottom
Members argument byline dateline docAuthor docDate epigraph

model.emphLike

model.emphLike

model.emphLike groups phrase-level elements which are typographically distinct and to which a specific function can be attributed.
Module tei
Used by model.highlighted model.limitedPhrase
Members foreign title

model.encodingPart

model.encodingPart

model.encodingPart groups elements which may be used inside encodingDesc and appear multiple times.
Module header
Used by encodingDesc
Members appInfo classDecl editorialDecl geoDecl projectDesc refsDecl samplingDecl

model.entryPart.top

model.entryPart.top

model.entryPart.top groups high level elements within a structured dictionary entry
Module tei
Used by
Members cit
Note
Members of this class typically contain related parts of a dictionary entry which form a coherent subdivision, for example a particular sense, homonym, etc.

model.frontPart

model.frontPart

model.frontPart groups elements which appear at the level of divisions within front or back matter.
Module tei
Used by back front
Members titlePage

model.global

model.global

model.global groups elements which may appear at any point within a TEI text.
Module tei
Used by address argument back bibl body byline change cit closer date div1 div2 div3 div4 div5 div6 div7 docImprint docTitle epigraph figure floatingText front group lg list opener postscript sp table text time titlePage macro.paraContent macro.phraseSeq macro.phraseSeq.limited macro.specialPara
Members model.global.edit [ gap] model.milestoneLike [ cb cols lb milestone pb] model.noteLike [ note]

model.global.edit

model.global.edit

model.global.edit groups globally available elements which perform a specifically editorial function.
Module tei
Used by model.global
Members gap

model.glossLike

model.glossLike

model.glossLike groups elements which provide an alternative name, explanation, or description for any markup construct.
Module tei
Used by category gap taxonomy
Members desc

model.graphicLike

model.graphicLike

model.graphicLike groups elements containing images, formulae, and similar objects.
Module tei
Used by figure model.phrase
Members formula graphic

model.headLike

model.headLike

model.headLike groups elements used to provide a title or heading at the start of a text division.
Module tei
Used by argument figure listBibl table model.divTopPart
Members head

model.headerPart

model.headerPart

model.headerPart groups high level elements which may appear more than once in a TEI Header.
Module header
Used by teiHeader
Members encodingDesc profileDesc

model.hiLike

model.hiLike

model.hiLike groups phrase-level elements which are typographically distinct but to which no specific function can be attributed.
Module tei
Used by model.highlighted
Members b hi i smcap sub sup ul

model.highlighted

model.highlighted

model.highlighted groups phrase-level elements which are typographically distinct.
Module tei
Used by bibl model.phrase
Members model.emphLike [ foreign title] model.hiLike [ b hi i smcap sub sup ul]

model.imprintPart

model.imprintPart

model.imprintPart groups the bibliographic elements which occur inside imprints.
Module tei
Used by model.biblPart
Members biblScope distributor pubPlace publisher

model.inter

model.inter

model.inter groups elements which can appear either within or between paragraph-like elements.
Module tei
Used by change macro.limitedContent macro.paraContent macro.specialPara model.common
Members model.biblLike [ bibl] model.egLike model.labelLike [ desc label] model.listLike [ list listBibl] model.qLike [ model.quoteLike [ cit] q said] model.stageLike [ stage] figure ornament table

model.lLike

model.lLike

model.lLike groups elements representing metrical components such as verse lines.
Module tei
Used by lg sp model.divPart
Members l

model.labelLike

model.labelLike

model.labelLike groups elements used to gloss or explain other parts of a document.
Module tei
Used by application model.inter
Members desc label

model.limitedPhrase

model.limitedPhrase

model.limitedPhrase groups phrase-level elements excluding elements those primarily intended for transcription of existing sources.
Module tei
Used by catDesc change macro.limitedContent macro.phraseSeq.limited
Members model.emphLike [ foreign title] model.pPart.data [ model.addressLike [ address email] model.dateLike [ date time] model.measureLike [ measureGrp num] model.nameLike [ model.nameLike.agent [ name] model.placeStateLike] ] model.pPart.editorial [ abbr] model.ptrLike [ ptr ref]

model.listLike

model.listLike

model.listLike groups list-like elements.
Module tei
Used by sourceDesc model.inter
Members list listBibl

model.measureLike

model.measureLike

model.measureLike groups elements which denote a number, a quantity, a measurement, or similar piece of text that conveys some numerical meaning.
Module tei
Used by measureGrp model.pPart.data
Members measureGrp num

model.milestoneLike

model.milestoneLike

model.milestoneLike groups milestone-style elements used to represent reference systems.
Module tei
Used by model.global
Members cb cols lb milestone pb

model.msItemPart

model.msItemPart

model.msItemPart groups elements which can appear within a manuscript item description.
Module tei
Used by
Members model.quoteLike [ cit] model.respLike [ author editor respStmt] bibl listBibl title

model.nameLike

model.nameLike

model.nameLike groups elements which name or refer to a person, place, or organization.
Module tei
Used by model.addrPart model.pPart.data
Members model.nameLike.agent [ name] model.placeStateLike
Note
A superset of the naming elements that may appear in datelines, addresses, statements of responsibility, etc.

model.nameLike.agent

model.nameLike.agent

model.nameLike.agent groups elements which contain names of individuals or corporate bodies.
Module tei
Used by respStmt model.nameLike
Members name
Note
This class is used in the content model of elements which reference names of people or organizations.

model.noteLike

model.noteLike

model.noteLike groups globally-available note-like elements.
Module tei
Used by notesStmt model.global
Members note

model.pLike

model.pLike

model.pLike groups paragraph-like elements.
Module tei
Used by application availability cRefPattern editionStmt editorialDecl encodingDesc figure projectDesc publicationStmt refsDecl samplingDecl seriesStmt sourceDesc sp model.divPart
Members ab p

model.pLike.front

model.pLike.front

model.pLike.front groups paragraph-like elements which can occur as direct constituents of front matter.
Module tei
Used by back front
Members argument byline docAuthor docDate docEdition docImprint docTitle epigraph head titlePart

model.pPart.data

model.pPart.data

model.pPart.data groups phrase-level elements containing names, dates, numbers, measures, and similar data.
Module tei
Used by bibl model.phrase model.limitedPhrase
Members model.addressLike [ address email] model.dateLike [ date time] model.measureLike [ measureGrp num] model.nameLike [ model.nameLike.agent [ name] model.placeStateLike]

model.pPart.edit

model.pPart.edit

model.pPart.edit groups phrase-level elements for simple editorial correction and transcription.
Module tei
Used by bibl model.phrase
Members model.pPart.editorial [ abbr] model.pPart.transcriptional [ unclear]

model.pPart.editorial

model.pPart.editorial

model.pPart.editorial groups phrase-level elements for simple editorial interventions that may be useful both in transcribing and in authoring.
Module tei
Used by model.pPart.edit model.limitedPhrase
Members abbr

model.pPart.transcriptional

model.pPart.transcriptional

model.pPart.transcriptional groups phrase-level elements used for editorial transcription of pre-existing source materials.
Module tei
Used by model.pPart.edit
Members unclear

model.personPart

model.personPart

model.personPart groups elements which form part of the description of a person.
Module tei
Used by
Members bibl

model.phrase

model.phrase

model.phrase groups elements which can occur at the level of individual words or phrases.
Module tei
Used by byline closer date docImprint opener time macro.paraContent macro.phraseSeq macro.specialPara
Members model.graphicLike [ formula graphic] model.highlighted [ model.emphLike [ foreign title] model.hiLike [ b hi i smcap sub sup ul] ] model.pPart.data [ model.addressLike [ address email] model.dateLike [ date time] model.measureLike [ measureGrp num] model.nameLike [ model.nameLike.agent [ name] model.placeStateLike] ] model.pPart.edit [ model.pPart.editorial [ abbr] model.pPart.transcriptional [ unclear] ] model.ptrLike [ ptr ref] model.segLike [ seg]
Note
This class of elements can occur only within larger elements of the class inter or chunk. In prose, this means these elements can occur within paragraphs, list items, lines of verse, etc.

model.profileDescPart

model.profileDescPart

model.profileDescPart groups elements which may be used inside profileDesc and appear multiple times.
Module header
Used by profileDesc
Members langUsage textClass

model.ptrLike

model.ptrLike

model.ptrLike groups elements used for purposes of location and reference.
Module tei
Used by application bibl cit relatedItem model.phrase model.limitedPhrase
Members ptr ref

model.publicationStmtPart

model.publicationStmtPart

model.publicationStmtPart groups elements which may appear within the publicationStmt element of the TEI Header.
Module tei
Used by publicationStmt
Members address authority availability date distributor idno pubPlace publisher

model.qLike

model.qLike

model.qLike groups elements related to highlighting which can appear either within or between chunk-level elements.
Module tei
Used by cit model.inter
Members model.quoteLike [ cit] q said

model.quoteLike

model.quoteLike

model.quoteLike groups elements used to directly contain quotations.
Module tei
Used by model.qLike model.msItemPart
Members cit

model.respLike

model.respLike

model.respLike groups elements which are used to indicate intellectual responsibility, for example within a bibliographic element.
Module tei
Used by model.biblPart model.msItemPart
Members author editor respStmt

model.segLike

model.segLike

model.segLike groups elements used for arbitrary segmentation.
Module tei
Used by bibl model.phrase
Members seg
Note
The principles on which segmentation is carried out, and any special codes or attribute values used, should be defined explicitly in the segmentation element of the encodingDesc within the associated TEI header.

model.stageLike

model.stageLike

model.stageLike groups elements containing stage directions or similar things defined by the module for performance texts.
Module tei
Used by sp model.inter
Members stage
Note
Stage directions are members of class inter: that is, they can appear between or within component-level elements.

model.titlepagePart

model.titlepagePart

model.titlepagePart groups elements which can occur as direct constituents of a title page, such as docTitle, docAuth, docImprint, or epigraph.
Module tei
Used by titlePage
Members byline docAuthor docDate docEdition docImprint docTitle epigraph figure graphic ornament titlePart

Elements defined

TEI

<TEI> (TEI document) contains a single TEI-conformant document, comprising a TEI header and a text, either in isolation or as part of a teiCorpus element. «#DS» «#CCDEF»
Module textstructure
Parents
Attributes In addition to global attributes
version The version of the TEI scheme
Status Optional
Datatype xsd:decimal
Values A number identifying the version of the TEI guidelines
Declaration
element TEI
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute version { xsd:decimal }?,
   ( teiHeader, ( ( model.resourceLike+, text? ) | text ) )
}
Example
<TEI
   xmlns:tei="http://www.tei-c.org/ns/1.0"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

 <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>
Note
This element is required.

ab

<ab> (anonymous block) contains any arbitrary component-level unit of text, acting as an anonymous container for phrase or inter level elements analogous to, but without the semantic baggage of, a paragraph. «#SASE»
Module linking
Parents model.pLike
Attributes In addition to global attributes and those inherited from [att.typed ]
part specifies whether or not the block is complete.
Status Mandatory when applicable
Legal values are:
Y (yes) the block is incomplete
N (no) either the block is complete, or no claim is made as to its completeness [Default]
I (initial) the initial part of an incomplete block
M (medial) a medial part of an incomplete block
F (final) the final part of an incomplete block
Note
The values I, M, or F should be used only where it is clear how the block is to be reconstituted.
Declaration
element ab
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   attribute part { "Y" | "N" | "I" | "M" | "F" }?,
   macro.paraContent
}
Note
The ab element may be used at the encoder's discretion to mark any component-level elements in a text for which no other more specific appropriate markup is defined.

abbr

<abbr> (abbreviation) contains an abbreviation of any sort. «#CONAAB»
Module core
Parents model.pPart.editorial model.choicePart
Attributes In addition to global attributes
type allows the encoder to classify the abbreviation according to some convenient typology.
Status Optional
Datatype xsd:Name
Sample values include:
suspension the abbreviation provides the first letter(s) of the word or phrase, omitting the remainder.
contraction the abbreviation omits some letter(s) in the middle.
brevigraph the abbreviation comprises a special symbol or mark.
superscription the abbreviation includes writing above the line.
acronym the abbreviation comprises the initial letters of the words of a phrase.
title the abbreviation is for a title of address (Dr, Ms, Mr, …)
organization the abbreviation is for the name of an organization.
geographic the abbreviation is for a geographic name.
Note
The type attribute is provided for the sake of those who wish to classify abbreviations at their point of occurrence; this may be useful in some circumstances, though usually the same abbreviation will have the same type in all occurrences. As the sample values make clear, abbreviations may be classified by the method used to construct them, the method of writing them, or the referent of the term abbreviated; the typology used is up to the encoder and should be carefully planned to meet the needs of the expected use. For a typology of Middle English abbreviations, see
Declaration
element abbr
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { xsd:Name }?,
   macro.phraseSeq
}
Example
<abbr
   xmlns:tei="http://www.tei-c.org/ns/1.0">
SPQR</abbr>
Example
<choice
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <abbr>SPQR</abbr>
 <expan>senatus populusque romanorum</expan>
</choice>
Note
The abbr tag is not required; if appropriate, the encoder may transcribe abbreviations in the source text silently, without tagging them. If abbreviations are not transcribed directly but expanded silently, then the TEI header should so indicate.

addrLine

<addrLine> (address line) contains one line of a postal address. «#CONAAD» «#HD24» «#COBICOI»
Module core
Parents model.addrPart
Attributes Global attributes only
Declaration
element addrLine
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<address
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <addrLine>Computing Center, MC 135</addrLine>
 <addrLine>P.O. Box 6998</addrLine>
 <addrLine>Chicago, IL</addrLine>
 <addrLine>60680 USA</addrLine>
</address>
Note
Addresses may be encoded either as a sequence of lines, or using any sequence of component elements from the model.addrPart class. Other non-postal forms of address, such as telephone numbers or email, should not be included within an address element directly but may be wrapped within an addrLine if they form part of the printed address in some source text.

address

<address> contains a postal address, for example of a publisher, an organization, or an individual. «#CONAAD» «#HD24» «#COBICOI»
Module core
Parents model.addressLike model.publicationStmtPart
Attributes Global attributes only
Declaration
element address
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.global*, ( ( model.addrPart ), model.global* )+ )
}
Example
<address
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <street>via Marsala 24</street>
 <postCode>40126</postCode>
 <name>Bologna</name>
 <name n="I">Italy</name>
</address>
Example
<address
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <addrLine>Computing Center, MC 135</addrLine>
 <addrLine>P.O. Box 6998</addrLine>
 <addrLine>Chicago, IL 60680</addrLine>
 <addrLine>USA</addrLine>
</address>
Note
This element should be used for postal addresses only. Within it, the generic element addrLine may be used as an alternative to any of the more specialized elements available from the model.addrPart class, such as street, postcode etc.

appInfo

<appInfo> (application information) records information about an application which has edited the TEI file.
Module header
Parents model.encodingPart
Attributes Global attributes only
Declaration
element appInfo
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   model.applicationLike+
}

application

<application> provides information about an application which has acted upon the document.
Module header
Parents model.applicationLike
Attributes In addition to global attributes and those inherited from [att.typed att.datable ]
ident Supplies an identifier for the application, independent of its version number or display name.
Status Required
Datatype xsd:Name
version Supplies a version number for the application, independent of its identifier or display name.
Status Required
Datatype token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" }
Declaration
element application
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.datable.w3c.attribute.period,
   att.datable.w3c.attribute.when,
   att.datable.w3c.attribute.notBefore,
   att.datable.w3c.attribute.notAfter,
   att.datable.w3c.attribute.from,
   att.datable.w3c.attribute.to,
   attribute ident { xsd:Name },
   attribute version
   {
      token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" }
   },
   ( model.labelLike+, ( model.ptrLike* | model.pLike* ) )
}
Example
<appInfo
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <application version="1.5ident="ImageMarkupTool1notAfter="2006-06-01">
  <label>Image Markup Tool</label>
  <ptr target="#P1"/>
  <ptr target="#P2"/>
 </application>
</appInfo>

This example shows an appInfo element documenting the fact that version 1.5 of the Image Markup Tool1 application has an interest in two parts of a document which was last saved on June 6 2006. The parts concerned are accessible at the URLs given as target for the two ptr elements.

argument

<argument> A formal list or prose description of the topics addressed by a subdivision of a text. «#DSCO» «#DSDTB»
Module textstructure
Parents opener model.divWrapper model.pLike.front
Attributes Global attributes only
Declaration
element argument
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( ( model.global | model.headLike )*, ( ( model.common ), model.global* )+ )
}
Example
<argument
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>Monte Video — Maldonado — Excursion
   to R Polanco — Lazo and Bolas — Partridges —
   Absence of Trees — Deer — Capybara, or River Hog —
   Tucutuco — Molothrus, cuckoo-like habits — Tyrant
   Flycatcher — Mocking-bird — Carrion Hawks —
   Tubes formed by Lightning — House struck</p>
</argument>
Note
Often contains either a list or a paragraph

author

<author> in a bibliographic reference, contains the name of the author(s), personal or corporate, of a work; the primary statement of responsibility for any bibliographic item. «#COBICOR» «#HD21»
Module core
Parents titleStmt model.respLike
Attributes Global attributes only
Declaration
element author
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<author
   xmlns:tei="http://www.tei-c.org/ns/1.0">
British Broadcasting Corporation</author>
<author>La Fayette, Marie Madeleine Pioche de la Vergne,
comtesse de (1634–1693)</author>
Note
Particularly where cataloguing is likely to be based on the content of the header, it is advisable to use generally recognized authority lists for the exact form of personal names.
In the case of a broadcast, use this element for the name of the company or network which broadcasts the program.

authority

<authority> (release authority) supplies the name of a person or other agency responsible for making an electronic file available, other than a publisher or distributor. «#HD24»
Module header
Parents model.publicationStmtPart
Attributes Global attributes only
Declaration
element authority
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<authority
   xmlns:tei="http://www.tei-c.org/ns/1.0">
John Smith</authority>

availability

<availability> supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, etc. «#HD24»
Module header
Parents model.publicationStmtPart
Attributes In addition to global attributes
status supplies a code identifying the current availability of the text.
Status Optional
Legal values are:
free the text is freely available.
unknown the status of the text is unknown. [Default]
restricted the text is not freely available.
Declaration
element availability
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute status { "free" | "unknown" | "restricted" }?,
   model.pLike+
}
Example
<availability status="restricted"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
A consistent format should be adopted

b

<b> (bold) for capturing typographical feature: bold glyphs.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element b
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

back

<back> (back matter) contains any appendixes, etc. following the main part of a text. «#DSBACK» «#DS»
Module textstructure
Parents floatingText text
Attributes Global attributes and those inherited from [att.declaring ]
Declaration
element back
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   (
      ( 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 )* )? )
   )
}
Example
<back
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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;amp;c. 2s. 6d</item>
   <item n="2">Dr. Hooper's Female Pills, 1s.</item>
  </list>
 </div1>
</back>
Note
The content model of back matter is identical to that of front matter, reflecting the facts of cultural history.

bibl

<bibl> (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. «#COBITY» «#HD3» «#CCAS2»
Module core
Parents model.biblLike model.msItemPart model.personPart
Attributes Global attributes and those inherited from [att.declarable att.typed ]
Declaration
element bibl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   (
      text
    | model.gLikemodel.highlightedmodel.pPart.datamodel.pPart.editmodel.segLikemodel.ptrLikemodel.biblPartmodel.global
   )*
}
Example
<bibl
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Blain, Clements and Grundy: Feminist Companion to Literature in
English (Yale, 1990)</bibl>
Example
<bibl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
Contains phrase-level elements, together with any combination of elements from the biblPart class

biblScope

<biblScope> (scope of citation) defines the scope of a bibliographic reference, for example as a list of pagenumbers, or a named subdivision of a larger work. «#COBICOI»
Module core
Parents model.imprintPart
Attributes In addition to global attributes
type identifies the type of information conveyed by the element, e.g. pages, volume.
Status Optional
Datatype xsd:Name
Suggested values include:
vol (volume) the element contains a volume number.
issue the element contains an issue number, or volume and issue numbers.
pp (pages) the element contains a page number or page range.
chap (chapter) the element contains a chapter indication (number and/or title)
part the element identifies a part of a book or collection.
Declaration
element biblScope
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { "vol" | "issue" | "pp" | "chap" | "part" | xsd:Name }?,
   macro.phraseSeq
}
Example
<biblScope
   xmlns:tei="http://www.tei-c.org/ns/1.0">
pp 12–34</biblScope>
<biblScope type="vol">II</biblScope>
<biblScope type="pp">12</biblScope>

body

<body> (text body) contains the whole body of a single unitary text, excluding any front or back matter. «#DS»
Module textstructure
Parents floatingText text
Attributes Global attributes and those inherited from [att.declaring ]
Declaration
element body
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   (
      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* )*
   )
}

byline

<byline> contains the primary statement of responsibility given for a work on its title page or at the head or end of the work. «#DSOC» «#DSFRONT»
Module textstructure
Parents opener model.divWrapper model.titlepagePart model.pLike.front
Attributes Global attributes only
Declaration
element byline
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( text | model.gLike | model.phrase | docAuthor | model.global )*
}
Example
<byline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Written by a CITIZEN who continued all the
while in London. Never made publick before.</byline>
Example
<byline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Written from her own MEMORANDUMS</byline>
Example
<byline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
By George Jones, Political Editor, in Washington</byline>
Example
<dateline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Zagreb:</dateline>
<byline>de notre envoyé spécial.</byline>
Example
<byline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
BY
<docAuthor>THOMAS PHILIPOTT,</docAuthor>
Master of Arts,
(Somtimes)
Of Clare-Hall in Cambridge.</byline>
Note
The byline on a title page may include either the name or a description for the document's author. Where the name is included, it may optionally be tagged using the docAuthor element.

cRefPattern

<cRefPattern> (canonical reference pattern) specifies an expression and replacement pattern for tranforming a canonical reference into a URI. «#HD54M» «#HD54» «#HD54S»
Module header
Parents refsDecl
Attributes In addition to global attributes
matchPattern specifies a regular expression against which the values of cRef attributes can be matched.
Status Required
Datatype token
Values must be a regular expression according to the W3C XML Schema Language
Note
Parenthesised groups are used not only for establishing order of precedence and atoms for quantification, but also for creating subpatterns to be referenced by the replacementPattern attribute.
replacementPattern specifies a ‘replacement pattern’ which, once subpattern substitution has been performed, provides a URI.
Status Required
Datatype text
Values Should be the skeleton of a relative or absolute URI, with references to groups in the matchPattern.
Note
The strings ‘$1’ through ‘$9’ are references to the corresponding group in the regular expression specified by re (counting open parenthesis, left to right). Processors are expected to replace them with whatever matched the corresponding group in the regular expression.
If a digit preceded by a dollar sign is needed in the actual replacement pattern (as opposed to being used as a back reference), the dollar sign must be written as %24.
Declaration
element cRefPattern
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute matchPattern { token },
   attribute replacementPattern { text },
   model.pLike*
}
Example
<cRefPattern
  matchPattern="([1-9A-Za-z]+)\s+([0-9]+):([0-9]+)"
  replacementPattern="#xpath(//div[@type='book'][@n='$1']/div[@type='chap'][@n='$2']/div[@type='verse'][@n='$3'])"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>
Note
The result of the substitution may be either an absolute or a relative URI reference. In the latter case it is combined with the value of xml:base in force at the place where the cRef attribute occurs to form an absolute URI in the usual manner as prescribed by XML Base.

catDesc

<catDesc> (category description) describes some category within a taxonomy or text typology, either in the form of a brief prose description or in terms of the situational parameters used by the TEI formal textDesc. «#HD55»
Module header
Parents category
Attributes Global attributes only
Declaration
element catDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( text | model.limitedPhrase | model.catDescPart )*
}
Example
<catDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Prose reportage</catDesc>
Example
<catDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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="entertaindegree="high"/>
  <purpose type="informdegree="medium"/>
 </textDesc>
</catDesc>

catRef

<catRef//> (category reference) specifies one or more defined categories within some taxonomy or text typology. «#HD43»
Module header
Parents textClass
Attributes In addition to global attributes
target identifies the categories concerned
Status Required
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values A series of one or more space-separated pointers (URIs) to category elements, typically located within a taxonomy element inside a TEI header
scheme identifies the classification scheme within which the set of categories concerned is defined
Status Optional
Datatype xsd:anyURI
Values May supply the identifier of the associated taxonomy element.
Declaration
element catRef
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute target { list { xsd:anyURI+ } },
   attribute scheme { xsd:anyURI }?,
   empty
}
Example
<catRef target="#news #prov #sales2"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

<!-- 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>
Note
The scheme attribute need be supplied only if more than one taxonomy has been declared

category

<category> contains an individual descriptive category, possibly nested within a superordinate category, within a user-defined taxonomy. «#HD55»
Module header
Parents category taxonomy
Attributes Global attributes only
Declaration
element category
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( ( catDesc | model.glossLike* ), category* )
}
Example
<category xml:id="b1"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <catDesc>Prose reportage</catDesc>
</category>
Example
<category xml:id="b2"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <catDesc>Prose
 </catDesc>
 <category xml:id="b11">
  <catDesc>reportage</catDesc>
 </category>
 <category xml:id="b12">
  <catDesc>fiction</catDesc>
 </category>
</category>

cb

<cb//> (column break) marks the boundary between one column of a text and the next in a standard reference system. «#CORS5»
Module core
Parents model.milestoneLike
Attributes In addition to global attributes
ed (edition) indicates the edition or version in which the column break is located at this point
Status Recommended
Datatype xsd:anyURI
Values Any string of characters; usually a siglum conventionally used for the edition.
Declaration
element cb
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ed { xsd:anyURI }?,
   empty
}
Note
On this element, the global n attribute indicates the number or other value associated with the column which follows the point of insertion of this cb element. Encoders should adopt a clear and consistent policy as to whether the numbers associated with column breaks relate to the physical sequence number of the column in the whole text, or whether columns are numbered within the page. By convention, the cb element is placed at the head of the column to which it refers.

cell

<cell> contains one cell of a table. «#FTTAB1»
Module figures
Parents row
Attributes Global attributes and those inherited from [att.tableDecoration ]
Declaration
element cell
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.tableDecoration.attribute.role,
   att.tableDecoration.attribute.rows,
   att.tableDecoration.attribute.cols,
   macro.paraContent
}
Example
<row
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <cell role="label">General conduct</cell>
 <cell role="data">Not satisfactory, on account of his great unpunctuality
   and inattention to duties</cell>
</row>

change

<change> summarizes a particular change or correction made to a particular version of an electronic text which is shared between several researchers. «#HD6»
Module header
Parents revisionDesc
Attributes In addition to global attributes and those inherited from [att.ascribed ]
when supplies the date of the change in standard form, i.e. YYYY-MM-DD.
Status Mandatory when applicable
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values a date, time, or date & time in any of the formats defined in XML Schema Part 2: Datatypes Second Edition
Declaration
element change
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.ascribed.attribute.who,
   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 )*
}
Example
<change n="P2.2when="1991-12-21"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
LB Added examples to section 3</change>
<change when="1991-11-11">MSM Deleted chapter 10</change>
Note
Changes should be recorded in a consistent order, for example with the most recent first.

cit

<cit> (cited quotation) contains a quotation from some other document, together with a bibliographic reference to its source. In a dictionary it may contain an example text with at least one occurrence of the word form, used in the sense being described, or a translation of the headword, or an example. «#COHQQ» «#DSGRP» «#DITPEG»
Module core
Parents model.quoteLike model.entryPart.top
Attributes Global attributes and those inherited from [att.typed ]
Declaration
element cit
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   (
      model.qLikemodel.biblLikemodel.ptrLikemodel.globalmodel.entryPart
   )+
}
Example
<cit
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <quote>and the breath of the whale is frequently attended with such an insupportable smell,
   as to bring on disorder of the brain.</quote>
 <bibl>Ulloa's South America</bibl>
</cit>
Example
<entry
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <form>
  <orth>horrifier</orth>
 </form>
 <cit type="translationxml:lang="en">
  <quote>to horrify</quote>
 </cit>
 <cit type="example">
  <quote>elle était horrifiée par la dépense</quote>
  <cit type="translationxml:lang="en">
   <quote>she was horrified at the expense.</quote>
  </cit>
 </cit>
</entry>
Note
Must contain a single quote and a single bibliographic reference in either order

classCode

<classCode> (classification code) contains the classification code used for this text in some standard classification system. «#HD43»
Module header
Parents textClass
Attributes In addition to global attributes
scheme identifies the classification system or taxonomy in use.
Status Required
Datatype xsd:anyURI
Values 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.
Declaration
element classCode
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute scheme { xsd:anyURI },
   macro.phraseSeq.limited
}
Example
<classCode scheme="http://www.udc.org"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
410</classCode>

classDecl

<classDecl> (classification declarations) contains one or more taxonomies defining any classificatory codes used elsewhere in the text. «#HD55» «#HD5»
Module header
Parents model.encodingPart
Attributes Global attributes only
Declaration
element classDecl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   taxonomy+
}

closer

<closer> groups together salutations, datelines, and similar phrases appearing as a final group at the end of a division, especially of a letter. «#DSCO» «#DSDTB»
Module textstructure
Parents model.divBottomPart
Attributes Global attributes only
Declaration
element closer
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   (
      text
    | model.gLikesigneddatelinesalutemodel.phrasemodel.global
   )*
}
Example
<div type="letter"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>perhaps you will favour me with a sight
   of it when convenient.</p>
 <closer>
  <salute>I remain, &amp;c. &amp;c.</salute>
  <signed>H. Colburn</signed>
 </closer>
</div>
Example
<div type="chapter"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>and his heart was going like mad and yes
   I said yes I will Yes.</p>
 <closer>
  <dateline>
   <name type="place">Trieste-Zürich-Paris,</name>
   <date>1914–1921</date>
  </dateline>
 </closer>
</div>

cols

<cols//> (columns) with the "n" attribute (denoting new number of columns) is used to mark where a document changes columnar layout.
Module module-from-tei_tite
Parents model.milestoneLike
Attributes In addition to global attributes and those inherited from [att.global ]
ed indicates the edition or version in which the change in columnar layout is located at this point
Status Optional
Datatype xsd:anyURI
Declaration
element cols
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute [http://www.tei-c.org/ns/tite/1.0]ed { xsd:anyURI }?,
   empty
}

creation

<creation> contains information about the creation of a text. «#HD4C» «#HD4»
Module header
Parents profileDesc
Attributes Global attributes only
Declaration
element creation
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<creation
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <date>Before 1987</date>
</creation>
Example
<creation
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <date when="1988-07-10">10 July 1988</date>
</creation>
Note
Character data and phrase-level elements.
The creation element may be used to record details of a text's creation, e.g. the date and place it was composed, if these are of interest; it should not be confused with the publicationStmt element, which records date and place of publication.

date

<date> contains a date in any format. «#CONADA» «#HD24» «#HD6» «#COBICOI» «#CCAHSE» «#NDDATE»
Module core
Parents model.dateLike model.publicationStmtPart
Attributes In addition to global attributes and those inherited from [att.datable att.editLike att.typed ]
calendar indicates the system or calendar to which the date belongs.
Status Optional
Datatype xsd:Name
Suggested values include:
Gregorian Gregorian calendar
Julian Julian calendar
Islamic Islamic or Muslim (hijri) lunar calendar
Hebrew Hebrew or Jewish lunisolar calendar
Revolutionary French Revolutionary calendar
Iranian Iranian or Persian (Jalaali) solar calendar
Coptic Coptic or Alexandrian calendar
Chinese Chinese lunisolar calendar
He was born on
<date calendar="Gregorian"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Feb. 22, 1732</date>
(<date calendar="Julianwhen="1732-02-22"> Feb. 11, 1731/32, O.S.</date>).
Declaration
element date
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.datable.w3c.attribute.period,
   att.datable.w3c.attribute.when,
   att.datable.w3c.attribute.notBefore,
   att.datable.w3c.attribute.notAfter,
   att.datable.w3c.attribute.from,
   att.datable.w3c.attribute.to,
   att.editLike.attribute.source,
   att.typed.attribute.type,
   attribute calendar
   {
      "Gregorian"
    | "Julian"
    | "Islamic"
    | "Hebrew"
    | "Revolutionary"
    | "Iranian"
    | "Coptic"
    | "Chinese"
    | xsd:Name
   }?,
   ( text | model.gLike | model.phrase | model.global )*
}
Example
<date when="1980-02"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
early February 1980</date>
Example
Given on the <date when="1977-06-12"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
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>
Example
<date when="1990-09"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
September 1990</date>

dateline

<dateline> contains a brief description of the place, date, time, etc. of production of a letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading or trailer. «#DSCO» «#DSOC»
Module textstructure
Parents closer opener model.divWrapper
Attributes Global attributes only
Declaration
element dateline
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<dateline
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Walden, this 29. of August 1592</dateline>
Example
<div type="chapter"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>and his heart was going like mad and yes
   I said yes I will Yes.</p>
 <closer>
  <dateline>
   <name type="place">Trieste-Zürich-Paris,</name>
   <date>1914–1921</date>
  </dateline>
 </closer>
</div>

desc

<desc> (description) contains a brief description of the purpose and application for an element, attribute, or attribute value. «#TDTAG» «#TDATT» «#TDCLA» «#TDENT»
Module core
Parents model.glossLike model.labelLike
Attributes Global attributes and those inherited from [att.translatable ]
Declaration
element desc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.translatable.attribute.version,
   macro.limitedContent
}
Example
<desc
   xmlns:tei="http://www.tei-c.org/ns/1.0">
contains a brief description of the purpose and application for
an element, attribute, attribute value, class, or entity.</desc>
Note
TEI convention requires that this be expressed as a finite clause, begining with an active verb.

distributor

<distributor> supplies the name of a person or other agency responsible for the distribution of a text. «#HD24»
Module header
Parents model.imprintPart model.publicationStmtPart
Attributes Global attributes only
Declaration
element distributor
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<distributor
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Oxford Text Archive</distributor>
<distributor>Redwood and Burn Ltd</distributor>

div1

<div1> (level-1 text division) contains a first-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div1Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div1
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div2Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div2Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Example
<div1 xml:id="levin="Itype="part"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <head>Part I: Of Man </head>
 <div2 xml:id="levi1n="1type="chapter">
  <head>Chap. I. Of Sense </head>
  <p>Concerning the Thoughts of man... </p>
 </div2>
</div1>
<div1 xml:id="leviin="IItype="part">
 <head>Part II: Of Common-Wealth</head>
</div1>
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div2

<div2> (level-2 text division) contains a second-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div2Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div2
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div3Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div3Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Example
<div1 n="2type="part"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <head>The Second Partition:
   The Cure of Melancholy</head>
 <div2 n="2.1type="section">
  <div3 n="2.1.1type="member">
   <div4 n="2.1.1.1type="subsection">
    <head>Unlawful Cures rejected.</head>
    <p>Inveterate melancholy, howsoever it may seem to
         be a continuate, inexorable disease, hard to be
         cured, accompanying them to their graves most part
         (as <ref target="#a">Montanus</ref> observes), yet many
         times it may be helped...
    </p>
   </div4>
  </div3>
 </div2>
 <div2 n="2.2type="section">
  <div3 n="2.2.1type="member">
   <head>Sect. II. Memb. I</head>
   <p/>
  </div3>
 </div2>
 <div2 n="2.3type="section">
  <div3 n="2.3.1type="member">
   <head>Sect. III. Memb. I</head>
   <p/>
  </div3>
 </div2>
</div1>
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div3

<div3> (level-3 text division) contains a third-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div3Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div3
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div4Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div4Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Example
<div2 n="2.2type="section"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <div3 n="2.2.1type="member">
  <head>Sect. II. Memb. I</head>
  <p/>
 </div3>
 <div3 n="2.2.2type="member">
  <head>Memb. II
     Retention and Evacuation rectified.</head>
  <p/>
 </div3>
 <div3 n="2.2.3type="member">
  <head>Memb. III
     Ayr rectified. With a digression of the Ayr.</head>
  <p/>
 </div3>
</div2>
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div4

<div4> (level-4 text division) contains a fourth-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div4Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div4
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div5Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div5Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Example
<div3 n="2.2.1type="member"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <head>Sect. II. Memb. I</head>
 <div4 n="2.2.1.1type="subsection">
  <head>Subsect I. — Dyet rectified in substance.</head>
  <p>Diet, <term xml:lang="grc">diaitotiku</term>,
  <term xml:lang="la">victus</term> or living
  </p>
 </div4>
 <div4 n="2.2.2.1type="subsection">
  <head>Subsect II. — Dyet rectified in quantity.</head>
  <p>Man alone, saith Cardan, eates and drinks without
     appetite, and useth all his pleasures without necessity
  </p>
 </div4>
</div3>
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div5

<div5> (level-5 text division) contains a fifth-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div5Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div5
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div6Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div6Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div6

<div6> (level-6 text division) contains a sixth-level subdivision of the front, body, or back of a text. «#DSDIV2»
Module textstructure
Parents model.div6Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div6
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         (
            ( ( model.div7Like | model.divGenLike ), model.global* )+
          | (
               ( ( model.common ), model.global* )+,
               ( ( model.div7Like | model.divGenLike ), model.global* )*
            )
         ),
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Note
any sequence of low-level structural elements, possibly grouped into lower subdivisions.

div7

<div7> (level-7 text division) contains the smallest possible subdivision of the front, body or back of a text, larger than a paragraph. «#DSDIV2»
Module textstructure
Parents model.div7Like
Attributes Global attributes and those inherited from [att.divLike att.typed att.declaring ]
Declaration
element div7
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      (
         ( ( model.common ), model.global* )+,
         ( ( model.divBottom ), model.global* )*
      )?
   )
}
Note
any sequence of low-level structural elements, e.g., paragraphs (p), lists (list), or examples (eg or egXML).

docAuthor

<docAuthor> (document author) contains the name of the author of the document, as given on the title page (often but not always contained in a byline). «#DSTITL»
Module textstructure
Parents byline model.titlepagePart model.divWrapper model.pLike.front
Attributes Global attributes only
Declaration
element docAuthor
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Note
The document author's name often occurs within a byline, but the docAuthor element may be used whether the byline element is used or not.

docDate

<docDate> (document date) contains the date of a document, as given (usually) on a title page. «#DSTITL»
Module textstructure
Parents docImprint model.titlepagePart model.divWrapper model.pLike.front
Attributes In addition to global attributes
when gives the value of the date in standard form, i.e. YYYY-MM-DD.
Status Optional
Datatype xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime
Values a date in one of the formats specified in XML Schema Part 2: Datatypes Second Edition
Note
For simple dates, the when attribute should give the Gregorian or proleptic Gregorian date in the form (YYYY-MM-DD) specified by XML Schema Part 2.
Declaration
element docDate
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute when
   {
      xsd:date
    | xsd:gYear
    | xsd:gMonth
    | xsd:gDay
    | xsd:gYearMonth
    | xsd:gMonthDay
    | xsd:time
    | xsd:dateTime
   }?,
   macro.phraseSeq
}
Example
<docImprint
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Oxford, Clarendon Press, <docDate>1987</docDate>
</docImprint>
Note
Cf. the general date element in the core tag set. This specialized element is provided for convenience in marking and processing the date of the documents, since it is likely to require specialized handling for many applications.

docEdition

<docEdition> (document edition) contains an edition statement as presented on a title page of a document. «#DSTITL»
Module textstructure
Parents model.titlepagePart model.pLike.front
Attributes Global attributes only
Declaration
element docEdition
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}
Example
<docEdition
   xmlns:tei="http://www.tei-c.org/ns/1.0">
The Third edition Corrected</docEdition>
Note
Cf. the edition element of bibliographic citation. As usual, the shorter name has been given to the more frequent element.

docImprint

<docImprint> (document imprint) contains the imprint statement (place and date of publication, publisher name), as given (usually) at the foot of a title page. «#DSTITL»
Module textstructure
Parents model.titlepagePart model.pLike.front
Attributes Global attributes only
Declaration
element docImprint
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   (
      text
    | model.gLikemodel.phrasepubPlacedocDatepublishermodel.global
   )*
}
Example
<docImprint
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Oxford, Clarendon Press, 1987</docImprint>
Imprints may be somewhat more complex:
<docImprint
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
Cf. the imprint element of bibliographic citations. As with title, author, and editions, the shorter name is reserved for the element likely to be used more often.

docTitle

<docTitle> (document title) contains the title of a document, including all its constituents, as given on a title page. «#DSTITL»
Module textstructure
Parents model.titlepagePart model.pLike.front
Attributes Global attributes only
Declaration
element docTitle
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.global*, ( titlePart, model.global* )+ )
}
Example
<docTitle
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <titlePart type="main">The DUNCIAD,
   VARIOURVM.
 </titlePart>
 <titlePart type="sub">WITH THE
   PROLEGOMENA of SCRIBLERUS.
 </titlePart>
</docTitle>

edition

<edition> (edition) describes the particularities of one edition of a text. «#HD22»
Module header
Parents editionStmt model.biblPart
Attributes Global attributes only
Declaration
element edition
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<edition
   xmlns:tei="http://www.tei-c.org/ns/1.0">
First edition <date>Oct 1990</date>
</edition>
<edition n="S2">Students' edition</edition>

editionStmt

<editionStmt> (edition statement) groups information relating to one edition of a text. «#HD22» «#HD2»
Module header
Parents fileDesc
Attributes Global attributes only
Declaration
element editionStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.pLike+ | ( edition, respStmt* ) )
}
Example
<editionStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <edition n="S2">Students' edition</edition>
 <respStmt>
  <resp>Adapted by </resp>
  <name>Elizabeth Kirk</name>
 </respStmt>
</editionStmt>
Example
<editionStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>First edition, <date>Michaelmas Term, 1991.</date>
 </p>
</editionStmt>

editor

<editor> secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. «#COBICOR»
Module core
Parents titleStmt model.respLike
Attributes In addition to global attributes
role specifies the nature of the intellectual responsibility
Status Optional
Datatype xsd:Name
Values semi-open list (examples might include: translator, editor, compiler, illustrator, etc.)
Declaration
element editor
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute role { xsd:Name }?,
   macro.phraseSeq
}
Example
<editor
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Eric Johnson</editor>
<editor role="illustrator">John Tenniel</editor>
Note
A consistent format should be adopted
Particularly where cataloguing is likely to be based on the content of the header, it is advisable to use generally recognized authority lists for the exact form of personal names.

editorialDecl

<editorialDecl> (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. «#HD53» «#HD5» «#CCAS2»
Module header
Parents model.encodingPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element editorialDecl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.pLike+ | model.editorialDeclPart+ )
}
Example
<editorialDecl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <normalization>
  <p>All words converted to Modern American spelling using
     Websters 9th Collegiate dictionary
  </p>
 </normalization>
 <quotation marks="allform="std">
  <p>All opening quotation marks converted to “ all closing
     quotation marks converted to &amp;amp;cdq;.</p>
 </quotation>
</editorialDecl>

email

<email> (electronic mail address) contains an e-mail address identifying a location to which e-mail messages can be delivered. «#CONAAD»
Module core
Parents model.addressLike
Attributes Global attributes only
Declaration
element email
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<email
   xmlns:tei="http://www.tei-c.org/ns/1.0">
editors@tei-c.org</email>
Note
The format of a modern Internet email address is defined in RFC 2822

encodingDesc

<encodingDesc> (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. «#HD5» «#HD11»
Module header
Parents model.headerPart
Attributes Global attributes only
Declaration
element encodingDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( ( model.encodingPart | model.pLike )+ )
}

epigraph

<epigraph> contains a quotation, anonymous or attributed, appearing at the start of a section or chapter, or on a title page. «#DSCO» «#DSDTB» «#DSTITL»
Module textstructure
Parents opener model.divWrapper model.titlepagePart model.pLike.front
Attributes Global attributes only
Declaration
element epigraph
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.common | model.global )*
}
Example
<epigraph xml:lang="la"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <cit>
  <bibl>Lucret.</bibl>
  <quote>
   <l part="F">petere inde coronam,</l>
   <l>Vnde prius nulli velarint tempora Musae.</l>
  </quote>
 </cit>
</epigraph>

extent

<extent> describes the approximate size of a text as stored on some carrier medium, whether digital or non-digital, specified in any convenient units. «#HD23» «#HD2» «#COBICOI»
Module header
Parents fileDesc model.biblPart
Attributes Global attributes only
Declaration
element extent
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<extent
   xmlns:tei="http://www.tei-c.org/ns/1.0">
3200 sentences</extent>
<extent>between 10 and 20 Mb</extent>
<extent>ten 3.5 inch high density diskettes</extent>

figure

<figure> groups elements representing or containing graphic information such as an illustration or figure. «#FT»
Module figures
Parents figure model.inter model.titlepagePart
Attributes Global attributes and those inherited from [att.placement ]
Declaration
element figure
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.placement.attribute.place,
   (
      model.headLikemodel.pLikemodel.graphicLikemodel.egLikefloatingTextfiguremodel.global
   )*
}
Example
<figure
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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.pngscale="0.5"/>
</figure>

fileDesc

<fileDesc> (file description) contains a full bibliographic description of an electronic file. «#HD2» «#HD11»
Module header
Parents teiHeader
Attributes Global attributes only
Declaration
element fileDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   (
      (
         titleStmt,
         editionStmt?,
         extent?,
         publicationStmt,
         seriesStmt?,
         notesStmt?
      ),
      sourceDesc+
   )
}
Note
The major source of information for those seeking to create a catalogue entry or bibliographic citation for an electronic file. As such, it provides a title and statements of responsibility together with details of the publication or distribution of the file, of any series to which it belongs, and detailed bibliographic notes for matters not addressed elswhere in the header. It also contains a full bibliographic description for the source or sources from which the electronic text was derived.

floatingText

<floatingText> contains a single text of any kind, whether unitary or composite, which interrupts the text containing it at any point and after which the surrounding text resumes. «#DSFLT»
Module textstructure
Parents figure model.divPart
Attributes Global attributes and those inherited from [att.declaring att.typed ]
Declaration
element floatingText
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   att.typed.attribute.type,
   (
      model.global*,
      ( front, model.global* )?,
      ( body | group ),
      model.global*,
      ( back, model.global* )?
   )
}
Example
<TEI
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <teiHeader/>
 <text>
  <body>
   <div type="scene">
    <sp>
     <p>Hush, the players begin...</p>
    </sp>
    <floatingText type="pwp">
     <body>
      <div type="act">
       <sp>
        <l>In Athens our tale takes place ....</l>
       </sp>
<!-- ... rest of nested act here -->
      </div>
     </body>
    </floatingText>
    <sp>
     <p>Now that the play is finished ...</p>
    </sp>
   </div>
  </body>
 </text>
</TEI>
Note
A floating text has the same content as any other and may thus be interrupted by another floating text, or contain a group of tesselated texts

foreign

<foreign> (foreign) identifies a word or phrase as belonging to some language other than that of the surrounding text. «#COHQHF»
Module core
Parents model.emphLike
Attributes Global attributes only
Declaration
element foreign
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
This is heathen Greek to you still?
Your <foreign xml:lang="la"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
lapis philosophicus</foreign>?
Note
The global xml:lang attribute should be supplied for this element to identify the language of the word or phrase marked. Its value should be a As elsewhere its value should be a language code as defined in .
This element is intended for use only where no other element is available to mark the phrase or words concerned. The global xml:lang attribute should be used in preference to this element where it is intended to mark the language of the whole of some text element.
The distinct element may be used to identify phrases belonging to sublanguages or registers not generally regarded as true languages.

formula

<formula> contains a mathematical or other formula. «#FTFOR»
Module figures
Parents model.graphicLike
Attributes In addition to global attributes
notation supplies the name of a previously defined notation used for the content of the element.
Status Optional
Datatype xsd:anyURI
Values The name of a formal notation previously declared in the document type declaration.
Declaration
element formula
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute notation { xsd:anyURI }?,
   text
}
Note
The content model for this element is specified by the parameter entity formulaContent, the default value of which is #PCDATA.

front

<front> (front matter) contains any prefatory matter (headers, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. «#DSTITL» «#DS»
Module textstructure
Parents floatingText text
Attributes Global attributes and those inherited from [att.declaring ]
Declaration
element front
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   (
      ( 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 )* )? )
   )
}
Example
<front
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Example
<front
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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> (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. «#HD21»
Module header
Parents titleStmt
Attributes Global attributes only
Declaration
element funder
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<funder
   xmlns:tei="http://www.tei-c.org/ns/1.0">
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>
Note
Funders provide financial support for a project; they are distinct from sponsors, who provide intellectual support and authority.

gap

<gap> indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible or inaudible. «#COEDADD»
Module core
Parents model.global.edit
Attributes In addition to global attributes and those inherited from [att.editLike ]
reason gives the reason for omission. Sample values include sampling, illegible, inaudible, irrelevant, cancelled, cancelled and illegible.
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values any short indication of the reason for the omission.
unit names the unit used for describing the extent of the gap
Status Optional
Datatype xsd:Name
Suggested values include:
lines lines of text
chars (characters) characters of text
pages pages, i.e. one side of a leaf
cm (centimetres)
mm (millimetres)
in (inches)
Declaration
element gap
{
   attribute reason
   {
      list { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ }
   }?,
   attribute unit
   {
      "lines" | "chars" | "pages" | "cm" | "mm" | "in" | xsd:Name
   }?,
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.editLike.attribute.source,
   model.glossLike*
}
Example
<gap extent="4unit="charsreason="illegible"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>
Example
<gap extent="1unit="essayreason="sampling"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>
Note
The gap, unclear, and del core tag elements may be closely allied in use with the damage and supplied elements, available when using the additional tagset for transcription of primary sources. See section for discussion of which element is appropriate for which circumstance.

geoDecl

<geoDecl> (geographic coordinates declaration) documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document.
Module header
Parents model.encodingPart
Attributes In addition to global attributes and those inherited from [att.declarable ]
datum supplies a commonly used code name for the datum employed.
Status Mandatory when applicable
Datatype xsd:Name
Suggested values include:
WGS84 (World Geodetic System) a pair of numbers to be interpreted as latitude followed by longitude according to the World Geodetic System. [Default]
MGRS (Military Grid Reference System) the values supplied are geospatial entity object codes, based on Universal Transverse Mercator coordinates
OSGB36 (ordnance survey great britain) the value supplied is to be interpreted as a British National Grid Reference.
ED50 (European Datum coordinate system) the value supplied is to be interpreted as latitude followed by longitude according to the European Datum coordinate system.
Declaration
element geoDecl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute datum { "WGS84" | "MGRS" | "OSGB36" | "ED50" | xsd:Name }?,
   macro.phraseSeq
}
Example
<geoDecl datum="OSGB36"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

graphic

<graphic//> indicates the location of an inline graphic, illustration, or figure. «#COGR»
Module core
Parents model.graphicLike model.titlepagePart
Attributes In addition to global attributes and those inherited from [att.internetMedia ]
width The display width of the image
Status Mandatory when applicable
Datatype token { pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" }
height The display height of the image
Status Mandatory when applicable
Datatype token { pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" }
scale A scale factor to be applied to the image to make it the desired display size
Status Mandatory when applicable
Datatype xsd:double | xsd:decimal
url (uniform resource locator) The target URL
Status Mandatory when applicable
Datatype xsd:anyURI
Values A URL which refers to the image itself.
Declaration
element graphic
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.internetMedia.attribute.mimeType,
   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 | xsd:decimal }?,
   attribute url { xsd:anyURI }?,
   empty
}
Example
<figure
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
The mimeType attribute should be used to supply the MIME media type of the image specified by the url attribute.

group

<group> contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. «#DS» «#DSGRP» «#CCDEF»
Module textstructure
Parents floatingText group text
Attributes Global attributes and those inherited from [att.declaring ]
Declaration
element group
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   (
      ( model.divTop | model.global )*,
      ( ( text | group ), ( text | group | model.global )* ),
      model.divBottom*
   )
}

handNote

<handNote> (note on hand) describes a particular style or hand distinguished within a manuscript. «#msph2»
Module header
Parents
Attributes Global attributes and those inherited from [att.handFeatures ]
Declaration
element handNote
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.handFeatures.attribute.scribe,
   att.handFeatures.attribute.script,
   att.handFeatures.attribute.medium,
   att.handFeatures.attribute.scope,
   macro.specialPara
}
Example
<handNote scope="sole"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>Written in insular phase II half-uncial
   with interlinear Old English gloss in an Anglo-Saxon
   pointed minuscule.</p>
</handNote>

head

<head> (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. «#DSHD»
Module core
Parents model.headLike model.pLike.front
Attributes Global attributes and those inherited from [att.typed ]
Declaration
element head
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   macro.paraContent
}
Example

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="Itype="book"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

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"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <head>Connectives</head>
 <item>above</item>
 <item>accordingly</item>
 <item>across from</item>
 <item>adjacent to</item>
 <item>again</item>
 <item>
<!-- ... -->
 </item>
</list>
Note
The head element is used for headings at all levels; software which treats (e.g.) chapter headings, section headings, and list titles differently must determine the proper processing of a head element based on its structural position. A head occurring as the first element of a list is the title of that list; one occurring as the first element of a div1 is the title of that chapter or section.

hi

<hi> (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. «#COHQHE» «#COHQH»
Module core
Parents model.hiLike
Attributes Global attributes only
Declaration
element hi
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}
Example
<hi rend="gothic"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
And this Indenture further witnesseth</hi>
that the said <hi rend="italic">Walter Shandy</hi>, merchant,
in consideration of the said intended marriage ...

i

<i> (italics) for capturing typographical feature: italicized glyphs.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element i
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

idno

<idno> (identifying number) supplies any standard or non-standard number used to identify a bibliographic item. «#HD24» «#HD26» «#COBICOI»
Module header
Parents seriesStmt model.biblPart model.publicationStmtPart
Attributes In addition to global attributes
type categorizes the number, for example as an ISBN or other standard series.
Status Optional
Datatype xsd:Name
Values A name or abbreviation indicating what type of identifying number is given (e.g. ISBN, LCCN).
Declaration
element idno
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { xsd:Name }?,
   text
}
Example
<idno type="ISSN"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
0143-3385</idno>
<idno type="OTA">116</idno>

item

<item> contains one component of a list. «#COLI» «#HD6»
Module core
Parents list
Attributes Global attributes only
Declaration
element item
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.specialPara
}
Example
<list type="ordered"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
May contain simple prose or a sequence of chunks.
Whatever string of characters is used to label a list item in the copy text may be used as the value of the global n attribute, but it is not required that numbering be recorded explicitly. In ordered lists, the n attribute on the item element is by definition synonymous with the use of the label element to record the enumerator of the list item. In glossary lists, however, the term being defined should be given with the label element, not n.

keywords

<keywords> contains a list of keywords or phrases identifying the topic or nature of a text. «#HD43»
Module header
Parents textClass
Attributes In addition to global attributes
scheme identifies the controlled vocabulary within which the set of keywords concerned is defined.
Status Required
Datatype xsd:anyURI
Values Usually this will indicate an external website or other location where the scheme is documented.
Declaration
element keywords
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute scheme { xsd:anyURI },
   ( list )
}
Example
<keywords scheme="http://classificationweb.net"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <list>
  <item>Babbage, Charles</item>
  <item>Mathematicians - Great Britain - Biography</item>
 </list>
</keywords>

l

<l> (verse line) contains a single, possibly incomplete, line of verse. «#COVE» «#CODV» «#DRPAL»
Module core
Parents model.lLike
Attributes In addition to global attributes
part specifies whether or not the line is metrically complete.
Status Mandatory when applicable
Legal values are:
Y (yes) the line is metrically incomplete
N (no) either the line is complete, or no claim is made as to its completeness [Default]
I (initial) the initial part of an incomplete line
M (medial) a medial part of an incomplete line
F (final) the final part of an incomplete line
Note
The values I, M, or F should be used only where it is clear how the line is to be reconstituted.
Declaration
element l
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute part { "Y" | "N" | "I" | "M" | "F" }?,
   macro.paraContent
}
Example
<l met="-/-/-/-/-/part="Y"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

label

<label> contains the label associated with an item in a list; in glossaries, marks the term being defined. «#COLI»
Module core
Parents list model.labelLike
Attributes Global attributes only
Declaration
element label
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example

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="glossxml:lang="enm"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

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="runontype="ordered"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

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

<list type="gloss"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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 —
 <q xml:lang="la">Omnia vincit amor, et nos cedamus amori.</q>
 </item>
 <label>August.</label>
 <item>I went to Crassy, and staid two days.</item>
</list>

langUsage

<langUsage> (language usage) describes the languages, sublanguages, registers, dialects etc. represented within a text. «#HD41» «#HD4» «#CCAS2»
Module header
Parents model.profileDescPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element langUsage
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   language+
}
Example
<langUsage
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <language ident="fr-CAusage="60">Québecois</language>
 <language ident="en-CAusage="20">Canadian business English</language>
 <language ident="en-GBusage="20">British English</language>
</langUsage>

language

<language> characterizes a single language or sublanguage used within a text. «#HD41»
Module header
Parents langUsage
Attributes In addition to global attributes
ident (identifier) Supplies a language code constructed as defined in BCP 47 which is used to identify the language documented by this element, and which is referenced by the global xml:lang attribute.
Status Required
Datatype xsd:language
usage specifies the approximate percentage (by volume) of the text which uses this language.
Status Optional
Datatype xsd:nonNegativeInteger { maxInclusive = "100" }
Values a whole number between 0 and 100
Declaration
element language
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ident { xsd:language },
   attribute usage { xsd:nonNegativeInteger { maxInclusive = "100" } }?,
   macro.phraseSeq.limited
}
Example
<langUsage xml:lang="en-US"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <language ident="en-USusage="75">modern American English</language>
 <language ident="i-az-Arabusage="20">Azerbaijani in Arabic script</language>
 <language ident="x-lapusage="05">Pig Latin</language>
</langUsage>
Note
Particularly for sublanguages, an informal prose characterization should be supplied as content for the element.

lb

<lb//> (line break) marks the start of a new (typographic) line in some edition or version of a text. «#CORS5» «#DRPAL»
Module core
Parents model.milestoneLike
Attributes In addition to global attributes
ed (edition) indicates the edition or version in which the line break is located at this point
Status Recommended
Datatype xsd:anyURI
Values Any string of characters; usually a siglum conventionally used for the edition.
Declaration
element lb
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ed { xsd:anyURI }?,
   empty
}
Note
On this element, the global n attribute indicates the number or other value associated with the line which follows the point of insertion of this lb. Encoders should adopt a clear and consistent policy as to whether the numbers associated with line breaks relate to the physical sequence number of the line within the page, or to some aspect of the logical structure of the text. By convention, lb elements should appear at the start of the line to which they refer.
The lb tag is intended for making typographic line breaks in prose. It should be carefully distinguished from the l element, used to mark lines of verse.

lg

<lg> (line group) contains a group of verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. «#COVE» «#CODV» «#DRPAL»
Module core
Parents lg sp model.divPart
Attributes Global attributes and those inherited from [att.divLike att.typed ]
Declaration
element lg
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   (
      ( model.divTop | model.global )*,
      ( model.lLike | lg ),
      ( model.lLike | lg | model.global )*,
      ( ( model.divBottom ), model.global* )*
   )
}
Example
<lg type="free"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <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>
Note
contains verse lines or nested line groups only, possibly prefixed by a heading.

list

<list> contains any sequence of items organized as a list. «#COLI»
Module core
Parents keywords revisionDesc model.listLike
Attributes In addition to global attributes
type describes the form of the list.
Status Optional
Datatype xsd:Name
Suggested values include:
ordered list items are numbered or lettered.
bulleted list items are marked with a bullet or other typographic device.
simple list items are not numbered or bulleted. [Default]
gloss each list item glosses some term or concept, which is given by a label element preceding the list item.
Note
The formal syntax of the element declarations allows label tags to be omitted from lists tagged list type="gloss"; this is however a semantic error.
Declaration
element list
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   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* )*
   )
}
Example
<list type="ordered"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

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"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

Example
<p
   xmlns:tei="http://www.tei-c.org/ns/1.0">
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>
Note
May contain an optional heading followed by a series of items, or a series of label and item pairs, the latter being optionally preceded by one or two specialized headings.

listBibl

<listBibl> (citation list) contains a list of bibliographic citations of any kind. «#COBITY» «#HD3» «#CCAS2»
Module core
Parents listBibl model.listLike model.msItemPart
Attributes Global attributes and those inherited from [att.declarable att.typed ]
Declaration
element listBibl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   ( model.headLike*, ( model.biblLike | listBibl )+ )
}
Example
<listBibl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

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

measureGrp

<measureGrp> (measure group) contains a group of dimensional specifications which relate to the same object, for example the height and width of a manuscript page. «#msdim»
Module core
Parents model.measureLike
Attributes Global attributes and those inherited from [att.measurement att.typed ]
Declaration
element measureGrp
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.measurement.attribute.unit,
   att.measurement.attribute.quantity,
   att.measurement.attribute.commodity,
   att.typed.attribute.type,
   ( model.measureLike | text )*
}
Example
<measureGrp type="leavesunit="mm"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <height scope="range">157-160</height>
 <width quantity="105"/>
</measureGrp>
<measureGrp type="ruledAreaunit="mm">
 <height scope="mostquantity="90"/>
 <width scope="mostquantity="48"/>
</measureGrp>
<measureGrp type="boxunit="in">
 <height quantity="12"/>
 <width quantity="10"/>
 <depth quantity="6"/>
</measureGrp>

milestone

<milestone//> marks a boundary point separating any kind of section of a text, as indicated by changes in a standard reference system, where the section is not represented by a structural element. «#CORS5»
Module core
Parents model.milestoneLike
Attributes In addition to global attributes
ed (edition) indicates the edition or version to which the milestone applies.
Status Recommended
Datatype xsd:anyURI
Values Any string of characters; usually a siglum conventionally used for the edition.
unit provides a conventional name for the kind of section changing at this milestone.
Status Required
Datatype xsd:Name
Suggested values include:
page physical page breaks (synonymous with the pb element).
column column breaks.
line line breaks (synonymous with the lb element).
book any units termed book, liber, etc.
poem individual poems in a collection.
canto cantos or other major sections of a poem.
stanza stanzas within a poem, book, or canto.
act acts within a play.
scene scenes within a play or act.
section sections of any kind.
absent passages not present in the reference edition.
Note
If the milestone marks the beginning of a piece of text not present in the reference edition, the special value absent may be used as the value of unit. The normal interpretation is that the reference edition does not contain the text which follows, until the next milestone tag for the edition in question is encountered.
In addition to the values suggested, other terms may be appropriate (e.g. Stephanus for the Stephanus numbers in Plato).
Declaration
element milestone
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ed { xsd:anyURI }?,
   attribute unit
   {
      "page"
    | "column"
    | "line"
    | "book"
    | "poem"
    | "canto"
    | "stanza"
    | "act"
    | "scene"
    | "section"
    | "absent"
    | xsd:Name
   },
   empty
}
Example
<milestone n="23ed="Launit="Dreissiger"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

...
<milestone n="24ed="AVunit="verse"/>
...
Note
For this element, the global n attribute indicates the new number or other value for the unit which changes at this milestone. The special value unnumbered should be used in passages which fall outside the normal numbering scheme (e.g. chapter heads, poem numbers or titles, or speaker attributions in verse drama).
The order in which milestone elements are given at a given point is not normally significant.

name

<name> (name, proper noun) contains a proper noun or noun phrase. «#CONARS»
Module core
Parents model.nameLike.agent
Attributes In addition to global attributes and those inherited from [att.naming ]
type indicates the type of the object which is being named by the phrase.
Status Recommended
Datatype xsd:Name
Values Values such as person, place, institution, product, acronym.
Declaration
element name
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.naming.attribute.key,
   att.naming.attribute.ref,
   att.naming.attribute.nymRef,
   attribute type { xsd:Name }?,
   macro.phraseSeq
}
Note
Proper nouns referring to people, places, and organizations may be tagged instead with persName, placeName, or orgName, when the TEI module for names and dates is included.

namespace

<namespace> supplies the formal name of the namespace to which the elements documented by its children belong. «#HD57»
Module header
Parents
Attributes In addition to global attributes
name the full formal name of the namespace concerned.
Status Required
Datatype xsd:anyURI
Declaration
element namespace
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute name { xsd:anyURI },
   tagUsage+
}
Example
<namespace name="http://www.tei-c.org/ns/1.0"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <tagUsage
   gi="hi"
   occurs="28"
   withId="2"
   render="#it">
Used only to mark English words italicised in the copy text
 </tagUsage>
</namespace>

note

<note> contains a note or annotation. «#CONONO» «#HD27» «#COBICON» «#DITPNO»
Module core
Parents model.noteLike
Attributes In addition to global attributes and those inherited from [att.placement ]
type describes the type of note.
Status Optional
Datatype xsd:Name
Values Values can be taken from any convenient typology of annotation suitable to the work in hand; e.g. annotation, gloss, citation, digression, preliminary, temporary
resp (responsible party) indicates who is responsible for the annotation: author, editor, translator, etc.
Status Required when applicable
Datatype xsd:anyURI
Values a pointer to 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, encoding, or annotation
Note
For specialized types of editorial annotation (e.g. for marking corrections, normalizations, cruxes, etc.), see chapter .
anchored indicates whether the copy text shows the exact place of reference for the note.
Status Optional
Datatype xsd:boolean
Note
In modern texts, notes are usually anchored by means of explicit footnote or endnote symbols. An explicit indication of the phrase or line annotated may however be used instead (e.g. ‘page 218, lines 3–4’). The anchored attribute indicates whether any explicit location is given, whether by symbol or by prose cross-reference. The value true indicates that such an explicit location is indicated in the copy text; the value false indicates that the copy text does not indicate a specific place of attachment for the note. If the specific symbols used in the copy text at the location the note is anchored are to be recorded, use the n attribute.
target indicates the point (or points) of attachment for a note, or the beginning of the span to which the note is attached.
Status Required when applicable
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values reference to the xml:ids of element(s) which begin at the location in question (e.g. the xml:id of an anchor element).
Note
If target and targetEnd are to be used to indicate where notes attach to the text, then elements at the appropriate locations (anchor elements if necessary) must be given xml:id values to be pointed at.
targetEnd points to the end of the span to which the note is attached, if the note is not embedded in the text at that point.
Status Required when applicable
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values reference to the xml:id(s) of element(s) which end at the location(s) in question, or to an empty element at the point in question.
Declaration
element note
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.placement.attribute.place,
   attribute type { xsd:Name }?,
   attribute resp { xsd:anyURI }?,
   attribute anchored { xsd:boolean }?,
   attribute target { list { xsd:anyURI+ } }?,
   attribute targetEnd { list { xsd:anyURI+ } }?,
   macro.specialPara
}
Example
And yet it is not only in the great line of Italian
renaissance art, but even in the painterly
<note type="gloss"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <term xml:lang="de">Malerisch</term>.
This word has, in the German, two distinct meanings, one objective, a
quality residing in the object, the other subjective, a mode of
apprehension and creation. To avoid confusion, they have been
distinguished in English as <mentioned>picturesque</mentioned> and
<mentioned>painterly</mentioned> respectively. (Tr.)
</note>
style of the Dutch genre painters of the seventeenth century that
drapery has this psychological significance.
Note
The global n attribute may be used to supply the symbol or number used to mark the note's point of attachment in the source text, as in the following example:
Mevorakh b. Saadya's mother, the matriarch of the family
during the second half of the eleventh century,
<note n="126anchored="true"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
The alleged mention of Judah Nagid's mother in a letter from
1071 is, in fact, a reference to Judah's children; cf. above,
nn. 111 and 54.
</note>
is well known from Geniza documents published by Jacob Mann.
However, if notes are numbered in sequence and their numbering can be reconstructed automatically by processing software, it may well be considered unnecessary to record the note numbers.

notesStmt

<notesStmt> (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. «#HD27» «#HD2»
Module header
Parents fileDesc
Attributes Global attributes only
Declaration
element notesStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   model.noteLike+
}
Example
<notesStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <note>Historical commentary provided by Mark Cohen</note>
 <note>OCR scanning done at University of Toronto</note>
</notesStmt>
Note
Information of different kinds should not be grouped together into the same note.

num

<num> (number) contains a number, written in any form. «#CONANU»
Module core
Parents model.measureLike
Attributes In addition to global attributes
type indicates the type of numeric value.
Status Optional
Datatype xsd:Name
Suggested values include:
cardinal absolute number, e.g. 21, 21.5
ordinal ordinal number, e.g. 21st
fraction fraction, e.g. one half or three-quarters
percentage a percentage
Note
If a different typology is desired, other values can be used for this attribute.
value supplies the value of the number in standard form.
Status Optional
Datatype xsd:double | xsd:decimal
Values a numeric value.
Note
The standard form used is defined by the TEI datatype data.numeric.
Declaration
element num
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type
   {
      "cardinal" | "ordinal" | "fraction" | "percentage" | xsd:Name
   }?,
   attribute value { xsd:double | xsd:decimal }?,
   macro.phraseSeq
}
Example
<p
   xmlns:tei="http://www.tei-c.org/ns/1.0">
I reached <num type="cardinalvalue="21">twenty-one</num>
on my <num type="ordinalvalue="21">twenty-first</num> birthday...
light travels at <num value="10E10">10<hi rend="sup">10</hi>
 </num> cm per second.</p>
Note
Detailed analyses of quantities and units of measure in historical documents may also use the feature structure mechanism described in chapter . The num element is intended for use in simple applications.

opener

<opener> groups together dateline, byline, salutation, and similar phrases appearing as a preliminary group at the start of a division, especially of a letter. «#DSCO» «#DSDTB»
Module textstructure
Parents model.divTopPart
Attributes Global attributes only
Declaration
element opener
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   (
      text
    | model.gLikemodel.phraseargumentbylinedatelineepigraphsalutesignedmodel.global
   )*
}
Example
<opener
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <dateline>Walden, this 29. of August 1592</dateline>
</opener>
Example
<opener
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <dateline>
  <name type="place">Great Marlborough Street</name>
  <date>November 11, 1848</date>
 </dateline>
 <salute>My dear Sir,</salute>
</opener>
<p>I am sorry to say that absence from town and other
circumstances have prevented me from earlier enquiring...</p>

ornament

<ornament> for capturing typographical feature: printer's ornament, horizontal line, strings of asterisks or periods, etc, indicating an informal division that does not call for a new div element. If a horizontal rule or printer's ornament, use appropriate rend attribute and leave the element empy; if the ornament can be represented with characters, include these in the element.
Module module-from-tei_tite
Parents model.inter model.titlepagePart model.common
Attributes Global attributes and those inherited from [att.global ]
Declaration
element ornament
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   text
}

p

<p> (paragraph) marks paragraphs in prose. «#COPA» «#DRPAL»
Module core
Parents model.pLike
Attributes Global attributes only
Declaration
element p
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}
Example
<p
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Hallgerd was outside.
<q>There is blood on your axe,</q> she said.
<q>What have you done?</q>
</p>
<p>
 <q>I have now arranged that you can be
   married a second time,</q> replied Thjostolf.
</p>
<p>
 <q>Then you must mean that Thorvald is
   dead,</q> she said.
</p>
<p>
 <q>Yes,</q> said Thjostolf.
<q>And now you must think up some plan for me.</q>
</p>

pb

<pb//> (page break) marks the boundary between one page of a text and the next in a standard reference system. «#CORS5»
Module core
Parents model.milestoneLike
Attributes In addition to global attributes
ed (edition) indicates the edition or version in which the page break is located at this point
Status Recommended
Datatype xsd:anyURI
Values Any string of characters; usually a siglum conventionally used for the edition.
Declaration
element pb
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ed { xsd:anyURI }?,
   empty
}
Note
On this element, the global n attribute indicates the number or other value associated with the page which follows the point of insertion of this pb. Encoders should adopt a clear and consistent policy as to whether the numbers associated with page breaks relate to the physical sequence number of the page or the page number or signature printed on it. By convention, pb elements should appear at the start of the page to which they refer.

postscript

<postscript> contains a postscript, e.g. to a letter. «#DSDTB»
Module textstructure
Parents model.divBottomPart
Attributes Global attributes only
Declaration
element postscript
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( ( model.common ) | ( model.global ) )*
}
Example
<div type="letter"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <opener>
  <dateline>
   <placeName>Rimaone</placeName>
   <date when="2006-11-21">21 Nov 06</date>
  </dateline>
  <salute>Dear Susan,</salute>
 </opener>
 <p>Thank you very much for the assistance splitting those
   logs. I'm sorry about the misunderstanding as to the size of
   the task. I really was not asking for help, only to borrow the
   axe. Hope you had fun in any case.</p>
 <closer>
  <salute>Sincerely yours,</salute>
  <signed>Seymour</signed>
 </closer>
 <postscript>
  <label>P.S.</label>
  <p>The collision occured on <date when="2001-07-06">06 Jul 01</date>.</p>
 </postscript>
</div>

principal

<principal> (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. «#HD21»
Module header
Parents titleStmt
Attributes Global attributes only
Declaration
element principal
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<principal
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Gary Taylor</principal>

profileDesc

<profileDesc> (text-profile description) provides a detailed description of non-bibliographic aspects of a text, specifically the languages and sublanguages used, the situation in which it was produced, the participants and their setting. «#HD4» «#HD11»
Module header
Parents model.headerPart
Attributes Global attributes only
Declaration
element profileDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( creation?, model.profileDescPart* )
}
Example
<profileDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <langUsage>
  <language ident="fr">French</language>
 </langUsage>
 <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="entertaindegree="high"/>
  <purpose type="informdegree="medium"/>
 </textDesc>
 <settingDesc>
  <setting>
   <name>Paris, France</name>
   <time>Late 19th century</time>
  </setting>
 </settingDesc>
</profileDesc>

projectDesc

<projectDesc> (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. «#HD51» «#HD5» «#CCAS2»
Module header
Parents model.encodingPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element projectDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   model.pLike+
}
Example
<projectDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>Texts collected for use in the Claremont Shakespeare
   Clinic, June 1990</p>
</projectDesc>

ptr

<ptr//> (pointer) defines a pointer to another location. «#COXR» «#SAPT»
Module core
Parents model.ptrLike
Attributes In addition to global attributes and those inherited from [att.pointing att.declaring ]
target specifies the destination of the pointer by supplying one or more URI References
Status Required
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values One or more syntactically valid URI references, separated by white space. Because whitespace is used to separate URIs, no whitespace is permitted inside a single URI. If a whitespace character is required in a URI, it should be escaped with the normal mechanism, e.g. TEI%20Consortium.
cRef (canonical reference) specifies the destination of the pointer by supplying a canonical reference from a scheme defined in a refsDecl element in the TEI header
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values the result of applying the algorithm for the resolution of canonical references (described in section ) should be a valid URI reference to the intended target
Note
The refsDecl to use may be indicated with the decls attribute.
Currently these Guidelines only provide for a single canonical reference to be encoded on any given ptr element.
Declaration
element ptr
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.pointing.attribute.type,
   att.pointing.attribute.evaluate,
   att.declaring.attribute.decls,
   (
      attribute target { list { xsd:anyURI+ } }
    | attribute cRef
      {
         list { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ }
      }?
   ),
   empty
}
Example
<ptr target="#p143 #p144"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

<ptr target="http://www.tei-c.org"/>
Note
The target and cRef attributes are mutually exclusive.

pubPlace

<pubPlace> (publication place) contains the name of the place where a bibliographic item was published. «#COBICOI»
Module core
Parents docImprint model.imprintPart model.publicationStmtPart
Attributes Global attributes and those inherited from [att.naming ]
Declaration
element pubPlace
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.naming.attribute.key,
   att.naming.attribute.ref,
   att.naming.attribute.nymRef,
   macro.phraseSeq
}

publicationStmt

<publicationStmt> (publication statement) groups information concerning the publication or distribution of an electronic or other text. «#HD24» «#HD2»
Module header
Parents fileDesc
Attributes Global attributes only
Declaration
element publicationStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.pLike+ | model.publicationStmtPart+ )
}
Example
<publicationStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <publisher>C. Muquardt </publisher>
 <pubPlace>Bruxelles &amp; Leipzig</pubPlace>
 <date when="1846"/>
</publicationStmt>
Example
<publicationStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <publisher>Chadwyck Healey</publisher>
 <pubPlace>Cambridge</pubPlace>
 <availability>
  <p>Available under licence only</p>
 </availability>
 <date when="1992">1992</date>
</publicationStmt>
Note
Although not enforced by the schemas, it is a requirement for TEI conformance that information about publication place, address, identifier, availability, and date be given in that order, following the name of the publisher, distributor, or authority concerned

publisher

<publisher> provides the name of the organization responsible for the publication or distribution of a bibliographic item. «#COBICOI» «#HD24»
Module core
Parents docImprint model.imprintPart model.publicationStmtPart
Attributes Global attributes only
Declaration
element publisher
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<imprint
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <pubPlace>Oxford</pubPlace>
 <publisher>Clarendon Press</publisher>
 <date>1987</date>
</imprint>
Note
Use the full form of the name by which a company is usually referred to, rather than any abbreviation of it which may appear on a title page

q

<q> (separated from the surrounding text with quotation marks) contains material which is marked as (ostensibly) being somehow different than the surrounding text, for any one of a variety of reasons including, but not limited to: direct speech or thought, technical terms or jargon, authorial distance, quotations from elsewhere, and passages that are mentioned not used. «#COHQQ»
Module core
Parents model.qLike
Attributes In addition to global attributes and those inherited from [att.ascribed ]
type may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely.
Status Required when applicable
Datatype xsd:Name
Suggested values include:
spoken representation of speech
thought representation of thought, e.g. internal monologue
written quotation from a written source
soCalled authorial distance
foreign (foreign words)
distinct (linguistically distinct)
term (technical term)
emph (rhetorically emphasized)
mentioned refering to itself, not its normal referant
Declaration
element q
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.ascribed.attribute.who,
   attribute type
   {
      "spoken"
    | "thought"
    | "written"
    | "soCalled"
    | "foreign"
    | "distinct"
    | "term"
    | "emph"
    | "mentioned"
    | xsd:Name
   }?,
   macro.specialPara
}
Example
It is spelled <q
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Tübingen</q> — to enter
the letter <q>u</q> with an umlaut hold down the <q>option</q> key and press
<q>0 0 f c</q>
Note
May be used to indicate that a passage is distinguished from the surrounding text by quotation marks for reasons concerning which no claim is made. When used in this manner, q may be thought of as syntactic sugar for hi with a value of rend that indicates the use of quotation marks.

ref

<ref> (reference) defines a reference to another location, possibly modified by additional text or comment. «#COXR» «#SAPT»
Module core
Parents model.ptrLike
Attributes In addition to global attributes and those inherited from [att.pointing att.declaring ]
target specifies the destination of the reference by supplying one or more URI References
Status Optional
Datatype 1–∞ occurrences of xsd:anyURIseparated by whitespace
Values One or more syntactically valid URI references, separated by white space. Because whitespace is used to separate URIs, no whitespace is permitted inside a single URI. If a whitespace character is required in a URI, it should be escaped with the normal mechanism, e.g. TEI%20Consortium.
cRef (canonical reference) specifies the destination of the reference by supplying a canonical reference from a scheme defined in a refsDecl element in the TEI header
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values the result of applying the algorithm for the resolution of canonical references (described in section ) should be a valid URI reference to the intended target
Note
The refsDecl to use may be indicated with the decls attribute.
Currently these Guidelines only provide for a single canonical reference to be encoded on any given ref element.
Declaration
element ref
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.pointing.attribute.type,
   att.pointing.attribute.evaluate,
   att.declaring.attribute.decls,
   (
      attribute target { list { xsd:anyURI+ } }?
    | attribute cRef
      {
         list { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ }
      }?
   ),
   macro.paraContent
}
Example
<ref
  target="http://www.natcorp.ox.ac.uk/Texts/A02.xml#s2"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
See especially the second sentence</ref>
See also <ref>s.v. <term>locution</term>
</ref>.>
Note
The target and cRef attributes are mutually exclusive.

refState

<refState//> (reference state) specifies one component of a canonical reference defined by the milestone method. «#HD54M» «#HD54»
Module header
Parents refsDecl
Attributes In addition to global attributes
ed (edition) indicates which edition or version the milestone applies to.
Status Optional
Datatype xsd:anyURI
Values Any string of characters; usually a siglum conventionally used for the edition.
Note
If ed is not specified, then any milestone tag with an appropriate unit attribute will be selected.
unit indicates what kind of state is changing at this milestone.
Status Required
Datatype xsd:Name
Suggested values include:
page page breaks in the reference edition.
column column breaks.
line line breaks.
book any units termed book, liber, etc.
poem individual poems in a collection.
canto cantos or other major sections of a poem.
stanza stanzas within a poem, book, or canto.
act acts within a play.
scene scenes within a play or act.
section sections of any kind.
absent passages not present in the reference edition.
length specifies the fixed length of the reference component.
Status Optional
Datatype xsd:nonNegativeInteger
Values Should be a positive integer; if no value is provided, the length is unlimited and goes to the next delimiter or to the end of the value.
Note
When constructing a reference, if the reference component found is of numeric type, the length is made up by inserting leading zeros; if it is not, by inserting trailing blanks. In either case, reference components are truncated if necessary at the right hand side.
When seeking a reference, the length indicates the number of characters which should be compared. Values longer than this will be regarded as matching, if they start correctly.
delim (delimiter) supplies a delimiting string following the reference component.
Status Optional
Datatype text
Values If a single space is used it is interpreted as whitespace.
Declaration
element refState
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute ed { xsd:anyURI }?,
   attribute unit
   {
      "page"
    | "column"
    | "line"
    | "book"
    | "poem"
    | "canto"
    | "stanza"
    | "act"
    | "scene"
    | "section"
    | "absent"
    | xsd:Name
   },
   attribute length { xsd:nonNegativeInteger }?,
   attribute delim { text }?,
   empty
}
Example
<refState unit="bookdelim=":"
   xmlns:tei="http://www.tei-c.org/ns/1.0"/>

<refState unit="linelength="4"/>

refsDecl

<refsDecl> (references declaration) specifies how canonical references are constructed for this text. «#HD54M» «#HD5» «#HD54»
Module header
Parents model.encodingPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element refsDecl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.pLike+ | cRefPattern+ | refState+ )
}
Example
<refsDecl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <cRefPattern
   matchPattern="([A-Za-z0-9]+) ([0-9]+):([0-9]+)"
   replacementPattern="#xpath(//body/div[@n='$1']/div[$2]/div3[$3])"/>

</refsDecl>

This example is a formal representation for the referencing scheme described informally in the following example.

Example
<refsDecl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>References are made up by concatenating the value for the
 <att>n</att> attribute on the highest level <gi>div</gi>
   element, followed by a space, followed by the sequential
   number of the next level <gi>div</gi> followed by a colon
   follwed by the sequential number of the next (and lowest)
   level <gi>div</gi>.</p>
</refsDecl>

relatedItem

<relatedItem> contains or references some other bibliographic item which is related to the present one in some specified manner, for example as a constituent or alternative version of it.
Module core
Parents model.biblPart
Attributes Global attributes and those inherited from [att.typed ]
Declaration
element relatedItem
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.typed.attribute.type,
   ( model.biblLike | model.ptrLike )
}

rendition

<rendition> supplies information about the rendition or appearance of one or more elements in the source text. «#HD57»
Module header
Parents
Attributes In addition to global attributes
scheme identifies the language used to describe the rendition.
Status Optional
Legal values are:
css Cascading Stylesheet Language
xslfo Extensible Stylesheet Language Formatting Objects
free Informal free text description
other A user-defined rendition description language
Declaration
element rendition
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute scheme { "css" | "xslfo" | "free" | "other" }?,
   macro.limitedContent
}
Note
The present release of these Guidelines does not specify the content of this element in any further detail. It may be used to hold a description of the default rendition to be associated with the specified element, expressed in running prose, or in some more formal language such as CSS.

resp

<resp> (responsibility) contains a phrase describing the nature of a person's intellectual responsibility. «#COBICOR» «#HD21» «#HD22» «#HD26»
Module core
Parents respStmt
Attributes Global attributes only
Declaration
element resp
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<respStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <resp>compiler</resp>
 <name>Edward Child</name>
</respStmt>

respStmt

<respStmt> (statement of responsibility) supplies a statement of responsibility for the intellectual content of a text, edition, recording, or series, where the specialized elements for authors, editors, etc. do not suffice or do not apply. «#COBICOR» «#HD21» «#HD22» «#HD26»
Module core
Parents editionStmt seriesStmt titleStmt model.respLike
Attributes Global attributes only
Declaration
element respStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( ( resp+, model.nameLike.agent+ ) | ( model.nameLike.agent+, resp+ ) )
}
Example
<respStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <resp>transcribed from original ms</resp>
 <persName>Claus Huitfeldt</persName>
</respStmt>
Example
<respStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <resp>converted to SGML encoding</resp>
 <name>Alan Morrison</name>
</respStmt>

revisionDesc

<revisionDesc> (revision description) summarizes the revision history for a file. «#HD6» «#HD11»
Module header
Parents teiHeader
Attributes Global attributes only
Declaration
element revisionDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( list | change+ )
}
Example
<revisionDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <change when="1991-11-11"> EMB deleted chapter 10
 </change>
</revisionDesc>
Note
Record changes with most recent changes at the top of the list.

row

<row> contains one row of a table. «#FTTAB1»
Module figures
Parents table
Attributes Global attributes and those inherited from [att.tableDecoration ]
Declaration
element row
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.tableDecoration.attribute.role,
   att.tableDecoration.attribute.rows,
   att.tableDecoration.attribute.cols,
   cell+
}
Example
<row role="data"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <cell role="label">Classics</cell>
 <cell>Idle listless and unimproving</cell>
</row>

said

<said> (speech or thought) indicates passages thought or spoken aloud, whether explicitly indicated in the source or not, whether directly or indirectly reported, whether by real people or fictional characters. «#COHQQ»
Module core
Parents model.qLike
Attributes In addition to global attributes and those inherited from [att.ascribed ]
aloud may be used to indicate whether the quoted matter is regarded as having been vocalized or signed.
Status Required when applicable
Datatype xsd:boolean | "unknown" | "inapplicable"
Note
The value true indicates the encoded passage was expressed outwardly (whether spoken, signed, sung, screamed, chanted, etc.); the value false indicates that the encoded passage was thought, but not outwardly expressed.
direct may be used to indicate whether the quoted matter is regarded as direct or indirect speech.
Status Required when applicable
Datatype xsd:boolean | "unknown" | "inapplicable"
Note
The value true indicates the speech or thought is represented directly; the value false that speech or thought is represented indirectly, e.g. by use of a marked verbal aspect.
Declaration
element said
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.ascribed.attribute.who,
   attribute aloud { xsd:boolean | "unknown" | "inapplicable" }?,
   attribute direct { xsd:boolean | "unknown" | "inapplicable" }?,
   macro.specialPara
}
Example
<p
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <said>Our minstrel here will warm the old man's heart
   with song, dazzle him with jewels and gold</said>, a
troublemaker simpered. <said>He'll trample on the Duke's
   camellias, spill his wine, and blunt his sword, and say
   his name begins with X, and in the end the Duke will
   say, <said>Take Saralinda, with my blessing, O lordly
     Prince of Rags and Tags, O rider of the
     sun!</said>
 </said>
</p>
Example
<p
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <said aloud="truerend="pre(“) post(”)">Hmmm</said>,
said a small voice in his ear. <said aloud="truerend="pre(“) post(”)">Difficult. Very difficult.
   Plenty of courage, I see. Not a bad mind either. there's talent, oh
   my goodness, yes — and a nice thirst to prove yourself, now that's
   interesting. … So where shall I put you?</said>
</p>
<p>Harry gripped the edges of the stool and thought,
<said aloud="falserend="italic">Not Slytherin, not
   Slytherin</said>.</p>

salute

<salute> (salutation) contains a salutation or greeting prefixed to a foreword, dedicatory epistle, or other division of a text, or the salutation in the closing of a letter, preface, etc. «#DSCO» «#DSOC»
Module textstructure
Parents closer opener model.divTopPart
Attributes Global attributes only
Declaration
element salute
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<salute
   xmlns:tei="http://www.tei-c.org/ns/1.0">
To all courteous mindes, that will voutchsafe the
readinge.</salute>

samplingDecl

<samplingDecl> (sampling declaration) contains a prose description of the rationale and methods used in sampling texts in the creation of a corpus or collection. «#HD52» «#HD5» «#CCAS2»
Module header
Parents model.encodingPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element samplingDecl
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   model.pLike+
}
Note
This element records all information about systematic inclusion or omission of portions of the text, whether a reflection of sampling procedures in the pure sense or of systematic omission of material deemed either too difficult to transcribe or not of sufficient interest.

seg

<seg> (arbitrary segment) contains any arbitrary phrase-level unit of text (including other seg elements). «#SASE» «#VESE» «#DRPAL»
Module linking
Parents model.segLike model.choicePart
Attributes In addition to global attributes and those inherited from [att.segLike ]
subtype provides a sub-categorization of the segment marked.
Status Optional
Datatype token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }
Values any string of characters.
Note
The subtype attribute may be used to provide any classification for the seg elements tagged in a text suitable for the type given.
Declaration
element seg
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute subtype { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } }?,
   macro.paraContent
}
Example
<seg
   xmlns:tei="http://www.tei-c.org/ns/1.0">
When are you leaving?</seg>
<seg>Tomorrow.</seg>
Example
<s
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <seg rend="capstype="initial-cap">So father's only</seg>
glory was the ballfield.

</s>
Example
<seg type="preamble"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <seg>Sigmund,
 <seg type="patronym">the son of Volsung</seg>,
   was a king in Frankish country.</seg>
 <seg>Sinfiotli was the eldest of his sons ...</seg>
 <seg>Borghild, Sigmund's wife, had a brother ... </seg>
</seg>
Note
The seg element may be used at the encoder's discretion to mark any segments of the text of interest for processing. One use of the element is to mark text features for which no appropriate markup is otherwise defined — i.e. as a simple extension mechanism. Another use is to provide an identifier for some segment which is to be pointed at by some other element — i.e. to provide a target, or a part of a target, for a ptr or other similar element.

seriesStmt

<seriesStmt> (series statement) groups information about the series, if any, to which a publication belongs. «#HD26» «#HD2»
Module header
Parents fileDesc
Attributes Global attributes only
Declaration
element seriesStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.pLike+ | ( title+, ( idno | respStmt )* ) )
}
Example
<seriesStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <title>Machine-Readable Texts for the Study of Indian
   Literature</title>
 <respStmt>
  <resp>ed. by</resp>
  <name>Jan Gonda</name>
 </respStmt>
 <idno type="vol">1.2</idno>
 <idno type="ISSN">0 345 6789</idno>
</seriesStmt>

signed

<signed> (signature) contains the closing salutation, etc., appended to a foreword, dedicatory epistle, or other division of a text. «#DSCO» «#DSOC»
Module textstructure
Parents closer opener model.divBottomPart
Attributes Global attributes only
Declaration
element signed
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<signed
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Thine to command <name>Humph. Moseley</name>
</signed>

smcap

<smcap> (smallcaps) for capturing typographical feature: glyphs in small capitals.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element smcap
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

sourceDesc

<sourceDesc> (source description) supplies a description of the source text(s) from which an electronic text was derived or generated. «#HD3»
Module header
Parents fileDesc
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element sourceDesc
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   (
      model.pLike+
    | ( model.biblLike | model.sourceDescPart | model.listLike )+
   )
}
Example
<sourceDesc
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <p>No source: created in machine-readable form.</p>
</sourceDesc>

sp

<sp> (speech) An individual speech in a performance text, or a passage presented as such in a prose or verse text. «#CODR» «#CODV» «#DRSP»
Module core
Parents model.divPart
Attributes Global attributes and those inherited from [att.ascribed ]
Declaration
element sp
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.ascribed.attribute.who,
   (
      model.global*,
      ( speaker, model.global* )?,
      ( ( model.lLike | lg | model.pLike | model.stageLike ), model.global* )+
   )
}
Example
<sp
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <speaker>The reverend Doctor Opimiam</speaker>
 <p>I do not think I have named a single unpresentable fish.</p>
</sp>
<sp>
 <speaker>Mr Gryll</speaker>
 <p>Bream, Doctor: there is not much to be said for bream.</p>
</sp>
<sp>
 <speaker>The Reverend Doctor Opimiam</speaker>
 <p>On the contrary, sir, I think there is much to be said for him.
   In the first place....</p>
 <p>Fish, Miss Gryll — I could discourse to you on fish by the hour:
   but for the present I will forbear...</p>
</sp>
Note
Lines or paragraphs, stage directions, and phrase-level elements.
The who attribute on this element may be used either in addition to the speaker element or as an alternative.

speaker

<speaker> A specialized form of heading or label, giving the name of one or more speakers in a dramatic text or fragment. «#CODR»
Module core
Parents sp
Attributes Global attributes only
Declaration
element speaker
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<sp who="#ni #rsa"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <speaker>Nancy and Robert</speaker>
 <stage type="delivery">(speaking simultaneously)</stage>
 <p>The future? ...</p>
</sp>
<list type="speakers">
 <item xml:id="ni"/>
 <item xml:id="rsa"/>
</list>
Note
This element is used to mark a speaker attribution as it appears in a dramatic text; the who attribute is used to point to another element which provides information about a speaker. Either or both may be used.

sponsor

<sponsor> specifies the name of a sponsoring organization or institution. «#HD21»
Module header
Parents titleStmt
Attributes Global attributes only
Declaration
element sponsor
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq.limited
}
Example
<sponsor
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Association for Computers and the Humanities</sponsor>
<sponsor>Association for Computational Linguistics</sponsor>
<sponsor>Association for Literary and Linguistic Computing</sponsor>
Note
Sponsors give their intellectual authority to a project; they are to be distinguished from funders, who provide the funding but do not necessarily take intellectual responsibility.

stage

<stage> (stage direction) contains any kind of stage direction within a dramatic text or fragment. «#CODR» «#CODV» «#DRSTA»
Module core
Parents model.stageLike
Attributes In addition to global attributes
type indicates the kind of stage direction.
Status Recommended
Datatype xsd:Name
Suggested values include:
setting describes a setting.
entrance describes an entrance.
exit describes an exit.
business describes stage business.
novelistic is a narrative, motivating stage direction.
delivery describes how a character speaks.
modifier gives some detail about a character.
location describes a location.
mixed more than one of the above
Declaration
element stage
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type
   {
      "setting"
    | "entrance"
    | "exit"
    | "business"
    | "novelistic"
    | "delivery"
    | "modifier"
    | "location"
    | "mixed"
    | xsd:Name
   }?,
   macro.specialPara
}
Example
<stage type="setting"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
A curtain being drawn.</stage>
<stage type="setting">Music</stage>
<stage type="entrance">Enter Husband as being thrown off his
horse.</stage>
<stage type="exit">Exit pursued by a bear.</stage>
<stage type="business">He quickly takes the stone out.</stage>
<stage type="delivery">To Lussurioso.</stage>
<stage type="novelistic">Having had enough, and embarrassed for
the family.</stage>
<stage type="modifier">Disguised as Ansaldo.</stage>
<stage type="location">At a window.</stage>
<stage rend="inlinetype="delivery">Aside.</stage>

sub

<sub> (subscript) for capturing typographical feature: subscript glyphs.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element sub
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

sup

<sup> (superscript) for capturing typographical feature: superscript glyphs.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element sup
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

table

<table> contains text displayed in tabular form, in rows and columns. «#FTTAB1»
Module figures
Parents model.inter
Attributes In addition to global attributes
rows indicates the number of rows in the table.
Status Optional
Datatype xsd:nonNegativeInteger
Values If no number is supplied, an application must calculate the number of rows.
Note
Rows should be presented from top to bottom.
cols (columns) indicates the number of columns in each row of the table.
Status Optional
Datatype xsd:nonNegativeInteger
Values If no number is supplied, an application must calculate the number of columns.
Note
Within each row, columns should be presented left to right.
Declaration
element table
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute rows { xsd:nonNegativeInteger }?,
   attribute cols { xsd:nonNegativeInteger }?,
   ( ( model.headLike | model.global )*, ( row, model.global* )+ )
}
Example
<table rows="4cols="4"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <head>Poor Men's Lodgings in Norfolk (Mayhew, 1843)</head>
 <row role="label">
  <cell role="data"/>
  <cell role="data">Dossing Cribs or Lodging Houses</cell>
  <cell role="data">Beds</cell>
  <cell role="data">Needys or Nightly Lodgers</cell>
 </row>
 <row role="data">
  <cell role="label">Bury St Edmund's</cell>
  <cell role="data">5</cell>
  <cell role="data">8</cell>
  <cell role="data">128</cell>
 </row>
 <row role="data">
  <cell role="label">Thetford</cell>
  <cell role="data">3</cell>
  <cell role="data">6</cell>
  <cell role="data">36</cell>
 </row>
 <row role="data">
  <cell role="label">Attleboro'</cell>
  <cell role="data">3</cell>
  <cell role="data">5</cell>
  <cell role="data">20</cell>
 </row>
 <row role="data">
  <cell role="label">Wymondham</cell>
  <cell role="data">1</cell>
  <cell role="data">11</cell>
  <cell role="data">22</cell>
 </row>
</table>
Note
Contains an optional heading and a series of rows.
Any rendition information should be supplied using the global rend attribute, at the table, row, or cell level as appropriate.

tagUsage

<tagUsage> supplies information about the usage of a specific element within a text. «#HD57»
Module header
Parents namespace
Attributes In addition to global attributes
gi (element name) the name (generic identifier) of the element indicated by the tag.
Status Required
Datatype xsd:Name
Values the name of an element within the namespace indicated by the parent namespace element
occurs specifies the number of occurrences of this element within the text.
Status Recommended
Datatype xsd:nonNegativeInteger
Values an integer number greater than zero
withId (with unique identifier) specifies the number of occurrences of this element within the text which bear a distinct value for the global xml:id attribute.
Status Recommended
Datatype xsd:nonNegativeInteger
Values an integer number greater than zero
render specifies the identifier of a rendition element which defines how this element is to be rendered.
Status Optional
Datatype xsd:anyURI
Values an identifier specified as the value of the xml:id attribute on some rendition element in the current document.
Declaration
element tagUsage
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute gi { xsd:Name },
   attribute occurs { xsd:nonNegativeInteger }?,
   attribute withId { xsd:nonNegativeInteger }?,
   attribute render { xsd:anyURI }?,
   macro.limitedContent
}
Example
<tagsDecl
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <rendition xml:id="it">Render using a slant or italic variant
   on the current font</rendition>
<!-- ... -->
 <namespace name="http://www.tei-c.org/ns/1.0">
  <tagUsage
    gi="hi"
    occurs="28"
    withId="2"
    render="#it">
Used to mark English words italicised in the copy text.</tagUsage>
  <tagUsage gi="foreignrender="#it">Used to mark non-English
     words in the copy text.</tagUsage>
<!-- ... -->
 </namespace>
</tagsDecl>

taxonomy

<taxonomy> defines a typology used to classify texts either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy. «#HD55»
Module header
Parents classDecl
Attributes Global attributes only
Declaration
element taxonomy
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( model.glossLike* | category+ | ( ( model.biblLike ), category* ) )
}
Example
<taxonomy xml:id="tax.b"
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <bibl>Brown Corpus</bibl>
 <category xml:id="tax.b.a">
  <catDesc>Press Reportage</catDesc>
  <category xml:id="tax.b.a1">
   <catDesc>Daily</catDesc>
  </category>
  <category xml:id="tax.b.a2">
   <catDesc>Sunday</catDesc>
  </category>
  <category xml:id="tax.b.a3">
   <catDesc>National</catDesc>
  </category>
  <category xml:id="tax.b.a4">
   <catDesc>Provincial</catDesc>
  </category>
  <category xml:id="tax.b.a5">
   <catDesc>Political</catDesc>
  </category>
  <category xml:id="tax.b.a6">
   <catDesc>Sports</catDesc>
  </category>
 </category>
 <category xml:id="tax.b.d">
  <catDesc>Religion</catDesc>
  <category xml:id="tax.b.d1">
   <catDesc>Books</catDesc>
  </category>
  <category xml:id="tax.b.d2">
   <catDesc>Periodicals and tracts</catDesc>
  </category>
 </category>
</taxonomy>

teiHeader

<teiHeader> (TEI Header) supplies the descriptive and declarative information making up an electronic title page prefixed to every TEI-conformant text. «#HD11» «#CCDEF»
Module header
Parents TEI
Attributes In addition to global attributes
type specifies the kind of document to which the header is attached, for example whether it is a corpus or individual text.
Status Optional
Datatype xsd:Name
Sample values include:
text the header is attached to a single text. [Default]
corpus the header is attached to a corpus.
Declaration
element teiHeader
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { xsd:Name }?,
   ( fileDesc, model.headerPart*, revisionDesc? )
}
Example
<teiHeader
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <fileDesc>
  <titleStmt>
   <title>Shakespeare: the first folio (1623) in electronic form</title>
   <author>Shakespeare, William (1564–1616)</author>
   <respStmt>
    <resp>Originally prepared by</resp>
    <name>Trevor Howard-Hill</name>
   </respStmt>
   <respStmt>
    <resp>Revised and edited by</resp>
    <name>Christine Avern-Carr</name>
   </respStmt>
  </titleStmt>
  <publicationStmt>
   <distributor>Oxford Text Archive</distributor>
   <address>
    <addrLine>13 Banbury Road, Oxford OX2 6NN, UK</addrLine>
   </address>
   <idno type="OTA">119</idno>
   <availability>
    <p>Freely available on a non-commercial basis.</p>
   </availability>
   <date when="1968">1968</date>
  </publicationStmt>
  <sourceDesc>
   <bibl>The first folio of Shakespeare, prepared by Charlton Hinman
       (The Norton Facsimile, 1968)</bibl>
  </sourceDesc>
 </fileDesc>
 <encodingDesc>
  <projectDesc>
   <p>Originally prepared for use in the production of a series of
       old-spelling concordances in 1968, this text was extensively
       checked and revised for use during the editing of the new Oxford
       Shakespeare (Wells and Taylor, 1989).</p>
  </projectDesc>
  <editorialDecl>
   <correction>
    <p>Turned letters are silently corrected.</p>
   </correction>
   <normalization>
    <p>Original spelling and typography is retained, except
         that long s and ligatured forms are not encoded.</p>
   </normalization>
  </editorialDecl>
  <refsDecl xml:id="ASLREF">
   <cRefPattern
     matchPattern="(\S+) ([^.]+)\.(.*)"
     replacementPattern="#xpath(//div1[@n='$1']/div2/[@n='$2']//lb[@n='$3'])">

    <p>A reference is created by assembling the following,
         in the reverse order as that listed here:
    <list>
      <item>the <att>n</att> value of the preceding <gi>lb</gi>
      </item>
      <item>a period</item>
      <item>the <att>n</att> value of the ancestor <gi>div2</gi>
      </item>
      <item>a space</item>
      <item>the <att>n</att> value of the parent <gi>div1</gi>
      </item>
     </list>
    </p>
   </cRefPattern>
  </refsDecl>
 </encodingDesc>
 <revisionDesc>
  <list>
   <item>
    <date when="1989-04-12">12 Apr 89</date> Last checked by CAC</item>
   <item>
    <date when="1989-03-01">1 Mar 89</date> LB made new file</item>
  </list>
 </revisionDesc>
</teiHeader>
Note
One of the few elements unconditionally required in any TEI document.

text

<text> contains a single text of any kind, whether unitary or composite, for example a poem or drama, a collection of essays, a novel, a dictionary, or a corpus sample. «#DS» «#CCDEF»
Module textstructure
Parents TEI group measureGrp
Attributes Global attributes and those inherited from [att.declaring att.typed ]
Declaration
element text
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.declaring.attribute.decls,
   att.typed.attribute.type,
   (
      model.global*,
      ( front, model.global* )?,
      ( body | group ),
      model.global*,
      ( back, model.global* )?
   )
}
Example
<text
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <front>
  <docTitle>
   <titlePart>Autumn Haze</titlePart>
  </docTitle>
 </front>
 <body>
  <l>Is it a dragonfly or a maple leaf</l>
  <l>That settles softly down upon the water?</l>
 </body>
</text>
Example

The body of a text may be replaced by a group of nested texts, as in the following schematic:

<text
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <front/>
 <group>
  <text>
   <front/>
   <body/>
   <back/>
  </text>
  <text/>
 </group>
</text>
Note
This element should not be used to represent a text which is inserted at an arbitrary point within the structure of another, for example as in an embedded or quoted narrative; the floatingText is provided for this purpose.

textClass

<textClass> (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. «#HD43»
Module header
Parents model.profileDescPart
Attributes Global attributes and those inherited from [att.declarable ]
Declaration
element textClass
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( classCode | catRef | keywords )*
}
Example
<taxonomy
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <category xml:id="acprose">
  <catDesc>Academic prose</catDesc>
 </category>
<!-- other categories here -->
</taxonomy>
<!-- ... -->
<textClass>
 <catRef target="#acprose"/>
 <classCode scheme="http://www.udcc.org">001.9</classCode>
 <keywords scheme="http://authorities.loc.gov">
  <list>
   <item>End of the world</item>
   <item>History - philosophy</item>
  </list>
 </keywords>
</textClass>

time

<time> contains a phrase defining a time of day in any format. «#CONADA»
Module core
Parents model.dateLike
Attributes Global attributes and those inherited from [att.datable att.editLike att.typed ]
Declaration
element time
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.datable.w3c.attribute.period,
   att.datable.w3c.attribute.when,
   att.datable.w3c.attribute.notBefore,
   att.datable.w3c.attribute.notAfter,
   att.datable.w3c.attribute.from,
   att.datable.w3c.attribute.to,
   att.editLike.attribute.source,
   att.typed.attribute.type,
   ( text | model.gLike | model.phrase | model.global )*
}
Example
As he sat smiling, the quarter struck —
<time when="11:45:00"
   xmlns:tei="http://www.tei-c.org/ns/1.0">
the quarter to twelve</time>.

title

<title> contains the full title of a work of any kind. «#COBICOR» «#HD21» «#HD26»
Module core
Parents seriesStmt titleStmt model.emphLike model.msItemPart
Attributes In addition to global attributes
level indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material.
Status Required when applicable
Legal values are:
a (analytic) analytic title (article, poem, or other item published as part of a larger item)
m (monographic) monographic title (book, collection, or other item published as a distinct item, including single volumes of multi-volume works)
j (journal) journal title
s (series) series title
u (unpublished) title of unpublished material (including theses and dissertations unless published by a commercial press)
Note
If the title appears directly enclosed within an analytic element, the level, if given, must be ‘a’; if it appears directly enclosed within a monogr element, level must be ‘m’, ‘j’, or ‘u’; when title is directly enclosed by series, level must be ‘s’. If it appears within a msItem, this attribute should not be supplied.
type classifies the title according to some convenient typology.
Status Optional
Datatype xsd:Name
Sample values include:
main main title
sub (subordinate) subtitle, title of part
alt (alternate) alternate title, often in another language, by which the work is also known
short abbreviated form of title
desc (descriptive) descriptive paraphrase of the work functioning as a title
Note
This attribute is provided for convenience in analysing titles and processing them according to their type; where such specialized processing is not necessary, there is no need for such analysis, and the entire title, including subtitles and any parallel titles, may be enclosed within a single title element.
Declaration
element title
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute level { "a" | "m" | "j" | "s" | "u" }?,
   attribute type { xsd:Name }?,
   macro.paraContent
}
Example
<title
   xmlns:tei="http://www.tei-c.org/ns/1.0">
La vie mode d'emploi. Romans.</title>
Example
<title
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Synthese: an international journal for epistemology, methodology
and history of science</title>
Example
<title
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Information Technology and the Research Process: Proceedings
of a conference held at Cranfield Institute of Technology, UK, 18–21
July 1989</title>
Example
<title
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Hardy's Tess of the D'Urbervilles: a machine readable edition</title>

titlePage

<titlePage> (title page) contains the title page of a text, appearing within the front or back matter. «#DSTITL»
Module textstructure
Parents model.frontPart
Attributes In addition to global attributes
type classifies the title page according to any convenient typology.
Status Optional
Datatype xsd:Name
Values Any string, e.g. full, half, Series, etc.
Note
This attribute allows the same element to be used for volume title pages, series title pages, etc., as well as for the ‘main’ title page of a work.
Declaration
element titlePage
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { xsd:Name }?,
   (
      model.global*,
      ( model.titlepagePart ),
      ( model.titlepagePart | model.global )*
   )
}
Example
<titlePage
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <docTitle>
  <titlePart type="main">THOMAS OF Reading.</titlePart>
  <titlePart type="alt">OR, The sixe worthy yeomen
     of the West.</titlePart>
 </docTitle>
 <docEdition>Now the fourth time corrected and enlarged</docEdition>
 <byline>By T.D.</byline>
 <figure>
  <head>TP</head>
  <p>Thou shalt labor till thou returne to duste</p>
  <figDesc>Printers Ornament used by TP</figDesc>
 </figure>
 <docImprint>Printed at <name type="place">London</name>
   for <name>T.P.</name>
  <date>1612.</date>
 </docImprint>
</titlePage>

titlePart

<titlePart> contains a subsection or division of the title of a work, as indicated on a title page. «#DSTITL»
Module textstructure
Parents docTitle model.titlepagePart model.pLike.front
Attributes In addition to global attributes
type specifies the role of this subdivision of the title.
Status Optional
Datatype xsd:Name
Suggested values include:
main main title of the work [Default]
sub (subordinate) subtitle of the work
alt (alternate) alternative title of the work
short abbreviated form of title
desc (descriptive) descriptive paraphrase of the work
Declaration
element titlePart
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   attribute type { "main" | "sub" | "alt" | "short" | "desc" | xsd:Name }?,
   macro.paraContent
}
Example
<docTitle
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <titlePart type="main">THE FORTUNES
   AND MISFORTUNES Of the FAMOUS
   Moll Flanders, &amp;amp;c.
 </titlePart>
 <titlePart type="desc">Who was BORN in NEWGATE,
   And during a Life of continu'd Variety for
   Threescore Years, besides her Childhood, was
   Twelve Year a <hi>Whore</hi>, five times a <hi>Wife</hi> (wherof
   once to her own Brother) Twelve Year a <hi>Thief,</hi>
   Eight Year a Transported <hi>Felon</hi> in <hi>Virginia</hi>,
   at last grew <hi>Rich</hi>, liv'd <hi>Honest</hi>, and died a
 <hi>Penitent</hi>.</titlePart>
</docTitle>

titleStmt

<titleStmt> (title statement) groups information about the title of a work and those responsible for its intellectual content. «#HD21» «#HD2»
Module header
Parents fileDesc
Attributes Global attributes only
Declaration
element titleStmt
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   ( title+, ( author | editor | sponsor | funder | principal | respStmt )* )
}
Example
<titleStmt
   xmlns:tei="http://www.tei-c.org/ns/1.0">

 <title>Capgrave's Life of St. John Norbert: a machine-readable
   transcription</title>
 <respStmt>
  <resp>compiled by</resp>
  <name>P.J. Lucas</name>
 </respStmt>
</titleStmt>

trailer

<trailer> contains a closing title or footer appearing at the end of a division of a text. «#DSCO» «#DSDTB»
Module textstructure
Parents model.divBottomPart
Attributes Global attributes only
Declaration
element trailer
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.phraseSeq
}
Example
<trailer
   xmlns:tei="http://www.tei-c.org/ns/1.0">
Explicit pars tertia</trailer>

ul

<ul> (underline) for capturing typographical feature: underlined glyphs.
Module module-from-tei_tite
Parents model.hiLike
Attributes Global attributes and those inherited from [att.global ]
Declaration
element ul
{
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   macro.paraContent
}

unclear

<unclear> contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. «#PHDA» «#COEDADD»
Module core
Parents model.pPart.transcriptional model.choicePart
Attributes In addition to global attributes and those inherited from [att.editLike ]
reason indicates why the material is hard to transcribe.
Status Optional
Datatype 1–∞ occurrences of token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }separated by whitespace
Values any phrase describing the difficulty, e.g. faded, ambient noise, passing truck, ill formed, eccentric ductus.
Declaration
element unclear
{
   attribute reason
   {
      list { token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ }
   }?,
   att.global.attribute.xmlid,
   att.global.attribute.n,
   att.global.attribute.xmllang,
   att.global.attribute.rend,
   att.global.attribute.rendition,
   att.global.attribute.xmlbase,
   att.editLike.attribute.source,
   macro.paraContent
}
Note
The same element is used for all cases of uncertainty in the transcription of element content, whether for written or spoken material. For other aspects of certainty, uncertainty, and reliability of tagging and transcription, see chapter .
The damage, gap, del, unclear and supplied elements may be closely allied in use. See section for discussion of which element is appropriate for which circumstance.

Macros defined

macro.limitedContent

macro.limitedContent

macro.limitedContent (paragraph content) defines the content of prose elements that are not used for transcription of extant materials.
Module tei
Used by desc rendition tagUsage
Declaration
macro.limitedContent = ( text | model.limitedPhrase | model.inter )*

macro.paraContent

macro.paraContent

macro.paraContent (paragraph content) defines the content of paragraphs and similar elements.
Module tei
Used by ab b cell docEdition head hi i l p ref seg smcap sub sup title titlePart ul unclear
Declaration
macro.paraContent =
   ( text | model.gLike | model.phrase | model.inter | model.global )*

macro.phraseSeq

macro.phraseSeq

macro.phraseSeq (phrase sequence) defines a sequence of character data and phrase-level elements.
Module tei
Used by abbr addrLine author biblScope dateline distributor docAuthor docDate edition editor email extent foreign geoDecl label name num pubPlace publisher salute signed speaker trailer
Declaration
macro.phraseSeq = ( text | model.gLike | model.phrase | model.global )*

macro.phraseSeq.limited

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.
Module tei
Used by authority classCode creation funder language principal resp sponsor
Declaration
macro.phraseSeq.limited = ( text | model.limitedPhrase | model.global )*

macro.specialPara

macro.specialPara

macro.specialPara ('special' paragraph content) defines the content model of elements such as notes or list items, which either contain a series of component-level elements or else have the same structure as a paragraph, containing a series of phrase-level and inter-level elements.
Module tei
Used by handNote item note q said stage
Declaration
macro.specialPara =
   (
      text
    | model.gLikemodel.phrasemodel.intermodel.divPartmodel.global
   )*


Perry Trolard. Date:
This page is copyrighted