This is the (nascent) documentation for the MyNDIR project.
All the XML documents and the codebase for MyNDIR live in a Subversion Repository. This is a version-control system that ensures that every version of every file can be retrieved if necessary, and prevents one person from inadvertently overwriting changes to a file made by someone else.
Subversion runs on one of our HCMC servers, which is available at hcmc.uvic.ca/svn
. In order to use it, you will need to install a Subversion client on your computer,
and also learn a couple of simple command-line commands. Subversion is usually abbreviated
to ‘svn’.
How you will do this depends on which operating system you are using.
Obtain a command-line client from CollabNet (http://www.open.collab.net/downloads/subversion/). Registration is required to download the program, but there is no cost. Make sure to download the correct version; there are versions for 32-bit and 64-bit Windows. Once the program is downloaded, install it by double-clicking the downloaded installer and following its instructions.
Though earlier Mac operating systems included subversion command line application by default, recent versions do not. To test whether your operating system has these commands installed, follow these instructions:
Terminal
from the Utilities
folder in Applications
.svn checkout
and press the return key. If terminal responds that there are Not enough arguments provided
, the subversion client is already installed and you may proceed to the next section.
If terminal responds that the command is not recognized, you will need to install
it.To install the subversion command tools using Homebrew, you will need to do the following:
brew help
. If it is installed, you will get help instructions in the terminal. If not, you
will get a message telling you that the command is not found. In that case, install
Homebrew by typing the following command (all on one line):ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install svn
, then press return. The process will take a few moments.Note that MacOSX updates have sometimes broken the svn install, so you may need to go through the above steps again if svn stops working.
Subversion is installed as part of a regular desktop on most Linux distributions.
Once your subversion client is installed, the first thing we need to do is to check out the repository. To do this, you need to open a terminal window:
cmd
into the search box.Terminal
from the Utilities
folder in Applications
.Control + Alt + T
.Now we'll check that svn is installed and working. Type svn checkout
and press return. If the terminal responses that there are Not enough arguments provided
, then svn is working OK.
Now we'll create a directory for our project files:
mkdir myndir⚓
And now we've created that directory, we'll navigate into it:
cd myndir⚓
And now we'll check out the files from the repository into our directory. Make sure you don't forget the space and period at the end of this command:
svn checkout https://hcmc.uvic.ca/svn/myndir .⚓
Don't forget the final period.
Then the server may ask for your netlink user name and password. After that, you should see the files download to your drive. Don't worry if the server does not ask for your credentials; it will certainly ask when you try to commit changes to the repository.
These are the basic rules when you're working with svn:
Before you start work, update your local files:
You can leave the terminal open while you work. Then, when you're ready to commit your changes:
svn update⚓(again, just in case anything else has been committed by someone else)
svn commit xml -m "A message explaining the changes you have made"⚓We specify
xml
to avoid any chance of overwriting program code in other parts of the respository.
However, if you are committing some changes somewhere else (for example if you add
a template to the templates folder), then omit the xml
bit.Whenever you create a new file, these are the steps for adding it to svn:
svn add xml/docs/mynewfile.xml⚓Then press return. You should see a message from svn saying
Adding [the file]
.svn commit xml -m "Added new file..."⚓as normal, to commit the change.
If you need to rename a file, this is what you do:
cd
to the folder where the file is. For example:
cd xml/docs⚓
svn rename [oldname] [newname]⚓For example:
svn rename AM738-033v-01-badstuff.xml AM738-033v-01-correctstuff.xml⚓
svn commit -m "Renamed a file because..."
as normal, to commit the change.That's basically it. If you see any warnings or error messages from svn, check that you're in the right folder in your terminal. You may also see error messages if two people have been editing the same file at the same time, and Subversion needs you to make a decision about whose changes should be kept.
Here's how to get started:
myndir
folder in your home directory.myndir.xpr
.You should see a tree of folders and files down the left of your Oxygen editor. This
includes all the files in the project. You can ignore most of them. The folder that
matters is the data/db/myndir
folder, where all the TEI files are kept.
Validation of your XML files should be handled automatically by Oxygen, as long as the project file is loaded.
A simple diagnostics process has been created which validates all the XML files, and then runs consistency checks on the dataset. Here is how to use it in Oxygen:
build.xml
diagnostics.txt
should open in Oxygen.There are four kinds of links in MyNDIR encoding. These are examples:
This links to a person in the names/names.xml file with the xml:id JlGddrd01.
This links to a <bibl> element in the biblio/biblio.xml file with the xml:id WndStrs-1871-ed.
This links to a document somewhere in the XML collection with the xml:id SKng-1899-Oslo-012-01.
This links to an external site using its full URL.
Only the first three methods should be used to link within the MyNDIR project.
<TEI> (TEI document) contains a single TEI-conformant document, combining a single TEI header with one or more members of the model.resource class. Multiple <TEI> elements may be combined within a <TEI> (or <teiCorpus>) element. [4. Default Text Structure 15.1. Varieties of Composite Text] | |||||||||
Module | textstructure | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype)
|
||||||||
Contained by |
textstructure: TEI
|
||||||||
May contain | |||||||||
Note |
This element is required. It is customary to specify the TEI namespace http://www.tei-c.org/ns/1.0 on it, for example: <TEI version="4.4.0" xml:lang="it" xmlns="http://www.tei-c.org/ns/1.0">. |
||||||||
Example |
<TEI version="3.3.0" xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>The shortest TEI Document Imaginable</title>
</titleStmt>
<publicationStmt>
<p>First published as part of TEI P2, this is the P5
version using a namespace.</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>
|
||||||||
Example |
<TEI version="2.9.1" xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>A TEI Document containing four page images </title>
</titleStmt>
<publicationStmt>
<p>Unpublished demonstration file.</p>
</publicationStmt>
<sourceDesc>
<p>No source: this is an original work.</p>
</sourceDesc>
</fileDesc>
</teiHeader>
<facsimile>
<graphic url="page1.png"/>
<graphic url="page2.png"/>
<graphic url="page3.png"/>
<graphic url="page4.png"/>
</facsimile>
</TEI>
|
||||||||
Schematron |
<sch:ns prefix="tei"
uri="http://www.tei-c.org/ns/1.0"/>
<sch:ns prefix="xs"
uri="http://www.w3.org/2001/XMLSchema"/>
|
||||||||
Schematron |
<sch:ns prefix="rng"
uri="http://relaxng.org/ns/structure/1.0"/>
<sch:ns prefix="rna"
uri="http://relaxng.org/ns/compatibility/annotations/1.0"/>
|
||||||||
Content model |
<content> <sequence> <elementRef key="teiHeader"/> <alternate> <sequence> <classRef key="model.resource" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="TEI" minOccurs="0" maxOccurs="unbounded"/> </sequence> <elementRef key="TEI" minOccurs="1" maxOccurs="unbounded"/> </alternate> </sequence> </content> ⚓ |
||||||||
Schema Declaration |
element TEI { tei_att.global.attributes, tei_att.typed.attributes, attribute version { text }?, ( tei_teiHeader, ( ( tei_model.resource+, tei_TEI* ) | tei_TEI+ ) ) }⚓ |
<acquisition> (acquisition) contains any descriptive or other information concerning the process by which a manuscript or manuscript part or other object entered the holding institution. [10.8. History] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Contained by |
msdescription: history
|
May contain | |
Example |
<acquisition>Left to the <name type="place">Bodleian</name> by
<name type="person">Richard Rawlinson</name> in 1755.
</acquisition>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element acquisition { tei_att.global.attributes, tei_att.datable.attributes, tei_macro.specialPara }⚓ |
<addName> (additional name) contains an additional name component, such as a nickname, epithet, or alias, or any other descriptive phrase used within a personal name. [13.2.1. Personal Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<persName>
<forename>Frederick</forename>
<addName type="epithet">the Great</addName>
<roleName>Emperor of Prussia</roleName>
</persName>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element addName { tei_att.global.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<additional> (additional) groups additional information, combining bibliographic information about a manuscript or other object, or surrogate copies of it, with curatorial or administrative information. [10.9. Additional Information] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: msDesc
|
May contain |
core: listBibl
msdescription: surrogates
|
Example |
<additional>
<adminInfo>
<recordHist>
<p>
<!-- record history here -->
</p>
</recordHist>
<custodialHist>
<p>
<!-- custodial history here -->
</p>
</custodialHist>
</adminInfo>
<surrogates>
<p>
<!-- information about surrogates here -->
</p>
</surrogates>
<listBibl>
<bibl>
<!-- ... -->
</bibl>
<!-- full bibliography here -->
</listBibl>
</additional>
|
Content model |
<content> <sequence> <elementRef key="adminInfo" minOccurs="0"/> <elementRef key="surrogates" minOccurs="0"/> <elementRef key="listBibl" minOccurs="0"/> </sequence> </content> ⚓ |
Schema Declaration |
element additional { tei_att.global.attributes, ( adminInfo?, tei_surrogates?, tei_listBibl? ) }⚓ |
<author> (author) in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. [3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by | |
May contain | |
Note |
Particularly where cataloguing is likely to be based on the content of the header, it is advisable to use a generally recognized name authority file to supply the content for this element. The attributes key or ref may also be used to reference canonical information about the author(s) intended from any appropriate authority, such as a library catalogue or online resource. In the case of a broadcast, use this element for the name of the company or network responsible for making the broadcast. Where an author is unknown or unspecified, this element may contain text such as Unknown or Anonymous. When the appropriate TEI modules are in use, it may also contain detailed tagging of the names used for people, organizations or places, in particular where multiple names are given. |
Example |
<author>British Broadcasting Corporation</author>
<author>La Fayette, Marie Madeleine Pioche de la Vergne, comtesse de (1634–1693)</author>
<author>Anonymous</author>
<author>Bill and Melinda Gates Foundation</author>
<author>
<persName>Beaumont, Francis</persName> and
<persName>John Fletcher</persName>
</author>
<author>
<orgName key="BBC">British Broadcasting
Corporation</orgName>: Radio 3 Network
</author>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element author { tei_att.global.attributes, tei_att.naming.attributes, tei_att.datable.attributes, tei_macro.phraseSeq }⚓ |
<authority> (release authority) supplies the name of a person or other agency responsible for making a work available, other than a publisher or distributor. [2.2.4. Publication, Distribution, Licensing, etc.] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) |
Member of | |
Contained by |
header: publicationStmt
|
May contain | |
Example |
<authority>John Smith</authority>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element authority { tei_att.global.attributes, tei_att.canonical.attributes, tei_macro.phraseSeq.limited }⚓ |
<availability> (availability) supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc. [2.2.4. Publication, Distribution, Licensing, etc.] | |||||||||
Module | header | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default)
|
||||||||
Member of | |||||||||
Contained by |
header: publicationStmt
|
||||||||
May contain |
core: p
|
||||||||
Note |
A consistent format should be adopted |
||||||||
Example |
<availability status="restricted">
<p>Available for academic research purposes only.</p>
</availability>
<availability status="free">
<p>In the public domain</p>
</availability>
<availability status="restricted">
<p>Available under licence from the publishers.</p>
</availability>
|
||||||||
Example |
<availability>
<licence target="http://opensource.org/licenses/MIT">
<p>The MIT License
applies to this document.</p>
<p>Copyright (C) 2011 by The University of Victoria</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.</p>
</licence>
</availability>
|
||||||||
Content model |
<content> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.availabilityPart"/> <classRef key="model.pLike"/> </alternate> </content> ⚓ |
||||||||
Schema Declaration |
element availability { tei_att.global.attributes, tei_att.declarable.attributes, attribute status { "free" | "unknown" | "restricted" }?, ( tei_model.availabilityPart | tei_model.pLike )+ }⚓ |
<back> (back matter) contains any appendixes, etc. following the main part of a text. [4.7. Back Matter 4. Default Text Structure] | |
Module | textstructure |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) |
Contained by | |
May contain | |
Note |
Because cultural conventions differ as to which elements are grouped as back matter and which as front matter, the content models for the <back> and <front> elements are identical. |
Example |
<back>
<div type="appendix">
<head>The Golden Dream or, the Ingenuous Confession</head>
<p>TO shew the Depravity of human Nature, and how apt the Mind is to be misled by Trinkets
and false Appearances, Mrs. Two-Shoes does acknowledge, that after she became
rich, she
had like to have been, too fond of Money
<!-- .... -->
</p>
</div>
<!-- ... -->
<div 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>
</div>
<div 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>
</div>
<div type="advert">
<head>By the KING's Royal Patent, 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, &c. 2s.
6d</item>
<item n="2">Dr. Hooper's Female Pills, 1s.</item>
<!-- ... -->
</list>
</div>
</back>
|
Content model |
<content> <sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.frontPart"/> <classRef key="model.pLike.front"/> <classRef key="model.pLike"/> <classRef key="model.listLike"/> <classRef key="model.global"/> </alternate> <alternate minOccurs="0"> <sequence> <classRef key="model.div1Like"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.frontPart"/> <classRef key="model.div1Like"/> <classRef key="model.global"/> </alternate> </sequence> <sequence> <classRef key="model.divLike"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.frontPart"/> <classRef key="model.divLike"/> <classRef key="model.global"/> </alternate> </sequence> </alternate> <sequence minOccurs="0"> <classRef key="model.divBottomPart"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottomPart"/> <classRef key="model.global"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element back { tei_att.global.attributes, tei_att.declaring.attributes, ( ( tei_model.frontPart | tei_model.pLike.front | tei_model.pLike | tei_model.listLike | tei_model.global )*, ( ( tei_model.div1Like, ( tei_model.frontPart | tei_model.div1Like | tei_model.global )* ) | ( tei_model.divLike, ( tei_model.frontPart | tei_model.divLike | tei_model.global )* ) )?, ( tei_model.divBottomPart, ( tei_model.divBottomPart | tei_model.global )* )? ) }⚓ |
<bibl> (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] | |||||||||
Module | core | ||||||||
Attributes | att.declarable (@default) att.typed (@type, @subtype) att.sortable (@sortKey) att.docStatus (@status) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) att.global.rendition (@rend, @style, @rendition) att.global.linking (corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select) att.global.facs (@facs) att.global.change (@change) att.global.responsibility (@cert, @resp) att.global.source (@source)
|
||||||||
Member of | |||||||||
Contained by | |||||||||
May contain | |||||||||
Note |
Contains phrase-level elements, together with any combination of elements from the model.biblPart class |
||||||||
Example |
<bibl>Blain, Clements and Grundy: Feminist Companion to Literature in English (Yale,
1990)</bibl>
|
||||||||
Example |
<bibl>
<title level="a">The Interesting story of the Children in the Wood</title>. In
<author>Victor E Neuberg</author>, <title>The Penny Histories</title>.
<publisher>OUP</publisher>
<date>1968</date>.
</bibl>
|
||||||||
Example |
<bibl type="article" subtype="book_chapter"
xml:id="carlin_2003">
<author>
<name>
<surname>Carlin</surname>
(<forename>Claire</forename>)</name>
</author>,
<title level="a">The Staging of Impotence : France’s last
congrès</title> dans
<bibl type="monogr">
<title level="m">Theatrum mundi : studies in honor of Ronald W.
Tobin</title>, éd.
<editor>
<name>
<forename>Claire</forename>
<surname>Carlin</surname>
</name>
</editor> et
<editor>
<name>
<forename>Kathleen</forename>
<surname>Wine</surname>
</name>
</editor>,
<pubPlace>Charlottesville, Va.</pubPlace>,
<publisher>Rookwood Press</publisher>,
<date when="2003">2003</date>.
</bibl>
</bibl>
|
||||||||
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.highlighted"/> <classRef key="model.pPart.data"/> <classRef key="model.pPart.edit"/> <classRef key="model.segLike"/> <classRef key="model.ptrLike"/> <classRef key="model.biblPart"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
||||||||
Schema Declaration |
element bibl { tei_att.global.attribute.xmlid, tei_att.global.attribute.n, tei_att.global.attribute.xmllang, tei_att.global.attribute.xmlbase, tei_att.global.attribute.xmlspace, tei_att.global.rendition.attribute.rend, tei_att.global.rendition.attribute.style, tei_att.global.rendition.attribute.rendition, tei_att.global.linking.attribute.synch, tei_att.global.linking.attribute.sameAs, tei_att.global.linking.attribute.copyOf, tei_att.global.linking.attribute.next, tei_att.global.linking.attribute.prev, tei_att.global.linking.attribute.exclude, tei_att.global.linking.attribute.select, tei_att.global.facs.attribute.facs, tei_att.global.change.attribute.change, tei_att.global.responsibility.attribute.cert, tei_att.global.responsibility.attribute.resp, tei_att.global.source.attribute.source, tei_att.declarable.attributes, tei_att.typed.attributes, tei_att.sortable.attributes, tei_att.docStatus.attributes, attribute corresp { text }?, ( text | tei_model.gLike | tei_model.highlighted | tei_model.pPart.data | tei_model.pPart.edit | tei_model.segLike | tei_model.ptrLike | tei_model.biblPart | tei_model.global )* }⚓ |
<biblFull> (fully-structured bibliographic citation) contains a fully-structured bibliographic citation, in which all components of the TEI file description are present. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2. The File Description 2.2.7. The Source Description 15.3.2. Declarable Elements] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) att.sortable (@sortKey) att.docStatus (@status) |
Member of | |
Contained by | |
May contain | |
Example |
<biblFull>
<titleStmt>
<title>The Feminist Companion to Literature in English: women writers from the middle ages
to the present</title>
<author>Blain, Virginia</author>
<author>Clements, Patricia</author>
<author>Grundy, Isobel</author>
</titleStmt>
<editionStmt>
<edition>UK edition</edition>
</editionStmt>
<extent>1231 pp</extent>
<publicationStmt>
<publisher>Yale University Press</publisher>
<pubPlace>New Haven and London</pubPlace>
<date>1990</date>
</publicationStmt>
<sourceDesc>
<p>No source: this is an original work</p>
</sourceDesc>
</biblFull>
|
Content model |
<content> <alternate> <sequence> <sequence> <elementRef key="titleStmt"/> <elementRef key="editionStmt" minOccurs="0"/> <elementRef key="extent" minOccurs="0"/> <elementRef key="publicationStmt"/> <elementRef key="seriesStmt" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="notesStmt" minOccurs="0"/> </sequence> <elementRef key="sourceDesc" minOccurs="0" maxOccurs="unbounded"/> </sequence> <sequence> <elementRef key="fileDesc"/> <elementRef key="profileDesc"/> </sequence> </alternate> </content> ⚓ |
Schema Declaration |
element biblFull { tei_att.global.attributes, tei_att.declarable.attributes, tei_att.sortable.attributes, tei_att.docStatus.attributes, ( ( ( tei_titleStmt, editionStmt?, tei_extent?, tei_publicationStmt, seriesStmt*, tei_notesStmt? ), tei_sourceDesc* ) | ( tei_fileDesc, tei_profileDesc ) ) }⚓ |
<biblScope> (scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. [3.12.2.5. Scopes and Ranges in Bibliographic Citations] | |||||||||||
Module | core | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.citing (unit, @from, @to)
|
||||||||||
Member of | |||||||||||
Contained by | |||||||||||
May contain | |||||||||||
Note |
When a single page is being cited, use the from and to attributes with an identical value. When no clear endpoint is provided, the from attribute may be used without to; for example a citation such as ‘p. 3ff’ might be encoded It is now considered good practice to supply this element as a sibling (rather than a child) of <imprint>, since it supplies information which does not constitute part of the imprint. |
||||||||||
Example |
<biblScope>pp 12–34</biblScope>
<biblScope unit="page" from="12" to="34"/>
<biblScope unit="volume">II</biblScope>
<biblScope unit="page">12</biblScope>
|
||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||
Schema Declaration |
element biblScope { tei_att.global.attributes, tei_att.citing.attribute.from, tei_att.citing.attribute.to, attribute unit { "folio" | "page" | "volume" }?, tei_macro.phraseSeq }⚓ |
<birth> (birth) contains information about a person's birth, such as its date and place. [15.2.2. The Participant Description] | |||||||||||
Module | namesdates | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.editLike (@evidence, @instant) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (type, @subtype)
|
||||||||||
Member of | |||||||||||
Contained by |
namesdates: person
|
||||||||||
May contain | |||||||||||
Example |
<birth>Before 1920, Midlands region.</birth>
|
||||||||||
Example |
<birth when="1960-12-10">In a small cottage near <name type="place">Aix-la-Chapelle</name>,
early in the morning of <date>10 Dec 1960</date>
</birth>
|
||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||
Schema Declaration |
element birth { tei_att.global.attributes, tei_att.editLike.attributes, tei_att.datable.attributes, tei_att.dimensions.attributes, tei_att.naming.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, tei_macro.phraseSeq }⚓ |
<body> (text body) contains the whole body of a single unitary text, excluding any front or back matter. [4. Default Text Structure] | |
Module | textstructure |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) |
Contained by |
textstructure: text
|
May contain | |
Example |
<body>
<l>Nu scylun hergan hefaenricaes uard</l>
<l>metudæs maecti end his modgidanc</l>
<l>uerc uuldurfadur sue he uundra gihuaes</l>
<l>eci dryctin or astelidæ</l>
<l>he aerist scop aelda barnum</l>
<l>heben til hrofe haleg scepen.</l>
<l>tha middungeard moncynnæs uard</l>
<l>eci dryctin æfter tiadæ</l>
<l>firum foldu frea allmectig</l>
<trailer>primo cantauit Cædmon istud carmen.</trailer>
</body>
|
Content model |
<content> <sequence> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> <sequence minOccurs="0"> <classRef key="model.divTop"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divTop"/> </alternate> </sequence> <sequence minOccurs="0"> <classRef key="model.divGenLike"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divGenLike"/> </alternate> </sequence> <alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.divLike"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divGenLike"/> </alternate> </sequence> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.div1Like"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divGenLike"/> </alternate> </sequence> <sequence> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate minOccurs="1" maxOccurs="1"> <elementRef key="schemaSpec"/> <classRef key="model.common"/> </alternate> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> <alternate minOccurs="0"> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.divLike"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divGenLike"/> </alternate> </sequence> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.div1Like"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.global"/> <classRef key="model.divGenLike"/> </alternate> </sequence> </alternate> </sequence> </alternate> <sequence minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottom"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element body { tei_att.global.attributes, tei_att.declaring.attributes, ( tei_model.global*, ( tei_model.divTop, ( tei_model.global | tei_model.divTop )* )?, ( tei_model.divGenLike, ( tei_model.global | tei_model.divGenLike )* )?, ( ( tei_model.divLike, ( tei_model.global | tei_model.divGenLike )* )+ | ( tei_model.div1Like, ( tei_model.global | tei_model.divGenLike )* )+ | ( ( ( schemaSpec | tei_model.common ), tei_model.global* )+, ( ( tei_model.divLike, ( tei_model.global | tei_model.divGenLike )* )+ | ( tei_model.div1Like, ( tei_model.global | tei_model.divGenLike )* )+ )? ) ), ( tei_model.divBottom, tei_model.global* )* ) }⚓ |
<caesura> marks the point at which a metrical line may be divided. [6.2. Components of the Verse Line] | |
Module | verse |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by | |
May contain | Empty element |
Example |
<l>Hwæt we Gar-Dena <caesura/> in gear-dagum</l>
<l>þeod-cyninga <caesura/> þrym gefrunon,</l>
<l>hy ða æþelingas <caesura/> ellen fremedon.</l>
|
Content model |
<content> <empty/> </content> ⚓ |
Schema Declaration |
element caesura { tei_att.global.attributes, empty }⚓ |
<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. [3.3.3. Quotation 4.3.1. Grouped Texts 9.3.5.1. Examples] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author biblScope cit desc editor email head item l label name note p pubPlace publisher q quote ref rs soCalled term title
header: distributor edition extent tagUsage
msdescription: acquisition layout material msItem origPlace origin provenance support surrogates
|
May contain | |
Example |
<cit>
<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>
<form>
<orth>horrifier</orth>
</form>
<cit type="translation" xml:lang="en">
<quote>to horrify</quote>
</cit>
<cit type="example">
<quote>elle était horrifiée par la dépense</quote>
<cit type="translation" xml:lang="en">
<quote>she was horrified at the expense.</quote>
</cit>
</cit>
</entry>
|
Example |
<cit type="example">
<quote xml:lang="mix">Ka'an yu tsa'a Pedro.</quote>
<media url="soundfiles-gen:S_speak_1s_on_behalf_of_Pedro_01_02_03_TS.wav"
mimeType="audio/wav"/>
<cit type="translation">
<quote xml:lang="en">I'm speaking on behalf of Pedro.</quote>
</cit>
<cit type="translation">
<quote xml:lang="es">Estoy hablando de parte de Pedro.</quote>
</cit>
</cit>
|
Content model |
<content> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.biblLike"/> <classRef key="model.egLike"/> <classRef key="model.entryPart"/> <classRef key="model.global"/> <classRef key="model.graphicLike"/> <classRef key="model.ptrLike"/> <classRef key="model.attributable"/> <elementRef key="pc"/> <elementRef key="q"/> </alternate> </content> ⚓ |
Schema Declaration |
element cit { tei_att.global.attributes, tei_att.typed.attributes, ( tei_model.biblLike | tei_model.egLike | tei_model.entryPart | tei_model.global | tei_model.graphicLike | tei_model.ptrLike | tei_model.attributable | pc | tei_q )+ }⚓ |
<collection> (collection) contains the name of a collection of manuscripts or other objects, not necessarily located within a single repository. [10.4. The Manuscript Identifier] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) |
Contained by |
msdescription: msIdentifier
|
May contain | |
Example |
<msIdentifier>
<country>USA</country>
<region>California</region>
<settlement>San Marino</settlement>
<repository>Huntington Library</repository>
<collection>Ellesmere</collection>
<idno>El 26 C 9</idno>
<msName>The Ellesmere Chaucer</msName>
</msIdentifier>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element collection { tei_att.global.attributes, tei_att.naming.attributes, tei_att.typed.attributes, tei_macro.phraseSeq.limited }⚓ |
<country> (country) contains the name of a geo-political unit, such as a nation, country, colony, or commonwealth, larger than or administratively superior to a region and smaller than a bloc. [13.2.3. Place Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
|
May contain | |
Note |
The recommended source for codes to represent coded country names is ISO 3166. |
Example |
<country key="DK">Denmark</country>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element country { tei_att.global.attributes, tei_att.naming.attributes, tei_att.typed.attributes, tei_att.datable.attributes, tei_macro.phraseSeq }⚓ |
<date> (date) contains a date in any format. [3.6.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.12.2.4. Imprint, Size of a Document, and Reprint Information 15.2.3. The Setting Description 13.4. Dates] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
header: authority distributor edition extent funder language principal publicationStmt sponsor tagUsage
|
May contain | |
Example |
<date when="1980-02">early February 1980</date>
|
Example |
Given on the <date when="1977-06-12">Twelfth Day
of June in the Year of Our Lord One Thousand Nine Hundred and Seventy-seven of the
Republic
the Two Hundredth and first and of the University the Eighty-Sixth.</date>
|
Example |
<date when="1990-09">September 1990</date>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.phrase"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Schema Declaration |
element date { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.dimensions.attributes, tei_att.typed.attributes, ( text | tei_model.gLike | tei_model.phrase | tei_model.global )* }⚓ |
<death> (death) contains information about a person's death, such as its date and place. [15.2.2. The Participant Description] | |||||||||||||
Module | namesdates | ||||||||||||
Attributes | att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) att.editLike (@evidence, @instant) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (type, @subtype)
|
||||||||||||
Member of | |||||||||||||
Contained by |
namesdates: person
|
||||||||||||
May contain | |||||||||||||
Example |
<death when="1902-10-01"/>
|
||||||||||||
Example |
<death when="1960-12-10">Passed away near <name type="place">Aix-la-Chapelle</name>, after suffering from cerebral palsy. </death>
|
||||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||||
Schema Declaration |
element death { tei_att.datable.attributes, tei_att.dimensions.attributes, tei_att.editLike.attributes, tei_att.global.attributes, tei_att.naming.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, tei_macro.phraseSeq }⚓ |
<decoDesc> (decoration description) contains a description of the decoration of a manuscript or other object, either as in paragraphs, or as one or more <decoNote> elements. [10.7.3. Bindings, Seals, and Additional Material] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
msdescription: physDesc
|
May contain |
core: p
|
Example |
<decoDesc>
<p>The start of each book of the Bible with a 10-line historiated
illuminated initial; prefaces decorated with 6-line blue initials with red
penwork flourishing; chapters marked by 3-line plain red initials; verses
with 1-line initials, alternately blue or red.</p>
</decoDesc>
|
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="summary" minOccurs="0"/> <elementRef key="decoNote" minOccurs="1" maxOccurs="unbounded"/> </sequence> </alternate> </content> ⚓ |
Schema Declaration |
element decoDesc { tei_att.global.attributes, ( tei_model.pLike+ | ( summary?, decoNote+ ) ) }⚓ |
<desc> (description) contains a short description of the purpose, function, or use of its parent element, or when the parent is a documentation element, describes or defines the object being documented. [22.4.1. Description of Components] | |||||||||||||
Module | core | ||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (type, @subtype)
|
||||||||||||
Member of | |||||||||||||
Contained by |
header: listPrefixDef tagUsage
msdescription: acquisition layout origin provenance support surrogates
namesdates: event listEvent listOrg listPerson listPlace occupation org place
|
||||||||||||
May contain | |||||||||||||
Note |
When used in a specification element such as <elementSpec>, TEI convention requires that this be expressed as a finite clause, begining with an active verb. |
||||||||||||
Example | Example of a <desc> element inside a documentation element.
<dataSpec module="tei"
ident="teidata.point">
<desc versionDate="2010-10-17"
xml:lang="en">defines the data type used to express a point in cartesian space.</desc>
<content>
<dataRef name="token"
restriction="(-?[0-9]+(\.[0-9]+)?,-?[0-9]+(\.[0-9]+)?)"/>
</content>
<!-- ... -->
</dataSpec>
|
||||||||||||
Example | Example of a <desc> element in a non-documentation element.
<place xml:id="KERG2">
<placeName>Kerguelen Islands</placeName>
<!-- ... -->
<terrain>
<desc>antarctic tundra</desc>
</terrain>
<!-- ... -->
</place>
|
||||||||||||
Schematron | A <desc> with a type of deprecationInfo should only occur when its parent element is being deprecated. Furthermore, it should
always occur in an element that is being deprecated when <desc> is a valid child of that element.
<sch:rule context="tei:desc[ @type eq 'deprecationInfo']">
<sch:assert test="../@validUntil">Information about a
deprecation should only be present in a specification element
that is being deprecated: that is, only an element that has a
@validUntil attribute should have a child <desc
type="deprecationInfo">.</sch:assert>
</sch:rule>
|
||||||||||||
Content model |
<content> <macroRef key="macro.limitedContent"/> </content> ⚓ |
||||||||||||
Schema Declaration |
element desc { tei_att.global.attributes, tei_att.typed.attribute.subtype, attribute type { "deprecationInfo" }?, tei_macro.limitedContent }⚓ |
<dimensions> (dimensions) contains a dimensional specification. [10.3.4. Dimensions] | |||||||||||
Module | msdescription | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) att.typed (type, @subtype)
|
||||||||||
Member of | |||||||||||
Contained by | |||||||||||
May contain | |||||||||||
Note |
Contains no more than one of each of the specialized elements used to express a three-dimensional object's height, width, and depth, combined with any number of other kinds of dimensional specification. |
||||||||||
Example |
<dimensions type="leaves">
<height scope="range">157-160</height>
<width>105</width>
</dimensions>
<dimensions type="ruled">
<height scope="most">90</height>
<width scope="most">48</width>
</dimensions>
<dimensions unit="in">
<height>12</height>
<width>10</width>
</dimensions>
|
||||||||||
Example | This element may be used to record the dimensions of any text-bearing object, not
necessarily a codex. For example:
<dimensions type="panels">
<height scope="all">7004</height>
<width scope="all">1803</width>
<dim type="relief" unit="mm">345</dim>
</dimensions> This might be used to show that the inscribed panels on some (imaginary) monument
are all the same size (7004 by 1803 cm) and stand out from the rest of the monument
by 345 mm. |
||||||||||
Example | When simple numeric quantities are involved, they may be expressed on the quantity attribute of any or all of the child elements, as in the following example:
<dimensions type="leaves">
<height scope="range">157-160</height>
<width quantity="105"/>
</dimensions>
<dimensions type="ruled">
<height unit="cm" scope="most"
quantity="90"/>
<width unit="cm" scope="most" quantity="48"/>
</dimensions>
<dimensions unit="in">
<height quantity="12"/>
<width quantity="10"/>
</dimensions>
|
||||||||||
Schematron |
<sch:report test="count(tei:width)> 1">The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:height)> 1">The element <sch:name/> may appear once only
</sch:report>
<sch:report test="count(tei:depth)> 1">The element <sch:name/> may appear once only
</sch:report>
|
||||||||||
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="dim"/> <classRef key="model.dimLike"/> </alternate> </content> ⚓ |
||||||||||
Schema Declaration |
element dimensions { tei_att.global.attributes, tei_att.dimensions.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, ( dim | tei_model.dimLike )* }⚓ |
<distributor> (distributor) supplies the name of a person or other agency responsible for the distribution of a text. [2.2.4. Publication, Distribution, Licensing, etc.] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) |
Member of | |
Contained by |
core: bibl
header: publicationStmt
|
May contain | |
Example |
<distributor>Oxford Text Archive</distributor>
<distributor>Redwood and Burn Ltd</distributor>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element distributor { tei_att.global.attributes, tei_att.canonical.attributes, tei_macro.phraseSeq }⚓ |
<div> (text division) contains a subdivision of the front, body, or back of a text. [4.1. Divisions of the Body] | |
Module | textstructure |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.divLike (@org, @sample) (att.metrical (@met, @real, @rhyme)) (att.fragmentable (@part)) att.typed (@type, @subtype) att.declaring (@decls) att.written (@hand) |
Member of | |
Contained by | |
May contain | |
Example |
<body>
<div type="part">
<head>Fallacies of Authority</head>
<p>The subject of which is Authority in various shapes, and the object, to repress all
exercise of the reasoning faculty.</p>
<div n="1" type="chapter">
<head>The Nature of Authority</head>
<p>With reference to any proposed measures having for their object the greatest
happiness of the greatest number [...]</p>
<div n="1.1" type="section">
<head>Analysis of Authority</head>
<p>What on any given occasion is the legitimate weight or influence to be attached to
authority [...] </p>
</div>
<div n="1.2" type="section">
<head>Appeal to Authority, in What Cases Fallacious.</head>
<p>Reference to authority is open to the charge of fallacy when [...] </p>
</div>
</div>
</div>
</body>
|
Schematron |
<sch:report test="(ancestor::tei:l or ancestor::tei:lg) and not(ancestor::tei:floatingText)">
Abstract model violation: Lines may not contain higher-level structural elements such
as div, unless div is a descendant of floatingText.
</sch:report>
|
Schematron |
<sch:report test="(ancestor::tei:p or ancestor::tei:ab) and not(ancestor::tei:floatingText)">
Abstract model violation: p and ab may not contain higher-level structural elements
such as div, unless div is a descendant of floatingText.
</sch:report>
|
Content model |
<content> <sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divTop"/> <classRef key="model.global"/> </alternate> <sequence minOccurs="0"> <alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate> <classRef key="model.divLike"/> <classRef key="model.divGenLike"/> </alternate> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> <sequence> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate minOccurs="1" maxOccurs="1"> <elementRef key="schemaSpec"/> <classRef key="model.common"/> </alternate> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> <sequence minOccurs="0" maxOccurs="unbounded"> <alternate> <classRef key="model.divLike"/> <classRef key="model.divGenLike"/> </alternate> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </alternate> <sequence minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottom"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element div { tei_att.global.attributes, tei_att.divLike.attributes, tei_att.typed.attributes, tei_att.declaring.attributes, tei_att.written.attributes, ( ( tei_model.divTop | tei_model.global )*, ( ( ( ( tei_model.divLike | tei_model.divGenLike ), tei_model.global* )+ | ( ( ( schemaSpec | tei_model.common ), tei_model.global* )+, ( ( tei_model.divLike | tei_model.divGenLike ), tei_model.global* )* ) ), ( tei_model.divBottom, tei_model.global* )* )? ) }⚓ |
<divGen> (automatically generated text division) indicates the location at which a textual division generated automatically by a text-processing application is to appear. [3.9.2. Index Entries] | |||||||||||||
Module | core | ||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (type, @subtype)
|
||||||||||||
Member of | |||||||||||||
Contained by | |||||||||||||
May contain |
core: head
|
||||||||||||
Note |
This element is intended primarily for use in document production or manipulation, rather than in the transcription of pre-existing materials; it makes it easier to specify the location of indices, tables of contents, etc., to be generated by text preparation or word processing software. |
||||||||||||
Example | One use for this element is to allow document preparation software to generate an
index and insert it in the appropriate place in the output. The example below assumes
that the indexName attribute on <index> elements in the text has been used to specify index entries for the two generated
indexes, named NAMES and THINGS:
<back>
<div1 type="backmat">
<head>Bibliography</head>
<!-- ... -->
</div1>
<div1 type="backmat">
<head>Indices</head>
<divGen n="Index Nominum" type="NAMES"/>
<divGen n="Index Rerum" type="THINGS"/>
</div1>
</back>
|
||||||||||||
Example | Another use for <divGen> is to specify the location of an automatically produced table of contents:
<front>
<!--<titlePage>...</titlePage>-->
<divGen type="toc"/>
<div>
<head>Preface</head>
<p> ... </p>
</div>
</front>
|
||||||||||||
Content model |
<content> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> </content> ⚓ |
||||||||||||
Schema Declaration |
element divGen { tei_att.global.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, tei_model.headLike* }⚓ |
<edition> (edition) describes the particularities of one edition of a text. [2.2.2. The Edition Statement] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
core: bibl
|
May contain | |
Example |
<edition>First edition <date>Oct 1990</date>
</edition>
<edition n="S2">Students' edition</edition>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element edition { tei_att.global.attributes, tei_macro.phraseSeq }⚓ |
<editor> contains a 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. [3.12.2.2. Titles, Authors, and Editors] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by | |
May contain | |
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. |
Example |
<editor role="Technical_Editor">Ron Van den Branden</editor>
<editor role="Editor-in-Chief">John Walsh</editor>
<editor role="Managing_Editor">Anne Baillot</editor>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element editor { tei_att.global.attributes, tei_att.naming.attributes, tei_att.datable.attributes, tei_macro.phraseSeq }⚓ |
<editorialDecl> (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. [2.3.3. The Editorial Practices Declaration 2.3. The Encoding Description 15.3.2. Declarable Elements] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) |
Member of | |
Contained by |
header: encodingDesc
|
May contain |
core: p
header: normalization
|
Example |
<editorialDecl>
<normalization>
<p>All words converted to Modern American spelling using
Websters 9th Collegiate dictionary
</p>
</normalization>
<quotation marks="all">
<p>All opening quotation marks converted to “ all closing
quotation marks converted to &cdq;.</p>
</quotation>
</editorialDecl>
|
Content model |
<content> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.pLike"/> <classRef key="model.editorialDeclPart"/> </alternate> </content> ⚓ |
Schema Declaration |
element editorialDecl { tei_att.global.attributes, tei_att.declarable.attributes, ( tei_model.pLike | tei_model.editorialDeclPart )+ }⚓ |
<email> (electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.6.2. Addresses] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by | |
May contain | |
Note |
The format of a modern Internet email address is defined in RFC 2822 |
Example |
<email>membership@tei-c.org</email>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element email { tei_att.global.attributes, tei_macro.phraseSeq }⚓ |
<encodingDesc> (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. [2.3. The Encoding Description 2.1.1. The TEI Header and Its Components] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
header: teiHeader
|
May contain |
core: p
|
Example |
<encodingDesc>
<p>Basic encoding, capturing lexical information only. All
hyphenation, punctuation, and variant spellings normalized. No
formatting or layout information preserved.</p>
</encodingDesc>
|
Content model |
<content> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.encodingDescPart"/> <classRef key="model.pLike"/> </alternate> </content> ⚓ |
Schema Declaration |
element encodingDesc { tei_att.global.attributes, ( tei_model.encodingDescPart | tei_model.pLike )+ }⚓ |
<event> (event) contains data relating to any kind of significant event associated with a person, place, or organization. [13.3.1. Basic Principles] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.typed (@type, @subtype) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.sortable (@sortKey) att.locatable (@where) |
Member of | |
Contained by | |
May contain | |
Example |
<person>
<event type="mat" when="1972-10-12">
<label>matriculation</label>
</event>
<event type="grad" when="1975-06-23">
<label>graduation</label>
</event>
</person>
|
Content model |
<content> <sequence> <elementRef key="idno" minOccurs="0" maxOccurs="unbounded"/> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <classRef key="model.labelLike" minOccurs="1" maxOccurs="unbounded"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.noteLike"/> <classRef key="model.biblLike"/> <elementRef key="linkGrp"/> <elementRef key="link"/> <elementRef key="idno"/> <elementRef key="ptr"/> </alternate> <elementRef key="event" minOccurs="0" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
Schema Declaration |
element event { tei_att.global.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.typed.attributes, tei_att.naming.attributes, tei_att.sortable.attributes, tei_att.locatable.attributes, ( tei_idno*, tei_model.headLike*, ( tei_model.pLike+ | tei_model.labelLike+ ), ( tei_model.noteLike | tei_model.biblLike | linkGrp | link | tei_idno | tei_ptr )*, tei_event* ) }⚓ |
<extent> (extent) describes the approximate size of a text stored on some carrier medium or of some other object, digital or non-digital, specified in any convenient units. [2.2.3. Type and Extent of File 2.2. The File Description 3.12.2.4. Imprint, Size of a Document, and Reprint Information 10.7.1. Object Description] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
|
May contain | |
Example |
<extent>3200 sentences</extent>
<extent>between 10 and 20 Mb</extent>
<extent>ten 3.5 inch high density diskettes</extent>
|
Example | The <measure> element may be used to supply normalized or machine tractable versions of the size
or sizes concerned.
<extent>
<measure unit="MiB" quantity="4.2">About four megabytes</measure>
<measure unit="pages" quantity="245">245 pages of source
material</measure>
</extent>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element extent { tei_att.global.attributes, tei_macro.phraseSeq }⚓ |
<facsimile> contains a representation of some written source in the form of a set of images rather than as transcribed or encoded text. [11.1. Digital Facsimiles] | |
Module | transcr |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) |
Member of | |
Contained by |
textstructure: TEI
|
May contain | |
Example |
<facsimile>
<graphic url="page1.png"/>
<surface>
<graphic url="page2-highRes.png"/>
<graphic url="page2-lowRes.png"/>
</surface>
<graphic url="page3.png"/>
<graphic url="page4.png"/>
</facsimile>
|
Example |
<facsimile>
<surface ulx="0" uly="0" lrx="200" lry="300">
<graphic url="Bovelles-49r.png"/>
</surface>
</facsimile>
|
Schematron |
<sch:rule context="tei:facsimile//tei:line | tei:facsimile//tei:zone">
<sch:report test="child::text()[ normalize-space(.) ne '']"> A facsimile element represents
a text with images, thus
transcribed text should not be present within it.
</sch:report>
</sch:rule>
|
Content model |
<content> <sequence> <elementRef key="front" minOccurs="0"/> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.graphicLike"/> <elementRef key="surface"/> <elementRef key="surfaceGrp"/> </alternate> <elementRef key="back" minOccurs="0"/> </sequence> </content> ⚓ |
Schema Declaration |
element facsimile { tei_att.global.attributes, tei_att.declaring.attributes, ( tei_front?, ( tei_model.graphicLike | surface | surfaceGrp )+, tei_back? ) }⚓ |
<figDesc> (description of figure) contains a brief prose description of the appearance or content of a graphic figure, for use when documenting an image without displaying it. [14.4. Specific Elements for Graphic Images] | |
Module | figures |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
figures: figure
|
May contain | |
Note |
This element is intended for use as an alternative to the content of its parent <figure> element ; for example, to display when the image is required but the equipment in use cannot display graphic images. It may also be used for indexing or documentary purposes. |
Example |
<figure>
<graphic url="emblem1.png"/>
<head>Emblemi d'Amore</head>
<figDesc>A pair of naked winged cupids, each holding a
flaming torch, in a rural setting.</figDesc>
</figure>
|
Content model |
<content> <macroRef key="macro.limitedContent"/> </content> ⚓ |
Schema Declaration |
element figDesc { tei_att.global.attributes, tei_macro.limitedContent }⚓ |
<figure> (figure) groups elements representing or containing graphic information such as an illustration, formula, or figure. [14.4. Specific Elements for Graphic Images] | |
Module | figures |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.placement (@place) att.typed (@type, @subtype) att.written (@hand) |
Member of | |
Contained by |
core: author bibl biblScope cit date editor email head item l label lg list name note p pubPlace publisher q quote ref resp rs series soCalled term title
figures: figure
msdescription: acquisition collection institution layout material msItem origDate origPlace origin provenance repository support surrogates
|
May contain | |
Example |
<figure>
<head>The View from the Bridge</head>
<figDesc>A Whistleresque view showing four or five sailing boats in the foreground, and a
series of buoys strung out between them.</figDesc>
<graphic url="http://www.example.org/fig1.png"
scale="0.5"/>
</figure>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.headLike"/> <classRef key="model.common"/> <elementRef key="figDesc"/> <classRef key="model.graphicLike"/> <classRef key="model.global"/> <classRef key="model.divBottom"/> </alternate> </content> ⚓ |
Schema Declaration |
element figure { tei_att.global.attributes, tei_att.placement.attributes, tei_att.typed.attributes, tei_att.written.attributes, ( tei_model.headLike | tei_model.common | tei_figDesc | tei_model.graphicLike | tei_model.global | tei_model.divBottom )* }⚓ |
<fileDesc> (file description) contains a full bibliographic description of an electronic file. [2.2. The File Description 2.1.1. The TEI Header and Its Components] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by | |
May contain | |
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 elsewhere in the header. It also contains a full bibliographic description for the source or sources from which the electronic text was derived. |
Example |
<fileDesc>
<titleStmt>
<title>The shortest possible TEI document</title>
</titleStmt>
<publicationStmt>
<p>Distributed as part of TEI P5</p>
</publicationStmt>
<sourceDesc>
<p>No print source exists: this is an original digital text</p>
</sourceDesc>
</fileDesc>
|
Content model |
<content> <sequence> <sequence> <elementRef key="titleStmt"/> <elementRef key="editionStmt" minOccurs="0"/> <elementRef key="extent" minOccurs="0"/> <elementRef key="publicationStmt"/> <elementRef key="seriesStmt" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="notesStmt" minOccurs="0"/> </sequence> <elementRef key="sourceDesc" minOccurs="1" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
Schema Declaration |
element fileDesc { tei_att.global.attributes, ( ( tei_titleStmt, editionStmt?, tei_extent?, tei_publicationStmt, seriesStmt*, tei_notesStmt? ), tei_sourceDesc+ ) }⚓ |
<forename> (forename) contains a forename, given or baptismal name. [13.2.1. Personal Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<persName>
<roleName>Ex-President</roleName>
<forename>George</forename>
<surname>Bush</surname>
</persName>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element forename { tei_att.global.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<front> (front matter) contains any prefatory matter (headers, abstracts, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. [4.6. Title Pages 4. Default Text Structure] | |
Module | textstructure |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) |
Contained by | |
May contain | |
Note |
Because cultural conventions differ as to which elements are grouped as front matter and which as back matter, the content models for the <front> and <back> elements are identical. |
Example |
<front>
<epigraph>
<quote>Nam Sibyllam quidem Cumis ego ipse oculis meis vidi in ampulla
pendere, et cum illi pueri dicerent: <q xml:lang="grc">Σίβυλλα τί
θέλεις</q>; respondebat illa: <q xml:lang="grc">ὰποθανεῖν θέλω.</q>
</quote>
</epigraph>
<div type="dedication">
<p>For Ezra Pound <q xml:lang="it">il miglior fabbro.</q>
</p>
</div>
</front>
|
Example |
<front>
<div type="dedication">
<p>To our three selves</p>
</div>
<div type="preface">
<head>Author's Note</head>
<p>All the characters in this book are purely imaginary, and if the
author has used names that may suggest a reference to living persons
she has done so inadvertently. ...</p>
</div>
</front>
|
Example |
<front>
<div type="abstract">
<div>
<head> BACKGROUND:</head>
<p>Food insecurity can put children at greater risk of obesity because
of altered food choices and nonuniform consumption patterns.</p>
</div>
<div>
<head> OBJECTIVE:</head>
<p>We examined the association between obesity and both child-level
food insecurity and personal food insecurity in US children.</p>
</div>
<div>
<head> DESIGN:</head>
<p>Data from 9,701 participants in the National Health and Nutrition
Examination Survey, 2001-2010, aged 2 to 11 years were analyzed.
Child-level food insecurity was assessed with the US Department of
Agriculture's Food Security Survey Module based on eight
child-specific questions. Personal food insecurity was assessed with
five additional questions. Obesity was defined, using physical
measurements, as body mass index (calculated as kg/m2) greater than
or equal to the age- and sex-specific 95th percentile of the Centers
for Disease Control and Prevention growth charts. Logistic
regressions adjusted for sex, race/ethnic group, poverty level, and
survey year were conducted to describe associations between obesity
and food insecurity.</p>
</div>
<div>
<head> RESULTS:</head>
<p>Obesity was significantly associated with personal food insecurity
for children aged 6 to 11 years (odds ratio=1.81; 95% CI 1.33 to
2.48), but not in children aged 2 to 5 years (odds ratio=0.88; 95%
CI 0.51 to 1.51). Child-level food insecurity was not associated
with obesity among 2- to 5-year-olds or 6- to 11-year-olds.</p>
</div>
<div>
<head> CONCLUSIONS:</head>
<p>Personal food insecurity is associated with an increased risk of
obesity only in children aged 6 to 11 years. Personal
food-insecurity measures may give different results than aggregate
food-insecurity measures in children.</p>
</div>
</div>
</front>
|
Content model |
<content> <sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.frontPart"/> <classRef key="model.pLike"/> <classRef key="model.pLike.front"/> <classRef key="model.global"/> </alternate> <sequence minOccurs="0"> <alternate> <sequence> <classRef key="model.div1Like"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.div1Like"/> <classRef key="model.frontPart"/> <classRef key="model.global"/> </alternate> </sequence> <sequence> <classRef key="model.divLike"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divLike"/> <classRef key="model.frontPart"/> <classRef key="model.global"/> </alternate> </sequence> </alternate> <sequence minOccurs="0"> <classRef key="model.divBottom"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottom"/> <classRef key="model.global"/> </alternate> </sequence> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element front { tei_att.global.attributes, tei_att.declaring.attributes, ( ( tei_model.frontPart | tei_model.pLike | tei_model.pLike.front | tei_model.global )*, ( ( ( tei_model.div1Like, ( tei_model.div1Like | tei_model.frontPart | tei_model.global )* ) | ( tei_model.divLike, ( tei_model.divLike | tei_model.frontPart | tei_model.global )* ) ), ( tei_model.divBottom, ( tei_model.divBottom | tei_model.global )* )? )? ) }⚓ |
<funder> (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. [2.2.1. The Title Statement] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by | |
May contain | |
Note |
Funders provide financial support for a project; they are distinct from sponsors (see element <sponsor>), who provide intellectual support and authority. |
Example |
<funder>The National Endowment for the Humanities, an independent federal agency</funder>
<funder>Directorate General XIII of the Commission of the European Communities</funder>
<funder>The Andrew W. Mellon Foundation</funder>
<funder>The Social Sciences and Humanities Research Council of Canada</funder>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element funder { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.datable.attributes, tei_macro.phraseSeq.limited }⚓ |
<graphic> (graphic) indicates the location of a graphic or illustration, either forming part of a text, or providing an image of it. [3.10. Graphics and Other Non-textual Components 11.1. Digital Facsimiles] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.media (@width, @height, @scale) (att.internetMedia (@mimeType)) att.resourced (@url) att.declaring (@decls) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author biblScope cit date editor email head item l label name note p pubPlace publisher q quote ref rs soCalled term title
figures: figure
header: distributor edition extent
msdescription: acquisition layout material msItem origDate origPlace origin provenance support surrogates
namesdates: addName birth country death forename nationality occupation orgName persName placeName residence roleName settlement surname
transcr: facsimile
|
May contain |
core: desc
|
Note |
The mimeType attribute should be used to supply the MIME media type of the image specified by the url attribute. Within the body of a text, a <graphic> element indicates the presence of a graphic component in the source itself. Within the context of a <facsimile> or <sourceDoc> element, however, a <graphic> element provides an additional digital representation of some part of the source being encoded. |
Example |
<figure>
<graphic url="fig1.png"/>
<head>Figure One: The View from the Bridge</head>
<figDesc>A Whistleresque view showing four or five sailing boats in the foreground, and a
series of buoys strung out between them.</figDesc>
</figure>
|
Example |
<facsimile>
<surfaceGrp n="leaf1">
<surface>
<graphic url="page1.png"/>
</surface>
<surface>
<graphic url="page2-highRes.png"/>
<graphic url="page2-lowRes.png"/>
</surface>
</surfaceGrp>
</facsimile>
|
Example |
<facsimile>
<surfaceGrp n="leaf1" xml:id="spi001">
<surface xml:id="spi001r">
<graphic type="normal"
subtype="thumbnail" url="spi/thumb/001r.jpg"/>
<graphic type="normal" subtype="low-res"
url="spi/normal/lowRes/001r.jpg"/>
<graphic type="normal"
subtype="high-res" url="spi/normal/highRes/001r.jpg"/>
<graphic type="high-contrast"
subtype="low-res" url="spi/contrast/lowRes/001r.jpg"/>
<graphic type="high-contrast"
subtype="high-res" url="spi/contrast/highRes/001r.jpg"/>
</surface>
<surface xml:id="spi001v">
<graphic type="normal"
subtype="thumbnail" url="spi/thumb/001v.jpg"/>
<graphic type="normal" subtype="low-res"
url="spi/normal/lowRes/001v.jpg"/>
<graphic type="normal"
subtype="high-res" url="spi/normal/highRes/001v.jpg"/>
<graphic type="high-contrast"
subtype="low-res" url="spi/contrast/lowRes/001v.jpg"/>
<graphic type="high-contrast"
subtype="high-res" url="spi/contrast/highRes/001v.jpg"/>
<zone xml:id="spi001v_detail01">
<graphic type="normal"
subtype="thumbnail" url="spi/thumb/001v-detail01.jpg"/>
<graphic type="normal"
subtype="low-res"
url="spi/normal/lowRes/001v-detail01.jpg"/>
<graphic type="normal"
subtype="high-res"
url="spi/normal/highRes/001v-detail01.jpg"/>
<graphic type="high-contrast"
subtype="low-res"
url="spi/contrast/lowRes/001v-detail01.jpg"/>
<graphic type="high-contrast"
subtype="high-res"
url="spi/contrast/highRes/001v-detail01.jpg"/>
</zone>
</surface>
</surfaceGrp>
</facsimile>
|
Content model |
<content> <classRef key="model.descLike" minOccurs="0" maxOccurs="unbounded"/> </content> ⚓ |
Schema Declaration |
element graphic { tei_att.global.attributes, tei_att.media.attributes, tei_att.resourced.attributes, tei_att.declaring.attributes, tei_att.typed.attributes, tei_model.descLike* }⚓ |
<handDesc> (description of hands) contains a description of all the different hands used in a manuscript or other object. [10.7.2. Writing, Decoration, and Other Notations] | |||||||
Module | msdescription | ||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||
Member of | |||||||
Contained by |
msdescription: physDesc
|
||||||
May contain |
core: p
|
||||||
Example |
<handDesc>
<handNote scope="major">Written throughout in <term>angelicana formata</term>.</handNote>
</handDesc>
|
||||||
Example |
<handDesc hands="2">
<p>The manuscript is written in two contemporary hands, otherwise
unknown, but clearly those of practised scribes. Hand I writes
ff. 1r-22v and hand II ff. 23 and 24. Some scholars, notably
Verner Dahlerup and Hreinn Benediktsson, have argued for a third hand
on f. 24, but the evidence for this is insubstantial.</p>
</handDesc>
|
||||||
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="summary" minOccurs="0"/> <elementRef key="handNote" minOccurs="1" maxOccurs="unbounded"/> </sequence> </alternate> </content> ⚓ |
||||||
Schema Declaration |
element handDesc { tei_att.global.attributes, attribute hands { text }?, ( tei_model.pLike+ | ( summary?, handNote+ ) ) }⚓ |
<head> (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. [4.2.1. Headings and Trailers] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.placement (@place) att.written (@hand) |
Member of | |
Contained by | |
May contain | |
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. |
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="I" type="book">
<head>In the name of Christ here begins the first book of the ecclesiastical history of
Georgius Florentinus, known as Gregory, Bishop of Tours.</head>
<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 | When headings are not inline with the running text (see e.g. the heading "Secunda conclusio") they might however be encoded as if. The actual placement in the source document
can be captured with the place attribute.
<div type="subsection">
<head place="margin">Secunda conclusio</head>
<p>
<lb n="1251"/>
<hi rend="large">Potencia: habitus: et actus: recipiunt speciem ab obiectis<supplied>.</supplied>
</hi>
<lb n="1252"/>Probatur sic. Omne importans necessariam habitudinem ad proprium
[...]
</p>
</div>
|
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 rend="bulleted">
<head>Connectives</head>
<item>above</item>
<item>accordingly</item>
<item>across from</item>
<item>adjacent to</item>
<item>again</item>
<item>
<!-- ... -->
</item>
</list>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <elementRef key="lg"/> <classRef key="model.gLike"/> <classRef key="model.phrase"/> <classRef key="model.inter"/> <classRef key="model.lLike"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Schema Declaration |
element head { tei_att.global.attributes, tei_att.typed.attributes, tei_att.placement.attributes, tei_att.written.attributes, ( text | tei_lg | tei_model.gLike | tei_model.phrase | tei_model.inter | tei_model.lLike | tei_model.global )* }⚓ |
<height> (height) contains a measurement measured along the axis at a right angle to the bottom of the object. [10.3.4. Dimensions] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
|
May contain | Character data only |
Example |
<height unit="in" quantity="7"/>
|
Content model |
<content> <macroRef key="macro.xtext"/> </content> ⚓ |
Schema Declaration |
element height { tei_att.global.attributes, tei_att.dimensions.attributes, tei_macro.xtext }⚓ |
<history> (history) groups elements describing the full history of a manuscript, manuscript part, or other object. [10.8. History] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: msDesc
|
May contain |
msdescription: acquisition origin provenance
|
Example |
<history>
<origin>
<p>Written in Durham during the mid twelfth
century.</p>
</origin>
<provenance>
<p>Recorded in two medieval
catalogues of the books belonging to Durham Priory, made in 1391 and
1405.</p>
</provenance>
<provenance>
<p>Given to W. Olleyf by William Ebchester, Prior (1446-56)
and later belonged to Henry Dalton, Prior of Holy Island (Lindisfarne)
according to inscriptions on ff. 4v and 5.</p>
</provenance>
<acquisition>
<p>Presented to Trinity College in 1738 by
Thomas Gale and his son Roger.</p>
</acquisition>
</history>
|
Content model |
<content> <sequence minOccurs="1" maxOccurs="1"> <elementRef key="origin" minOccurs="1"/> <elementRef key="provenance" minOccurs="1"/> <elementRef key="acquisition" minOccurs="0" maxOccurs="1"/> </sequence> </content> ⚓ |
Schema Declaration |
element history { tei_att.global.attributes, ( tei_origin, tei_provenance, tei_acquisition? ) }⚓ |
<idno> (identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. [13.3.1. Basic Principles 2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.12.2.4. Imprint, Size of a Document, and Reprint Information] | |||||||||||
Module | header | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.sortable (@sortKey) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.typed (type, @subtype)
|
||||||||||
Member of | |||||||||||
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs series soCalled term title
figures: figDesc
header: authority distributor edition extent funder idno language principal publicationStmt sponsor tagUsage
|
||||||||||
May contain |
header: idno
character data
|
||||||||||
Note |
<idno> should be used for labels which identify an object or concept in a formal cataloguing system such as a database or an RDF store, or in a distributed system such as the World Wide Web. Some suggested values for type on <idno> are ISBN, ISSN, DOI, and URI. |
||||||||||
Example |
<idno type="ISBN">978-1-906964-22-1</idno>
<idno type="ISSN">0143-3385</idno>
<idno type="DOI">10.1000/123</idno>
<idno type="URI">http://www.worldcat.org/oclc/185922478</idno>
<idno type="URI">http://authority.nzetc.org/463/</idno>
<idno type="LT">Thomason Tract E.537(17)</idno>
<idno type="Wing">C695</idno>
<idno type="oldCat">
<g ref="#sym"/>345
</idno> In the last case, the identifier includes a non-Unicode character which is defined
elsewhere by means of a <glyph> or <char> element referenced here as #sym . |
||||||||||
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <elementRef key="idno"/> </alternate> </content> ⚓ |
||||||||||
Schema Declaration |
element idno { tei_att.global.attributes, tei_att.sortable.attributes, tei_att.datable.attributes, tei_att.typed.attribute.subtype, attribute type { "ISBN" | "ISSN" | "DOI" | "URI" | "VIAF" | "ESTC" | "OCLC" }?, ( text | tei_model.gLike | tei_idno )* }⚓ |
<institution> (institution) contains the name of an organization such as a university or library, with which a manuscript or other object is identified, generally its holding institution. [10.4. The Manuscript Identifier] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) |
Contained by |
msdescription: msIdentifier
|
May contain | |
Example |
<msIdentifier>
<settlement>Oxford</settlement>
<institution>University of Oxford</institution>
<repository>Bodleian Library</repository>
<idno>MS. Bodley 406</idno>
</msIdentifier>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element institution { tei_att.global.attributes, tei_att.naming.attributes, tei_macro.phraseSeq.limited }⚓ |
<item> (item) contains one component of a list. [3.8. Lists 2.6. The Revision Description] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.sortable (@sortKey) |
Contained by |
core: list
|
May contain | |
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. |
Example |
<list rend="numbered">
<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>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element item { tei_att.global.attributes, tei_att.sortable.attributes, tei_macro.specialPara }⚓ |
<keywords> (keywords) contains a list of keywords or phrases identifying the topic or nature of a text. [2.4.3. The Text Classification] | |||||||
Module | header | ||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||
Contained by |
header: textClass
|
||||||
May contain | |||||||
Note |
Each individual keyword (including compound subject headings) should be supplied as a <term> element directly within the <keywords> element. An alternative usage, in which each <term> appears within an <item> inside a <list> is permitted for backwards compatibility, but is deprecated. If no control list exists for the keywords used, then no value should be supplied for the scheme attribute. |
||||||
Example |
<keywords scheme="http://classificationweb.net">
<term>Babbage, Charles</term>
<term>Mathematicians - Great Britain - Biography</term>
</keywords>
|
||||||
Example |
<keywords>
<term>Fermented beverages</term>
<term>Central Andes</term>
<term>Schinus molle</term>
<term>Molle beer</term>
<term>Indigenous peoples</term>
<term>Ethnography</term>
<term>Archaeology</term>
</keywords>
|
||||||
Content model |
<content> <alternate> <elementRef key="term" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="list"/> </alternate> </content> ⚓ |
||||||
Schema Declaration |
element keywords { tei_att.global.attributes, attribute scheme { text }?, ( tei_term+ | tei_list ) }⚓ |
<l> (verse line) contains a single, possibly incomplete, line of verse. [3.13.1. Core Tags for Verse 3.13. Passages of Verse or Drama 7.2.5. Speech Contents] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.metrical (@met, @real, @rhyme) att.enjamb (@enjamb) att.fragmentable (@part) |
Member of | |
Contained by |
figures: figure
msdescription: acquisition layout origin provenance support surrogates
namesdates: occupation
|
May contain | |
Example |
<l met="x/x/x/x/x/" real="/xx/x/x/x/">Shall I compare thee to a summer's day?</l>
|
Schematron |
<sch:report test="ancestor::tei:l[not(.//tei:note//tei:l[. = current()])]"> Abstract
model violation: Lines may not contain lines or lg elements.
</sch:report>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.phrase"/> <classRef key="model.inter"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Schema Declaration |
element l { tei_att.global.attributes, tei_att.metrical.attributes, tei_att.enjamb.attributes, tei_att.fragmentable.attributes, ( text | tei_model.gLike | tei_model.phrase | tei_model.inter | tei_model.global )* }⚓ |
<label> (label) contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.8. Lists] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.placement (@place) att.written (@hand) |
Member of | |
Contained by | |
May contain | |
Example | Labels are commonly used for the headwords in glossary lists; note the use of the
global xml:lang attribute to set the default language of the glossary list to Middle English, and
identify the glosses and headings as modern English or Latin:
<list type="gloss" xml:lang="enm">
<head xml:lang="en">Vocabulary</head>
<headLabel xml:lang="en">Middle English</headLabel>
<headItem xml:lang="en">New English</headItem>
<label>nu</label>
<item xml:lang="en">now</item>
<label>lhude</label>
<item xml:lang="en">loudly</item>
<label>bloweth</label>
<item xml:lang="en">blooms</item>
<label>med</label>
<item xml:lang="en">meadow</item>
<label>wude</label>
<item xml:lang="en">wood</item>
<label>awe</label>
<item xml:lang="en">ewe</item>
<label>lhouth</label>
<item xml:lang="en">lows</item>
<label>sterteth</label>
<item xml:lang="en">bounds, frisks (cf. <cit>
<ref>Chaucer, K.T.644</ref>
<quote>a courser, <term>sterting</term>as the fyr</quote>
</cit>
</item>
<label>verteth</label>
<item xml:lang="la">pedit</item>
<label>murie</label>
<item xml:lang="en">merrily</item>
<label>swik</label>
<item xml:lang="en">cease</item>
<label>naver</label>
<item xml:lang="en">never</item>
</list>
|
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="runon" type="ordered">
<label>(1)</label>
<item>My first rough manuscript, without any intermediate copy, has been sent to the press.</item>
<label>(2) </label>
<item>Not a sheet has been seen by any human eyes, excepting those of the author and the
printer: the faults and the merits are exclusively my own.</item>
</list>
|
Example | Labels may also be used for other structured list items, as in this extract from the
journal of Edward Gibbon:
<list type="gloss">
<label>March 1757.</label>
<item>I wrote some critical observations upon Plautus.</item>
<label>March 8th.</label>
<item>I wrote a long dissertation upon some lines of Virgil.</item>
<label>June.</label>
<item>I saw Mademoiselle Curchod — <quote xml:lang="la">Omnia vincit amor, et nos cedamus
amori.</quote>
</item>
<label>August.</label>
<item>I went to Crassy, and staid two days.</item>
</list> Note that the <label> might also appear within the <item> rather than as its sibling. Though syntactically valid, this usage is not recommended
TEI practice. |
Example | Labels may also be used to represent a label or heading attached to a paragraph or
sequence of paragraphs not treated as a structural division, or to a group of verse
lines. Note that, in this case, the <label> element appears within the <p> or <lg> element, rather than as a preceding sibling of it.
<p>[...]
<lb/>& n’entrer en mauuais & mal-heu-
<lb/>ré meſnage. Or des que le conſente-
<lb/>ment des parties y eſt le mariage eſt
<lb/> arreſté, quoy que de faict il ne ſoit
<label place="margin">Puiſſance maritale
entre les Romains.</label>
<lb/> conſommé. Depuis la conſomma-
<lb/>tion du mariage la femme eſt ſoubs
<lb/> la puiſſance du mary, s’il n’eſt eſcla-
<lb/>ue ou enfant de famille : car en ce
<lb/> cas, la femme, qui a eſpouſé vn en-
<lb/>fant de famille, eſt ſous la puiſſance
[...]</p> In this example the text of the label appears in the right hand margin of the original
source, next to the paragraph it describes, but approximately in the middle of it.
If so desired the type attribute may be used to distinguish different categories of label. |
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element label { tei_att.global.attributes, tei_att.typed.attributes, tei_att.placement.attributes, tei_att.written.attributes, tei_macro.phraseSeq }⚓ |
<langUsage> (language usage) describes the languages, sublanguages, registers, dialects, etc. represented within a text. [2.4.2. Language Usage 2.4. The Profile Description 15.3.2. Declarable Elements] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) |
Member of | |
Contained by |
header: profileDesc
|
May contain | |
Example |
<langUsage>
<language ident="fr-CA" usage="60">Québecois</language>
<language ident="en-CA" usage="20">Canadian business English</language>
<language ident="en-GB" usage="20">British English</language>
</langUsage>
|
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="language" minOccurs="1" maxOccurs="unbounded"/> </alternate> </content> ⚓ |
Schema Declaration |
element langUsage { tei_att.global.attributes, tei_att.declarable.attributes, ( tei_model.pLike+ | tei_language+ ) }⚓ |
<language> (language) characterizes a single language or sublanguage used within a text. [2.4.2. Language Usage] | |||||||||||||
Module | header | ||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||||||||
Contained by |
header: langUsage
|
||||||||||||
May contain | |||||||||||||
Note |
Particularly for sublanguages, an informal prose characterization should be supplied as content for the element. |
||||||||||||
Example |
<langUsage>
<language ident="en-US" usage="75">modern American English</language>
<language ident="i-az-Arab" usage="20">Azerbaijani in Arabic script</language>
<language ident="x-lap" usage="05">Pig Latin</language>
</langUsage>
|
||||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
||||||||||||
Schema Declaration |
element language { tei_att.global.attributes, attribute ident { text }, attribute usage { text }?, tei_macro.phraseSeq.limited }⚓ |
<layout> (layout) describes how text is laid out on the page or surface of the object, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2. Writing, Decoration, and Other Notations] | |||||||||||||||||||||||||||||||||
Module | msdescription | ||||||||||||||||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||||||||||||||||||||||||||||
Contained by |
msdescription: layoutDesc
|
||||||||||||||||||||||||||||||||
May contain | |||||||||||||||||||||||||||||||||
Example |
<layout columns="1" ruledLines="25 32">Most pages have between 25 and 32 long lines ruled in lead.</layout>
|
||||||||||||||||||||||||||||||||
Example |
<layout columns="2" ruledLines="42">
<p>2 columns of 42 lines ruled in ink, with central rule
between the columns.</p>
</layout>
|
||||||||||||||||||||||||||||||||
Example |
<layout columns="1 2" writtenLines="40 50">
<p>Some pages have 2 columns, with central rule
between the columns; each column with between 40 and 50 lines of writing.</p>
</layout>
|
||||||||||||||||||||||||||||||||
Example |
<layout streams="3" columns="3"/>
<!-- Further down in document body -->
<div type="page">
<ab>
<pb/>
一二三<cb type="top-stream"/>
一二三<cb type="mid-stream"/>
一二三<cb type="bottom-stream"/>
<!-- cb here for demo purposes -->
</ab>
</div>
|
||||||||||||||||||||||||||||||||
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
||||||||||||||||||||||||||||||||
Schema Declaration |
element layout { tei_att.global.attributes, attribute columns { list { ? } }?, attribute streams { list { ? } }?, attribute ruledLines { list { ? } }?, attribute writtenLines { list { ? } }?, tei_macro.specialPara }⚓ |
<layoutDesc> (layout description) collects the set of layout descriptions applicable to a manuscript or other object. [10.7.2. Writing, Decoration, and Other Notations] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: objectDesc
|
May contain | |
Example |
<layoutDesc>
<p>Most pages have between 25 and 32 long lines ruled in lead.</p>
</layoutDesc>
|
Example |
<layoutDesc>
<layout columns="2" ruledLines="42">
<p>
<locus from="f12r" to="f15v"/>
2 columns of 42 lines pricked and ruled in ink, with
central rule between the columns.</p>
</layout>
<layout columns="3">
<p>
<locus from="f16"/>Prickings for three columns are visible.</p>
</layout>
</layoutDesc>
|
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="summary" minOccurs="0"/> <elementRef key="layout" minOccurs="1" maxOccurs="unbounded"/> </sequence> </alternate> </content> ⚓ |
Schema Declaration |
element layoutDesc { tei_att.global.attributes, ( tei_model.pLike+ | ( summary?, tei_layout+ ) ) }⚓ |
<lg> (line group) contains one or more verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. [3.13.1. Core Tags for Verse 3.13. Passages of Verse or Drama 7.2.5. Speech Contents] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.divLike (@org, @sample) (att.metrical (@met, @real, @rhyme)) (att.fragmentable (@part)) att.typed (@type, @subtype) att.declaring (@decls) |
Member of | |
Contained by |
figures: figure
msdescription: acquisition layout origin provenance support surrogates
namesdates: occupation
|
May contain | |
Note |
contains verse lines or nested line groups only, possibly prefixed by a heading. |
Example |
<lg type="free">
<l>Let me be my own fool</l>
<l>of my own making, the sum of it</l>
</lg>
<lg type="free">
<l>is equivocal.</l>
<l>One says of the drunken farmer:</l>
</lg>
<lg type="free">
<l>leave him lay off it. And this is</l>
<l>the explanation.</l>
</lg>
|
Schematron |
<sch:assert test="count(descendant::tei:lg|descendant::tei:l|descendant::tei:gap)
>
0">An lg element
must contain at least one child l, lg, or gap element.</sch:assert>
|
Schematron |
<sch:report test="ancestor::tei:l[not(.//tei:note//tei:lg[. = current()])]"> Abstract
model violation: Lines may not contain line groups.
</sch:report>
|
Content model |
<content> <sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divTop"/> <classRef key="model.global"/> </alternate> <alternate> <classRef key="model.lLike"/> <classRef key="model.stageLike"/> <classRef key="model.labelLike"/> <classRef key="model.pPart.transcriptional"/> <elementRef key="lg"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.lLike"/> <classRef key="model.stageLike"/> <classRef key="model.labelLike"/> <classRef key="model.pPart.transcriptional"/> <classRef key="model.global"/> <elementRef key="lg"/> </alternate> <sequence minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottom"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element lg { tei_att.global.attributes, tei_att.divLike.attributes, tei_att.typed.attributes, tei_att.declaring.attributes, ( ( tei_model.divTop | tei_model.global )*, ( tei_model.lLike | tei_model.stageLike | tei_model.labelLike | tei_model.pPart.transcriptional | tei_lg ), ( tei_model.lLike | tei_model.stageLike | tei_model.labelLike | tei_model.pPart.transcriptional | tei_model.global | tei_lg )*, ( tei_model.divBottom, tei_model.global* )* ) }⚓ |
<list> (list) contains any sequence of items organized as a list. [3.8. Lists] | |||||||||||||||||||
Module | core | ||||||||||||||||||
Attributes | att.sortable (@sortKey) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) att.global.rendition (rend, @style, @rendition) att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select) att.global.facs (@facs) att.global.change (@change) att.global.responsibility (@cert, @resp) att.global.source (@source) att.typed (type, @subtype)
|
||||||||||||||||||
Member of | |||||||||||||||||||
Contained by |
header: keywords revisionDesc sourceDesc tagUsage
msdescription: acquisition layout origin provenance support surrogates
namesdates: occupation
|
||||||||||||||||||
May contain | |||||||||||||||||||
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. |
||||||||||||||||||
Example |
<list rend="numbered">
<item>a butcher</item>
<item>a baker</item>
<item>a candlestick maker, with
<list rend="bulleted">
<item>rings on his fingers</item>
<item>bells on his toes</item>
</list>
</item>
</list>
|
||||||||||||||||||
Example |
<list type="syllogism" rend="bulleted">
<item>All Cretans are liars.</item>
<item>Epimenides is a Cretan.</item>
<item>ERGO Epimenides is a liar.</item>
</list>
|
||||||||||||||||||
Example |
<list type="litany" rend="simple">
<item>God save us from drought.</item>
<item>God save us from pestilence.</item>
<item>God save us from wickedness in high places.</item>
<item>Praise be to God.</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">
<head>Athelstan's Ordinance</head>
<list rend="numbered">
<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 rend="numbered">
<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 rend="numbered">
<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 rend="numbered">
<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>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 rend="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>
|
||||||||||||||||||
Schematron |
<sch:rule context="tei:list[@type]">
<sch:assert test="not(@type=('bulleted', 'ordered'))"> ERROR: Use @rend="bulleted"
or @rend="numbered"
for lists; use @type only to describe what
sort of thing is being listed.
</sch:assert>
</sch:rule>
|
||||||||||||||||||
Schematron |
<sch:rule context="tei:list[@type='gloss']">
<sch:assert test="tei:label">The content of a "gloss" list should include a sequence
of one or more pairs of a label element followed by an item element</sch:assert>
</sch:rule>
|
||||||||||||||||||
Content model |
<content> <sequence minOccurs="1" maxOccurs="1"> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divTop"/> <classRef key="model.global"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> </alternate> <alternate minOccurs="1" maxOccurs="1"> <sequence minOccurs="1" maxOccurs="unbounded"> <elementRef key="item"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> <sequence minOccurs="1" maxOccurs="1"> <elementRef key="headLabel" minOccurs="0"/> <elementRef key="headItem" minOccurs="0"/> <sequence minOccurs="1" maxOccurs="unbounded"> <elementRef key="label"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="item"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </alternate> <sequence minOccurs="0" maxOccurs="unbounded"> <classRef key="model.divBottom"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </content> ⚓ |
||||||||||||||||||
Schema Declaration |
element list { tei_att.global.attribute.xmlid, tei_att.global.attribute.n, tei_att.global.attribute.xmllang, tei_att.global.attribute.xmlbase, tei_att.global.attribute.xmlspace, tei_att.global.rendition.attribute.style, tei_att.global.rendition.attribute.rendition, tei_att.global.linking.attribute.corresp, tei_att.global.linking.attribute.synch, tei_att.global.linking.attribute.sameAs, tei_att.global.linking.attribute.copyOf, tei_att.global.linking.attribute.next, tei_att.global.linking.attribute.prev, tei_att.global.linking.attribute.exclude, tei_att.global.linking.attribute.select, tei_att.global.facs.attribute.facs, tei_att.global.change.attribute.change, tei_att.global.responsibility.attribute.cert, tei_att.global.responsibility.attribute.resp, tei_att.global.source.attribute.source, tei_att.sortable.attributes, tei_att.typed.attribute.subtype, attribute rend { "bulleted" | "numbered" }?, attribute type { "gloss" | "index" | "instructions" | "litany" | "syllogism" }?, ( ( tei_model.divTop | tei_model.global | tei_desc* )*, ( ( tei_item, tei_model.global* )+ | ( headLabel?, headItem?, ( tei_label, tei_model.global*, tei_item, tei_model.global* )+ ) ), ( tei_model.divBottom, tei_model.global* )* ) }⚓ |
<listBibl> (citation list) contains a list of bibliographic citations of any kind. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.sortable (@sortKey) att.declarable (@default) att.typed (@type, @subtype) |
Member of | |
Contained by |
header: sourceDesc tagUsage
msdescription: acquisition additional layout msItem origin provenance support surrogates
namesdates: event occupation org person place
|
May contain | |
Example |
<listBibl>
<head>Works consulted</head>
<bibl>Blain, Clements and Grundy: Feminist Companion to
Literature in English (Yale, 1990)
</bibl>
<biblStruct>
<analytic>
<title>The Interesting story of the Children in the Wood</title>
</analytic>
<monogr>
<title>The Penny Histories</title>
<author>Victor E Neuberg</author>
<imprint>
<publisher>OUP</publisher>
<date>1968</date>
</imprint>
</monogr>
</biblStruct>
</listBibl>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.milestoneLike" minOccurs="1" maxOccurs="1"/> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.biblLike" minOccurs="1" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.milestoneLike" minOccurs="1" maxOccurs="1"/> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element listBibl { tei_att.global.attributes, tei_att.sortable.attributes, tei_att.declarable.attributes, tei_att.typed.attributes, ( tei_model.headLike*, tei_desc*, ( tei_model.milestoneLike | relation | listRelation )*, ( tei_model.biblLike+, ( tei_model.milestoneLike | relation | listRelation )* )+ ) }⚓ |
<listEvent> (list of events) contains a list of descriptions, each of which provides information about an identifiable event. [13.3.1. Basic Principles] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.declarable (@default) att.sortable (@sortKey) |
Member of | |
Contained by | |
May contain | |
Example |
<listEvent>
<head>Battles of the American Civil War: Kentucky</head>
<event xml:id="event01" when="1861-09-19">
<label>Barbourville</label>
<desc>The Battle of Barbourville was one of the early engagements of
the American Civil War. It occurred September 19, 1861, in Knox
County, Kentucky during the campaign known as the Kentucky Confederate
Offensive. The battle is considered the first Confederate victory in
the commonwealth, and threw a scare into Federal commanders, who
rushed troops to central Kentucky in an effort to repel the invasion,
which was finally thwarted at the <ref target="#event02">Battle of
Camp Wildcat</ref> in October.</desc>
</event>
<event xml:id="event02" when="1861-10-21">
<label>Camp Wild Cat</label>
<desc>The Battle of Camp Wildcat (also known as Wildcat Mountain and Camp
Wild Cat) was one of the early engagements of the American Civil
War. It occurred October 21, 1861, in northern Laurel County, Kentucky
during the campaign known as the Kentucky Confederate Offensive. The
battle is considered one of the very first Union victories, and marked
the first engagement of troops in the commonwealth of Kentucky.</desc>
</event>
<event xml:id="event03" from="1864-06-11"
to="1864-06-12">
<label>Cynthiana</label>
<desc>The Battle of Cynthiana (or Kellar’s Bridge) was an engagement
during the American Civil War that was fought on June 11 and 12, 1864,
in Harrison County, Kentucky, near the town of Cynthiana. A part of
Confederate Brigadier General John Hunt Morgan's 1864 Raid into
Kentucky, the battle resulted in a victory by Union forces over the
raiders and saved the town from capture.</desc>
</event>
</listEvent>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.eventLike" minOccurs="1" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element listEvent { tei_att.global.attributes, tei_att.typed.attributes, tei_att.declarable.attributes, tei_att.sortable.attributes, ( tei_model.headLike*, tei_desc*, ( relation | listRelation )*, ( tei_model.eventLike+, ( relation | listRelation )* )+ ) }⚓ |
<listOrg> (list of organizations) contains a list of elements, each of which provides information about an identifiable organization. [13.2.2. Organizational Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.declarable (@default) att.sortable (@sortKey) |
Member of | |
Contained by | |
May contain | |
Note |
The type attribute may be used to distinguish lists of organizations of a particular type if convenient. |
Example |
<listOrg>
<head>Libyans</head>
<org>
<orgName>Adyrmachidae</orgName>
<desc>These people have, in most points, the same customs as the Egyptians, but
use the costume of the Libyans. Their women wear on each leg a ring made of
bronze [...]</desc>
</org>
<org>
<orgName>Nasamonians</orgName>
<desc>In summer they leave their flocks and herds upon the sea-shore, and go up
the country to a place called Augila, where they gather the dates from the
palms [...]</desc>
</org>
<org>
<orgName>Garamantians</orgName>
<desc>[...] avoid all society or intercourse with their fellow-men, have no
weapon of war, and do not know how to defend themselves. [...]</desc>
<!-- ... -->
</org>
</listOrg>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate minOccurs="1" maxOccurs="unbounded"> <elementRef key="org" minOccurs="1" maxOccurs="1"/> <elementRef key="listOrg" minOccurs="1" maxOccurs="1"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element listOrg { tei_att.global.attributes, tei_att.typed.attributes, tei_att.declarable.attributes, tei_att.sortable.attributes, ( tei_model.headLike*, tei_desc*, ( relation | listRelation )*, ( ( tei_org | tei_listOrg )+, ( relation | listRelation )* )+ ) }⚓ |
<listPerson> (list of persons) contains a list of descriptions, each of which provides information about an identifiable person or a group of people, for example the participants in a language interaction, or the people referred to in a historical source. [13.3.2. The Person Element 15.2. Contextual Information 2.4. The Profile Description 15.3.2. Declarable Elements] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.declarable (@default) att.sortable (@sortKey) |
Member of | |
Contained by |
header: sourceDesc tagUsage
msdescription: acquisition layout origin provenance support surrogates
namesdates: listPerson occupation org
|
May contain |
namesdates: listPerson org person
|
Note |
The type attribute may be used to distinguish lists of people of a particular type if convenient. |
Example |
<listPerson type="respondents">
<personGrp xml:id="PXXX"/>
<person xml:id="P1234" sex="2" age="mid"/>
<person xml:id="P4332" sex="1" age="mid"/>
<listRelation>
<relation type="personal" name="spouse"
mutual="#P1234 #P4332"/>
</listRelation>
</listPerson>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.personLike" minOccurs="1" maxOccurs="1"/> <elementRef key="listPerson" minOccurs="1" maxOccurs="1"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element listPerson { tei_att.global.attributes, tei_att.typed.attributes, tei_att.declarable.attributes, tei_att.sortable.attributes, ( tei_model.headLike*, tei_desc*, ( relation | listRelation )*, ( ( tei_model.personLike | tei_listPerson )+, ( relation | listRelation )* )+ ) }⚓ |
<listPlace> (list of places) contains a list of places, optionally followed by a list of relationships (other than containment) defined amongst them. [2.2.7. The Source Description 13.3.4. Places] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.declarable (@default) att.sortable (@sortKey) |
Member of | |
Contained by | |
May contain | |
Example |
<listPlace type="offshoreIslands">
<place>
<placeName>La roche qui pleure</placeName>
</place>
<place>
<placeName>Ile aux cerfs</placeName>
</place>
</listPlace>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.placeLike" minOccurs="1" maxOccurs="1"/> <elementRef key="listPlace" minOccurs="1" maxOccurs="1"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="relation" minOccurs="1" maxOccurs="1"/> <elementRef key="listRelation" minOccurs="1" maxOccurs="1"/> </alternate> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element listPlace { tei_att.global.attributes, tei_att.typed.attributes, tei_att.declarable.attributes, tei_att.sortable.attributes, ( tei_model.headLike*, tei_desc*, ( relation | listRelation )*, ( ( tei_model.placeLike | tei_listPlace )+, ( relation | listRelation )* )+ ) }⚓ |
<listPrefixDef> (list of prefix definitions) contains a list of definitions of prefixing schemes used in teidata.pointer values, showing how abbreviated URIs using each scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
header: encodingDesc listPrefixDef
|
May contain |
core: desc
header: listPrefixDef prefixDef
|
Example | In this example, two private URI scheme prefixes are defined and patterns are provided
for dereferencing them. Each prefix is also supplied with a human-readable explanation
in a <p> element.
<listPrefixDef>
<prefixDef ident="psn"
matchPattern="([A-Z]+)"
replacementPattern="personography.xml#$1">
<p> Private URIs using the <code>psn</code>
prefix are pointers to <gi>person</gi>
elements in the personography.xml file.
For example, <code>psn:MDH</code>
dereferences to <code>personography.xml#MDH</code>.
</p>
</prefixDef>
<prefixDef ident="bibl"
matchPattern="([a-z]+[a-z0-9]*)"
replacementPattern="http://www.example.com/getBibl.xql?id=$1">
<p> Private URIs using the <code>bibl</code> prefix can be
expanded to form URIs which retrieve the relevant
bibliographical reference from www.example.com.
</p>
</prefixDef>
</listPrefixDef>
|
Content model |
<content> <sequence> <elementRef key="desc" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="1" maxOccurs="unbounded"> <elementRef key="prefixDef"/> <elementRef key="listPrefixDef"/> </alternate> </sequence> </content> ⚓ |
Schema Declaration |
element listPrefixDef { tei_att.global.attributes, ( tei_desc*, ( tei_prefixDef | tei_listPrefixDef )+ ) }⚓ |
<locus> (locus) defines a location within a manuscript, manuscript part, or other object typically as a (possibly discontinuous) sequence of folio references. [10.3.5. References to Locations within a Manuscript] | |||||||||||||||||||
Module | msdescription | ||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype)
|
||||||||||||||||||
Member of | |||||||||||||||||||
Contained by | |||||||||||||||||||
May contain |
msdescription: locus
character data
|
||||||||||||||||||
Note |
The target attribute should only be used to point to elements that contain or indicate a transcription of the locus being described, as in the ‘Ben Jonson’ example. To associate a <locus> element with a page image or other comparable representation, the global facs attribute should be used, as shown in the ‘Birds Praise of Love’ example. The facs attribute may be used to indicate one or more image files, as in that example, or alternatively it may point to one or more appropriate XML elements, such as the <surface>, <zone>, <graphic>, or <binaryObject> elements. When a single page is being cited, use the from and to attributes with an identical value. When no clear endpoint is provided, the from attribute may be used without to; for example a citation such as ‘p. 3ff’ might be encoded |
||||||||||||||||||
Example |
<!-- within ms description --><msItem n="1">
<locus target="#F1r #F1v #F2r" from="1r"
to="2r">ff. 1r-2r</locus>
<author>Ben Jonson</author>
<title>Ode to himself</title>
<rubric rend="italics"> An Ode<lb/> to him selfe.</rubric>
<incipit>Com leaue the loathed stage</incipit>
<explicit>And see his chariot triumph ore his wayne.</explicit>
<bibl>
<name>Beal</name>, <title>Index 1450-1625</title>, JnB 380</bibl>
</msItem>
<!-- within transcription ... -->
<pb xml:id="F1r"/>
<!-- ... -->
<pb xml:id="F1v"/>
<!-- ... -->
<pb xml:id="F2r"/>
<!-- ... -->
|
||||||||||||||||||
Example | The facs attribute is available globally when the transcr module is included in a schema. It may be used to point directly to an image file,
as in the following example:
<msItem>
<locus facs="images/08v.jpg images/09r.jpg images/09v.jpg images/10r.jpg images/10v.jpg">fols. 8v-10v</locus>
<title>Birds Praise of Love</title>
<bibl>
<title>IMEV</title>
<biblScope>1506</biblScope>
</bibl>
</msItem>
|
||||||||||||||||||
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <elementRef key="hi"/> <elementRef key="locus"/> </alternate> </content> ⚓ |
||||||||||||||||||
Schema Declaration |
element locus { tei_att.global.attributes, tei_att.pointing.attributes, tei_att.typed.attributes, attribute scheme { text }?, attribute from { text }?, attribute to { text }?, ( text | tei_model.gLike | hi | tei_locus )* }⚓ |
<material> (material) contains a word or phrase describing the material of which the object being described is composed. [10.3.2. Material and Object Type] | |||||||||||||||||
Module | msdescription | ||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.typed (@type, @subtype)
|
||||||||||||||||
Member of | |||||||||||||||||
Contained by | |||||||||||||||||
May contain | |||||||||||||||||
Note |
The ref attribute may be used to point to one or more items within a taxonomy of types of material, defined either internally or externally. |
||||||||||||||||
Example |
<physDesc>
<p>
<material>Parchment</material> leaves with a
<material>sharkskin</material> binding.</p>
</physDesc>
|
||||||||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||||||||
Schema Declaration |
element material { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.typed.attributes, attribute function { text }?, attribute target { list { + } }?, tei_macro.phraseSeq }⚓ |
<msContents> (manuscript contents) describes the intellectual content of a manuscript, manuscript part, or other object either as a series of paragraphs or as a series of structured manuscript items. [10.6. Intellectual Content] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.msExcerpt (@defective) att.msClass (@class) |
Contained by |
msdescription: msDesc
|
May contain | |
Note |
Unless it contains a simple prose description, this element should contain at least one of the elements <summary>, <msItem>, or <msItemStruct>. This constraint is not currently enforced by the schema. |
Example |
<msContents class="#sermons">
<p>A collection of Lollard sermons</p>
</msContents>
|
Example |
<msContents>
<msItem n="1">
<locus>fols. 5r-7v</locus>
<title>An ABC</title>
<bibl>
<title>IMEV</title>
<biblScope>239</biblScope>
</bibl>
</msItem>
<msItem n="2">
<locus>fols. 7v-8v</locus>
<title xml:lang="frm">Lenvoy de Chaucer a Scogan</title>
<bibl>
<title>IMEV</title>
<biblScope>3747</biblScope>
</bibl>
</msItem>
<msItem n="3">
<locus>fol. 8v</locus>
<title>Truth</title>
<bibl>
<title>IMEV</title>
<biblScope>809</biblScope>
</bibl>
</msItem>
<msItem n="4">
<locus>fols. 8v-10v</locus>
<title>Birds Praise of Love</title>
<bibl>
<title>IMEV</title>
<biblScope>1506</biblScope>
</bibl>
</msItem>
<msItem n="5">
<locus>fols. 10v-11v</locus>
<title xml:lang="la">De amico ad amicam</title>
<title xml:lang="la">Responcio</title>
<bibl>
<title>IMEV</title>
<biblScope>16 & 19</biblScope>
</bibl>
</msItem>
<msItem n="6">
<locus>fols. 14r-126v</locus>
<title>Troilus and Criseyde</title>
<note>Bk. 1:71-Bk. 5:1701, with additional losses due to mutilation throughout</note>
</msItem>
</msContents>
|
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="summary" minOccurs="0"/> <elementRef key="textLang" minOccurs="0"/> <elementRef key="titlePage" minOccurs="0"/> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="msItem"/> <elementRef key="msItemStruct"/> </alternate> </sequence> </alternate> </content> ⚓ |
Schema Declaration |
element msContents { tei_att.global.attributes, tei_att.msExcerpt.attributes, tei_att.msClass.attributes, ( tei_model.pLike+ | ( summary?, textLang?, titlePage?, ( tei_msItem | msItemStruct )* ) ) }⚓ |
<msDesc> (manuscript description) contains a description of a single identifiable manuscript or other text-bearing object such as an early printed book. [10.1. Overview] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.sortable (@sortKey) att.typed (@type, @subtype) att.declaring (@decls) att.docStatus (@status) |
Member of | |
Contained by | |
May contain |
msdescription: additional history msContents msIdentifier physDesc
|
Note |
Although the <msDesc> has primarily been designed with a view to encoding manuscript descriptions, it may also be used for other objects such as early printed books, fascicles, epigraphs, or any text-bearing objects that require substantial description. If an object is not text-bearing or the reasons for describing the object is not primarily the textual content, the more general <object> may be more suitable. |
Example |
<msDesc>
<msIdentifier>
<settlement>Oxford</settlement>
<repository>Bodleian Library</repository>
<idno type="Bod">MS Poet. Rawl. D. 169.</idno>
</msIdentifier>
<msContents>
<msItem>
<author>Geoffrey Chaucer</author>
<title>The Canterbury Tales</title>
</msItem>
</msContents>
<physDesc>
<objectDesc>
<p>A parchment codex of 136 folios, measuring approx
28 by 19 inches, and containing 24 quires.</p>
<p>The pages are margined and ruled throughout.</p>
<p>Four hands have been identified in the manuscript: the first 44
folios being written in two cursive anglicana scripts, while the
remainder is for the most part in a mixed secretary hand.</p>
</objectDesc>
</physDesc>
</msDesc>
|
Content model |
<content> <sequence> <elementRef key="msIdentifier"/> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="msContents" minOccurs="0"/> <elementRef key="physDesc" minOccurs="0"/> <elementRef key="history" minOccurs="0"/> <elementRef key="additional" minOccurs="0"/> <alternate> <elementRef key="msPart" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="msFrag" minOccurs="0" maxOccurs="unbounded"/> </alternate> </sequence> </alternate> </sequence> </content> ⚓ |
Schema Declaration |
element msDesc { tei_att.global.attributes, tei_att.sortable.attributes, tei_att.typed.attributes, tei_att.declaring.attributes, tei_att.docStatus.attributes, ( tei_msIdentifier, tei_model.headLike*, ( tei_model.pLike+ | ( tei_msContents?, tei_physDesc?, tei_history?, tei_additional?, ( msPart* | msFrag* ) ) ) ) }⚓ |
<msIdentifier> (manuscript identifier) contains the information required to identify the manuscript or similar object being described. [10.4. The Manuscript Identifier] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by | |
May contain |
header: idno
msdescription: collection institution msName repository
namesdates: country placeName settlement
|
Example |
<msIdentifier>
<settlement>San Marino</settlement>
<repository>Huntington Library</repository>
<idno>MS.El.26.C.9</idno>
</msIdentifier>
|
Schematron |
<sch:report test="not(parent::tei:msPart) and (local-name(*[1])='idno' or local-name(*[1])='altIdentifier'
or normalize-space(.)='')">An msIdentifier must contain either a repository or location.</sch:report>
|
Content model |
<content> <sequence> <sequence> <classRef key="model.placeNamePart" expand="sequenceOptional"/> <elementRef key="institution" minOccurs="0"/> <elementRef key="repository" minOccurs="0"/> <elementRef key="collection" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="idno" minOccurs="0" maxOccurs="unbounded"/> </sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="msName"/> <elementRef key="objectName"/> <elementRef key="altIdentifier"/> </alternate> </sequence> </content> ⚓ |
Schema Declaration |
element msIdentifier { tei_att.global.attributes, ( ( tei_placeName?, tei_country?, tei_settlement?, tei_institution?, tei_repository?, tei_collection*, tei_idno* ), ( tei_msName | objectName | altIdentifier )* ) }⚓ |
<msItem> (manuscript item) describes an individual work or item within the intellectual content of a manuscript, manuscript part, or other object. [10.6.1. The msItem and msItemStruct Elements] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.msExcerpt (@defective) att.msClass (@class) |
Member of | |
Contained by |
msdescription: msContents msItem
|
May contain | |
Example |
<msItem class="#saga">
<locus>ff. 1r-24v</locus>
<title>Agrip af Noregs konunga sögum</title>
<incipit>regi oc h<ex>ann</ex> setiho
<gap reason="illegible" extent="7"/>sc
heim se<ex>m</ex> þio</incipit>
<explicit>h<ex>on</ex> hev<ex>er</ex>
<ex>oc</ex>þa buit hesta .ij. aNan viþ
fé enh<ex>on</ex>o<ex>m</ex> aNan til
reiþ<ex>ar</ex>
</explicit>
<textLang mainLang="non">Old Norse/Icelandic</textLang>
</msItem>
|
Content model |
<content> <sequence> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="locus"/> <elementRef key="locusGrp"/> </alternate> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.titlepagePart"/> <classRef key="model.msItemPart"/> <classRef key="model.global"/> </alternate> </alternate> </sequence> </content> ⚓ |
Schema Declaration |
element msItem { tei_att.global.attributes, tei_att.msExcerpt.attributes, tei_att.msClass.attributes, ( ( tei_locus | locusGrp )*, ( tei_model.pLike+ | ( tei_model.titlepagePart | tei_model.msItemPart | tei_model.global )+ ) ) }⚓ |
<msName> (alternative name) contains any form of unstructured alternative name used for a manuscript or other object, such as an ‘ocellus nominum’, or nickname. [10.4. The Manuscript Identifier] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) |
Contained by |
msdescription: msIdentifier
|
May contain | |
Example |
<msName>The Vercelli Book</msName>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <elementRef key="rs"/> <elementRef key="name"/> </alternate> </content> ⚓ |
Schema Declaration |
element msName { tei_att.global.attributes, tei_att.typed.attributes, ( text | tei_model.gLike | tei_rs | tei_name )* }⚓ |
<name> (name, proper noun) contains a proper noun or noun phrase. [3.6.1. Referring Strings] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp respStmt rs soCalled term title
figures: figDesc
|
May contain | |
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. |
Example |
<name type="person">Thomas Hoccleve</name>
<name type="place">Villingaholt</name>
<name type="org">Vetus Latina Institut</name>
<name type="person" ref="#HOC001">Occleve</name>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element name { tei_att.global.attributes, tei_att.personal.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<namespace> (namespace) supplies the formal name of the namespace to which the elements documented by its children belong. [2.3.4. The Tagging Declaration] | |||||||
Module | header | ||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||
Contained by |
header: tagsDecl
|
||||||
May contain |
header: tagUsage
|
||||||
Example |
<namespace name="http://www.tei-c.org/ns/1.0">
<tagUsage gi="hi" occurs="28" withId="2"> Used only to mark English words
italicized in the copy text </tagUsage>
</namespace>
|
||||||
Content model |
<content> <elementRef key="tagUsage" minOccurs="1" maxOccurs="unbounded"/> </content> ⚓ |
||||||
Schema Declaration |
element namespace { tei_att.global.attributes, attribute name { ? }, tei_tagUsage+ }⚓ |
<nationality> (nationality) contains an informal description of a person's present or past nationality or citizenship. [15.2.2. The Participant Description] | |||||||||||
Module | namesdates | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (type, @subtype)
|
||||||||||
Member of | |||||||||||
Contained by |
namesdates: person
|
||||||||||
May contain | |||||||||||
Example |
<nationality key="US" notBefore="1966"> Obtained US Citizenship in 1966</nationality>
|
||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||
Schema Declaration |
element nationality { tei_att.global.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.naming.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, tei_macro.phraseSeq }⚓ |
<normalization> (normalization) indicates the extent of normalization or regularization of the original source carried out in converting it to electronic form. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] | |||||||||
Module | header | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default)
|
||||||||
Member of | |||||||||
Contained by |
header: editorialDecl
|
||||||||
May contain |
core: p
|
||||||||
Example |
<editorialDecl>
<normalization method="markup">
<p>Where both upper- and lower-case i, j, u, v, and vv have been normalized, to modern
20th century typographical practice, the <gi>choice</gi> element has been used to
enclose <gi>orig</gi> and <gi>reg</gi> elements giving the original and new values
respectively. ... </p>
</normalization>
<normalization method="silent">
<p>Spacing between words and following punctuation has been regularized to zero spaces;
spacing between words has been regularized to one space.</p>
</normalization>
<normalization source="http://www.dict.sztaki.hu/webster">
<p>Spelling converted throughout to Modern American usage, based on Websters 9th
Collegiate dictionary.</p>
</normalization>
</editorialDecl>
|
||||||||
Content model |
<content> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> </content> ⚓ |
||||||||
Schema Declaration |
element normalization { tei_att.global.attributes, tei_att.declarable.attributes, attribute method { "silent" | "markup" }?, tei_model.pLike+ }⚓ |
<note> (note) contains a note or annotation. [3.9.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.12.2.8. Notes and Statement of Language 9.3.5.4. Notes within Entries] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.placement (@place) att.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype) att.written (@hand) att.anchoring (@anchored, @targetEnd) |
Member of | |
Contained by |
core: author bibl biblScope cit date editor email head item l label lg list name note p pubPlace publisher q quote ref resp respStmt rs series soCalled term title
figures: figure
msdescription: acquisition collection institution layout material msItem origDate origPlace origin provenance repository support surrogates
|
May contain | |
Example | In the following example, the translator has supplied a footnote containing an explanation
of the term translated as "painterly":
And yet it is not only
in the great line of Italian renaissance art, but even in the
painterly <note place="bottom" type="gloss"
resp="#MDMH">
<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.
</note> style of the
Dutch genre painters of the seventeenth century that drapery has this
psychological significance.
<!-- elsewhere in the document -->
<respStmt xml:id="MDMH">
<resp>translation from German to English</resp>
<name>Hottinger, Marie Donald Mackie</name>
</respStmt> For this example to be valid, the code MDMH must be defined elsewhere, for example by means of a responsibility statement in
the associated TEI header. |
Example | 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="126" anchored="true"> 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. |
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element note { tei_att.global.attributes, tei_att.placement.attributes, tei_att.pointing.attributes, tei_att.typed.attributes, tei_att.written.attributes, tei_att.anchoring.attributes, tei_macro.specialPara }⚓ |
<notesStmt> (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. [2.2.6. The Notes Statement 2.2. The File Description] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by | |
May contain |
core: note relatedItem
|
Note |
Information of different kinds should not be grouped together into the same note. |
Example |
<notesStmt>
<note>Historical commentary provided by Mark Cohen</note>
<note>OCR scanning done at University of Toronto</note>
</notesStmt>
|
Content model |
<content> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.noteLike"/> <elementRef key="relatedItem"/> </alternate> </content> ⚓ |
Schema Declaration |
element notesStmt { tei_att.global.attributes, ( tei_model.noteLike | tei_relatedItem )+ }⚓ |
<objectDesc> (object description) contains a description of the physical components making up the object which is being described. [10.7.1. Object Description] | |||||||||
Module | msdescription | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||||
Member of | |||||||||
Contained by |
msdescription: physDesc
|
||||||||
May contain |
core: p
msdescription: layoutDesc supportDesc
|
||||||||
Example |
<objectDesc form="codex">
<supportDesc material="mixed">
<p>Early modern
<material>parchment</material> and
<material>paper</material>.</p>
</supportDesc>
<layoutDesc>
<layout ruledLines="25 32"/>
</layoutDesc>
</objectDesc>
|
||||||||
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="supportDesc" minOccurs="0"/> <elementRef key="layoutDesc" minOccurs="0"/> </sequence> </alternate> </content> ⚓ |
||||||||
Schema Declaration |
element objectDesc { tei_att.global.attributes, attribute form { text }?, ( tei_model.pLike+ | ( tei_supportDesc?, tei_layoutDesc? ) ) }⚓ |
<occupation> (occupation) contains an informal description of a person's trade, profession or occupation. [15.2.2. The Participant Description] | |||||||||||||||||||||||
Module | namesdates | ||||||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (type, @subtype)
|
||||||||||||||||||||||
Member of | |||||||||||||||||||||||
Contained by |
namesdates: person
|
||||||||||||||||||||||
May contain | |||||||||||||||||||||||
Note |
The content of this element may be used as an alternative to the more formal specification made possible by its attributes; it may also be used to supplement the formal specification with commentary or clarification. |
||||||||||||||||||||||
Example |
<occupation>accountant</occupation>
|
||||||||||||||||||||||
Example |
<occupation scheme="#occupationtaxonomy"
code="#acc">accountant</occupation>
|
||||||||||||||||||||||
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
||||||||||||||||||||||
Schema Declaration |
element occupation { tei_att.global.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.naming.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, attribute scheme { text }?, attribute code { text }?, tei_macro.specialPara }⚓ |
<org> (organization) provides information about an identifiable organization such as a business, a tribe, or any other grouping of people. [13.3.3. Organizational Data] | |||||||||
Module | namesdates | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.editLike (@evidence, @instant) att.sortable (@sortKey)
|
||||||||
Member of | |||||||||
Contained by |
namesdates: listOrg listPerson org
|
||||||||
May contain | |||||||||
Example |
<org xml:id="JAMs">
<orgName>Justified Ancients of Mummu</orgName>
<desc>An underground anarchist collective spearheaded by
<persName>Hagbard Celine</persName>, who fight the Illuminati
from a golden submarine, the <name>Leif Ericson</name>
</desc>
<bibl>
<author>Robert Shea</author>
<author>Robert Anton Wilson</author>
<title>The Illuminatus! Trilogy</title>
</bibl>
</org>
|
||||||||
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <alternate> <classRef key="model.pLike" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.labelLike"/> <classRef key="model.nameLike"/> <classRef key="model.placeLike"/> <classRef key="model.orgPart"/> <classRef key="model.milestoneLike"/> </alternate> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.noteLike"/> <classRef key="model.biblLike"/> <elementRef key="linkGrp"/> <elementRef key="link"/> <elementRef key="ptr"/> </alternate> <classRef key="model.personLike" minOccurs="0" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
||||||||
Schema Declaration |
element org { tei_att.global.attributes, tei_att.typed.attributes, tei_att.editLike.attributes, tei_att.sortable.attributes, attribute role { list { + } }?, ( tei_model.headLike*, ( tei_model.pLike* | ( tei_model.labelLike | tei_model.nameLike | tei_model.placeLike | tei_model.orgPart | tei_model.milestoneLike )* ), ( tei_model.noteLike | tei_model.biblLike | linkGrp | link | tei_ptr )*, tei_model.personLike* ) }⚓ |
<orgName> (organization name) contains an organizational name. [13.2.2. Organizational Names] | |
Module | namesdates |
Attributes | att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) att.global (xml:id, @n, @xml:lang, @xml:base, @xml:space) att.global.rendition (@rend, @style, @rendition) att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select) att.global.facs (@facs) att.global.change (@change) att.global.responsibility (@cert, @resp) att.global.source (@source) |
Member of | |
Contained by | |
May contain | |
Example |
About a year back, a question of considerable interest was agitated in the <orgName key="PAS1" type="voluntary">
<placeName key="PEN">Pennsyla.</placeName> Abolition Society
</orgName> [...]
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element orgName { tei_att.global.attribute.n, tei_att.global.attribute.xmllang, tei_att.global.attribute.xmlbase, tei_att.global.attribute.xmlspace, tei_att.global.rendition.attribute.rend, tei_att.global.rendition.attribute.style, tei_att.global.rendition.attribute.rendition, tei_att.global.linking.attribute.corresp, tei_att.global.linking.attribute.synch, tei_att.global.linking.attribute.sameAs, tei_att.global.linking.attribute.copyOf, tei_att.global.linking.attribute.next, tei_att.global.linking.attribute.prev, tei_att.global.linking.attribute.exclude, tei_att.global.linking.attribute.select, tei_att.global.facs.attribute.facs, tei_att.global.change.attribute.change, tei_att.global.responsibility.attribute.cert, tei_att.global.responsibility.attribute.resp, tei_att.global.source.attribute.source, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<origDate> (origin date) contains any form of date, used to identify the date of origin for a manuscript, manuscript part, or other object. [10.3.1. Origination] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) att.editLike (@evidence, @instant) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<origDate notBefore="-0300"
notAfter="-0200">3rd century BCE</origDate>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.phrase"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Schema Declaration |
element origDate { tei_att.global.attributes, tei_att.datable.attributes, tei_att.dimensions.attributes, tei_att.editLike.attributes, tei_att.typed.attributes, ( text | tei_model.gLike | tei_model.phrase | tei_model.global )* }⚓ |
<origPlace> (origin place) contains any form of place name, used to identify the place of origin for a manuscript, manuscript part, or other object. [10.3.1. Origination] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Note |
The type attribute may be used to distinguish different kinds of ‘origin’, for example original place of publication, as opposed to original place of printing. |
Example |
<origPlace>Birmingham</origPlace>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element origPlace { tei_att.global.attributes, tei_att.naming.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<origin> (origin) contains any descriptive or other information concerning the origin of a manuscript, manuscript part, or other object. [10.8. History] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.editLike (@evidence, @instant) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Contained by |
msdescription: history
|
May contain | |
Example |
<origin notBefore="1802" notAfter="1845"
evidence="internal" resp="#AMH">Copied in <name type="origPlace">Derby</name>, probably from an
old Flemish original, between 1802 and 1845, according to <persName xml:id="AMH">Anne-Mette Hansen</persName>.
</origin>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element origin { tei_att.global.attributes, tei_att.editLike.attributes, tei_att.datable.attributes, tei_macro.specialPara }⚓ |
<p> (paragraph) marks paragraphs in prose. [3.1. Paragraphs 7.2.5. Speech Contents] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) att.fragmentable (@part) att.written (@hand) |
Member of | |
Contained by |
figures: figure
header: availability editorialDecl encodingDesc langUsage normalization prefixDef projectDesc publicationStmt sourceDesc
msdescription: acquisition decoDesc handDesc layout layoutDesc msContents msDesc msItem objectDesc origin physDesc provenance support supportDesc surrogates
namesdates: event occupation org person place
|
May contain | |
Example |
<p>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>
|
Schematron |
<sch:report test="(ancestor::tei:ab or ancestor::tei:p) and not( ancestor::tei:floatingText
|parent::tei:exemplum |parent::tei:item |parent::tei:note |parent::tei:q
|parent::tei:quote |parent::tei:remarks |parent::tei:said |parent::tei:sp
|parent::tei:stage |parent::tei:cell |parent::tei:figure )"> Abstract model violation:
Paragraphs may not occur inside other paragraphs or ab elements.
</sch:report>
|
Schematron |
<sch:report test="(ancestor::tei:l or ancestor::tei:lg) and not( ancestor::tei:floatingText
|parent::tei:figure |parent::tei:note )"> Abstract model violation: Lines may not
contain higher-level structural elements such as div, p, or ab, unless p is a child
of figure or note, or is a descendant of floatingText.
</sch:report>
|
Content model |
<content> <macroRef key="macro.paraContent"/> </content> ⚓ |
Schema Declaration |
element p { tei_att.global.attributes, tei_att.declaring.attributes, tei_att.fragmentable.attributes, tei_att.written.attributes, tei_macro.paraContent }⚓ |
<persName> (personal name) contains a proper noun or proper-noun phrase referring to a person, possibly including one or more of the person's forenames, surnames, honorifics, added names, etc. [13.2.1. Personal Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<persName>
<forename>Edward</forename>
<forename>George</forename>
<surname type="linked">Bulwer-Lytton</surname>, <roleName>Baron Lytton of
<placeName>Knebworth</placeName>
</roleName>
</persName>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element persName { tei_att.global.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<person> (person) provides information about an identifiable individual, for example a participant in a language interaction, or a person referred to in a historical source. [13.3.2. The Person Element 15.2.2. The Participant Description] | |||||||||||||||||||||||||||||||||
Module | namesdates | ||||||||||||||||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.editLike (@evidence, @instant) att.sortable (@sortKey)
|
||||||||||||||||||||||||||||||||
Member of | |||||||||||||||||||||||||||||||||
Contained by |
namesdates: listPerson org
|
||||||||||||||||||||||||||||||||
May contain | |||||||||||||||||||||||||||||||||
Note |
May contain either a prose description organized as paragraphs, or a sequence of more specific demographic elements drawn from the model.personPart class. |
||||||||||||||||||||||||||||||||
Example |
<person sex="F" age="adult">
<p>Female respondent, well-educated, born in Shropshire UK, 12 Jan 1950, of unknown occupation.
Speaks French fluently. Socio-Economic
status B2.</p>
</person>
|
||||||||||||||||||||||||||||||||
Example |
<person sex="intersex" role="god"
age="immortal">
<persName>Hermaphroditos</persName>
<persName xml:lang="grc">Ἑρμαφρόδιτος</persName>
</person>
|
||||||||||||||||||||||||||||||||
Example |
<person xml:id="Ovi01" sex="M" role="poet">
<persName xml:lang="en">Ovid</persName>
<persName xml:lang="la">Publius Ovidius Naso</persName>
<birth when="-0044-03-20"> 20 March 43 BC <placeName>
<settlement type="city">Sulmona</settlement>
<country key="IT">Italy</country>
</placeName>
</birth>
<death notBefore="0017" notAfter="0018">17 or 18 AD <placeName>
<settlement type="city">Tomis (Constanta)</settlement>
<country key="RO">Romania</country>
</placeName>
</death>
</person>
|
||||||||||||||||||||||||||||||||
Example | The following exemplifies an adaptation of the vCard standard to indicate an unknown
gender for a fictional character.
<person xml:id="ariel" gender="U">
<persName>Ariel</persName>
<note>Character in <title level="m">The Tempest</title>.</note>
</person>
|
||||||||||||||||||||||||||||||||
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.personPart"/> <classRef key="model.global"/> <elementRef key="ptr"/> </alternate> </alternate> </content> ⚓ |
||||||||||||||||||||||||||||||||
Schema Declaration |
element person { tei_att.global.attributes, tei_att.editLike.attributes, tei_att.sortable.attributes, attribute role { list { + } }?, attribute sex { list { + } }?, attribute gender { list { + } }?, attribute age { text }?, ( tei_model.pLike+ | ( tei_model.personPart | tei_model.global | tei_ptr )* ) }⚓ |
<physDesc> (physical description) contains a full physical description of a manuscript, manuscript part, or other object optionally subdivided using more specialized elements from the model.physDescPart class. [10.7. Physical Description] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: msDesc
|
May contain |
core: p
msdescription: decoDesc handDesc objectDesc
|
Example |
<physDesc>
<objectDesc form="codex">
<supportDesc material="perg">
<support>Parchment.</support>
<extent>i + 55 leaves
<dimensions scope="all" type="leaf"
unit="inch">
<height>7¼</height>
<width>5⅜</width>
</dimensions>
</extent>
</supportDesc>
<layoutDesc>
<layout columns="2">In double columns.</layout>
</layoutDesc>
</objectDesc>
<handDesc>
<p>Written in more than one hand.</p>
</handDesc>
<decoDesc>
<p>With a few coloured capitals.</p>
</decoDesc>
</physDesc>
|
Content model |
<content> <sequence> <classRef key="model.pLike" minOccurs="0" maxOccurs="unbounded"/> <classRef key="model.physDescPart" expand="sequenceOptional"/> </sequence> </content> ⚓ |
Schema Declaration |
element physDesc { tei_att.global.attributes, ( tei_model.pLike*, tei_objectDesc?, tei_handDesc?, tei_decoDesc? ) }⚓ |
<place> (place) contains data about a geographic location [13.3.4. Places] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.editLike (@evidence, @instant) att.sortable (@sortKey) |
Member of | |
Contained by | |
May contain | |
Example |
<place>
<country>Lithuania</country>
<country xml:lang="lt">Lietuva</country>
<place>
<settlement>Vilnius</settlement>
</place>
<place>
<settlement>Kaunas</settlement>
</place>
</place>
|
Content model |
<content> <sequence> <classRef key="model.headLike" minOccurs="0" maxOccurs="unbounded"/> <alternate> <classRef key="model.pLike" minOccurs="0" maxOccurs="unbounded"/> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.labelLike"/> <classRef key="model.placeStateLike"/> <classRef key="model.eventLike"/> <elementRef key="name"/> </alternate> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.noteLike"/> <classRef key="model.biblLike"/> <elementRef key="idno"/> <elementRef key="ptr"/> <elementRef key="linkGrp"/> <elementRef key="link"/> </alternate> <alternate minOccurs="0" maxOccurs="unbounded"> <classRef key="model.placeLike"/> <elementRef key="listPlace"/> </alternate> </sequence> </content> ⚓ |
Schema Declaration |
element place { tei_att.global.attributes, tei_att.typed.attributes, tei_att.editLike.attributes, tei_att.sortable.attributes, ( tei_model.headLike*, ( tei_model.pLike* | ( tei_model.labelLike | tei_model.placeStateLike | tei_model.eventLike | tei_name )* ), ( tei_model.noteLike | tei_model.biblLike | tei_idno | tei_ptr | linkGrp | link )*, ( tei_model.placeLike | tei_listPlace )* ) }⚓ |
<placeName> (place name) contains an absolute or relative place name. [13.2.3. Place Names] | |
Module | namesdates |
Attributes | att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
|
May contain | |
Example |
<placeName>
<settlement>Rochester</settlement>
<region>New York</region>
</placeName>
|
Example |
<placeName>
<geogName>Arrochar Alps</geogName>
<region>Argylshire</region>
</placeName>
|
Example |
<placeName>
<measure>10 miles</measure>
<offset>Northeast of</offset>
<settlement>Attica</settlement>
</placeName>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element placeName { tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.global.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<prefixDef> (prefix definition) defines a prefixing scheme used in teidata.pointer values, showing how abbreviated URIs using the scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] | |||||||||
Module | header | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.patternReplacement (@matchPattern, @replacementPattern)
|
||||||||
Contained by |
header: listPrefixDef
|
||||||||
May contain |
core: p
|
||||||||
Note |
The abbreviated pointer may be dereferenced to produce 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 pointing attribute occurs to form an absolute URI in the usual manner as prescribed by XML Base. |
||||||||
Example |
<prefixDef ident="ref"
matchPattern="([a-z]+)"
replacementPattern="../../references/references.xml#$1">
<p> In the context of this project, private URIs with
the prefix "ref" point to <gi>div</gi> elements in
the project's global references.xml file.
</p>
</prefixDef>
|
||||||||
Content model |
<content> <classRef key="model.pLike" minOccurs="0" maxOccurs="unbounded"/> </content> ⚓ |
||||||||
Schema Declaration |
element prefixDef { tei_att.global.attributes, tei_att.patternReplacement.attributes, attribute ident { text }, tei_model.pLike* }⚓ |
<principal> (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. [2.2.1. The Title Statement] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by | |
May contain | |
Example |
<principal ref="http://viaf.org/viaf/105517912">Gary Taylor</principal>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element principal { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.datable.attributes, tei_macro.phraseSeq.limited }⚓ |
<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. [2.4. The Profile Description 2.1.1. The TEI Header and Its Components] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by | |
May contain | |
Note |
Although the content model permits it, it is rarely meaningful to supply multiple occurrences for any of the child elements of <profileDesc> unless these are documenting multiple texts. |
Example |
<profileDesc>
<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="entertain" degree="high"/>
<purpose type="inform" degree="medium"/>
</textDesc>
<settingDesc>
<setting>
<name>Paris, France</name>
<time>Late 19th century</time>
</setting>
</settingDesc>
</profileDesc>
|
Content model |
<content> <classRef key="model.profileDescPart" minOccurs="0" maxOccurs="unbounded"/> </content> ⚓ |
Schema Declaration |
element profileDesc { tei_att.global.attributes, tei_model.profileDescPart* }⚓ |
<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. [2.3.1. The Project Description 2.3. The Encoding Description 15.3.2. Declarable Elements] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) |
Member of | |
Contained by |
header: encodingDesc
|
May contain |
core: p
|
Example |
<projectDesc>
<p>Texts collected for use in the Claremont Shakespeare Clinic, June 1990</p>
</projectDesc>
|
Content model |
<content> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> </content> ⚓ |
Schema Declaration |
element projectDesc { tei_att.global.attributes, tei_att.declarable.attributes, tei_model.pLike+ }⚓ |
<provenance> (provenance) contains any descriptive or other information concerning a single identifiable episode during the history of a manuscript, manuscript part, or other object after its creation but before its acquisition. [10.8. History] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.typed (@type, @subtype) |
Contained by |
msdescription: history
|
May contain | |
Example |
<provenance>Listed as the property of Lawrence Sterne in 1788.</provenance>
<provenance>Sold at Sothebys in 1899.</provenance>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element provenance { tei_att.global.attributes, tei_att.datable.attributes, tei_att.typed.attributes, tei_macro.specialPara }⚓ |
<ptr> (pointer) defines a pointer to another location. [3.7. Simple Links and Cross-References 16.1. Links] | |
Module | core |
Attributes | att.cReferencing (@cRef) att.declaring (@decls) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.internetMedia (@mimeType) att.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author bibl biblScope cit date desc editor email head item l label name note p pubPlace publisher q quote ref relatedItem resp rs series soCalled term title
figures: figDesc
header: authority distributor edition extent funder language principal publicationStmt sponsor tagUsage
|
May contain | Empty element |
Example |
<ptr target="#p143 #p144"/>
<ptr target="http://www.tei-c.org"/>
<ptr cRef="1.3.4"/>
|
Schematron |
<sch:report test="@target and @cRef">Only one of the
attributes @target and @cRef may be supplied on <sch:name/>.</sch:report>
|
Content model |
<content> <empty/> </content> ⚓ |
Schema Declaration |
element ptr { tei_att.cReferencing.attributes, tei_att.declaring.attributes, tei_att.global.attributes, tei_att.internetMedia.attributes, tei_att.pointing.attributes, tei_att.typed.attributes, empty }⚓ |
<pubPlace> (publication place) contains the name of the place where a bibliographic item was published. [3.12.2.4. Imprint, Size of a Document, and Reprint Information] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) |
Member of | |
Contained by |
core: bibl
header: publicationStmt
|
May contain | |
Example |
<publicationStmt>
<publisher>Oxford University Press</publisher>
<pubPlace>Oxford</pubPlace>
<date>1989</date>
</publicationStmt>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element pubPlace { tei_att.global.attributes, tei_att.naming.attributes, tei_macro.phraseSeq }⚓ |
<publicationStmt> (publication statement) groups information concerning the publication or distribution of an electronic or other text. [2.2.4. Publication, Distribution, Licensing, etc. 2.2. The File Description] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by | |
May contain |
header: authority availability distributor idno
|
Note |
Where a publication statement contains several members of the model.publicationStmtPart.agency or model.publicationStmtPart.detail classes rather than one or more paragraphs or anonymous blocks, care should be taken to ensure that the repeated elements are presented in a meaningful order. It is a conformance requirement that elements supplying information about publication place, address, identifier, availability, and date be given following the name of the publisher, distributor, or authority concerned, and preferably in that order. |
Example |
<publicationStmt>
<publisher>C. Muquardt </publisher>
<pubPlace>Bruxelles & Leipzig</pubPlace>
<date when="1846"/>
</publicationStmt>
|
Example |
<publicationStmt>
<publisher>Chadwyck Healey</publisher>
<pubPlace>Cambridge</pubPlace>
<availability>
<p>Available under licence only</p>
</availability>
<date when="1992">1992</date>
</publicationStmt>
|
Example |
<publicationStmt>
<publisher>Zea Books</publisher>
<pubPlace>Lincoln, NE</pubPlace>
<date>2017</date>
<availability>
<p>This is an open access work licensed under a Creative Commons Attribution 4.0 International
license.</p>
</availability>
<ptr target="http://digitalcommons.unl.edu/zeabook/55"/>
</publicationStmt>
|
Content model |
<content> <alternate> <sequence minOccurs="1" maxOccurs="unbounded"> <classRef key="model.publicationStmtPart.agency"/> <classRef key="model.publicationStmtPart.detail" minOccurs="0" maxOccurs="unbounded"/> </sequence> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> </alternate> </content> ⚓ |
Schema Declaration |
element publicationStmt { tei_att.global.attributes, ( ( tei_model.publicationStmtPart.agency, tei_model.publicationStmtPart.detail* )+ | tei_model.pLike+ ) }⚓ |
<publisher> (publisher) provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.12.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) |
Member of | |
Contained by |
core: bibl
header: publicationStmt
|
May contain | |
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 |
Example |
<imprint>
<pubPlace>Oxford</pubPlace>
<publisher>Clarendon Press</publisher>
<date>1987</date>
</imprint>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element publisher { tei_att.global.attributes, tei_att.canonical.attributes, tei_macro.phraseSeq }⚓ |
<q> (quoted) contains material which is distinguished from the surrounding text using quotation marks or a similar method, 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 but not used. [3.3.3. Quotation] | |||||||||
Module | core | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.ascribed.directed (@toWhom) (att.ascribed (@who))
|
||||||||
Member of | |||||||||
Contained by |
core: author bibl biblScope cit date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
msdescription: acquisition collection institution layout material origDate origPlace origin provenance repository support surrogates
|
||||||||
May contain | |||||||||
Note |
May be used to indicate that a passage is distinguished from the surrounding text 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 such mechanisms as quotation marks. |
||||||||
Example |
It is spelled <q>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>
|
||||||||
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
||||||||
Schema Declaration |
element q { tei_att.global.attributes, tei_att.ascribed.directed.attributes, attribute type { "spoken" | "thought" | "written" | "soCalled" | "foreign" | "distinct" | "term" | "emph" | "mentioned" }?, tei_macro.specialPara }⚓ |
<quote> (quotation) contains a phrase or passage attributed by the narrator or author to some agency external to the text. [3.3.3. Quotation 4.3.1. Grouped Texts] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.msExcerpt (@defective) att.notated (@notation) |
Member of | |
Contained by |
core: author biblScope cit desc editor email head item l label name note p pubPlace publisher q quote ref rs soCalled term title
header: distributor edition extent tagUsage
msdescription: acquisition layout material msItem origPlace origin provenance support surrogates
|
May contain | |
Note |
If a bibliographic citation is supplied for the source of a quotation, the two may be grouped using the <cit> element. |
Example |
Lexicography has shown little sign of being affected by the
work of followers of J.R. Firth, probably best summarized in his
slogan, <quote>You shall know a word by the company it
keeps</quote>
<ref>(Firth, 1957)</ref>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element quote { tei_att.global.attributes, tei_att.typed.attributes, tei_att.msExcerpt.attributes, tei_att.notated.attributes, tei_macro.specialPara }⚓ |
<ref> (reference) defines a reference to another location, possibly modified by additional text or comment. [3.7. Simple Links and Cross-References 16.1. Links] | |
Module | core |
Attributes | att.cReferencing (@cRef) att.declaring (@decls) att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.internetMedia (@mimeType) att.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype) |
Member of | |
Contained by |
core: author bibl biblScope cit date desc editor email head item l label name note p pubPlace publisher q quote ref relatedItem resp rs series soCalled term title
figures: figDesc
header: authority distributor edition extent funder language principal publicationStmt sponsor tagUsage
|
May contain | |
Note |
The target and cRef attributes are mutually exclusive. |
Example |
See especially <ref target="http://www.natcorp.ox.ac.uk/Texts/A02.xml#s2">the second
sentence</ref>
|
Example |
See also <ref target="#locution">s.v. <term>locution</term>
</ref>.
|
Schematron |
<sch:report test="@target and @cRef">Only one of the
attributes @target' and @cRef' may be supplied on <sch:name/>
</sch:report>
|
Content model |
<content> <macroRef key="macro.paraContent"/> </content> ⚓ |
Schema Declaration |
element ref { tei_att.cReferencing.attributes, tei_att.declaring.attributes, tei_att.global.attributes, tei_att.internetMedia.attributes, tei_att.pointing.attributes, tei_att.typed.attributes, tei_macro.paraContent }⚓ |
<repository> (repository) contains the name of a repository within which manuscripts or other objects are stored, possibly forming part of an institution. [10.4. The Manuscript Identifier] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) |
Contained by |
msdescription: msIdentifier
|
May contain | |
Example |
<msIdentifier>
<settlement>Oxford</settlement>
<institution>University of Oxford</institution>
<repository>Bodleian Library</repository>
<idno>MS. Bodley 406</idno>
</msIdentifier>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element repository { tei_att.global.attributes, tei_att.naming.attributes, tei_macro.phraseSeq.limited }⚓ |
<residence> (residence) describes a person's present or past places of residence. [15.2.2. The Participant Description] | |||||||||||
Module | namesdates | ||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.editLike (@evidence, @instant) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (type, @subtype)
|
||||||||||
Member of | |||||||||||
Contained by |
namesdates: person
|
||||||||||
May contain | |||||||||||
Example |
<residence>Childhood in East Africa and long term resident of Glasgow, Scotland.</residence>
|
||||||||||
Example |
<residence notAfter="1997">Mbeni estate, Dzukumura region, Matabele land</residence>
<residence notBefore="1903" notAfter="1996">
<placeName>
<settlement>Glasgow</settlement>
<region>Scotland</region>
</placeName>
</residence>
|
||||||||||
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
||||||||||
Schema Declaration |
element residence { tei_att.global.attributes, tei_att.datable.attributes, tei_att.editLike.attributes, tei_att.naming.attributes, tei_att.typed.attribute.subtype, attribute type { text }?, tei_macro.phraseSeq }⚓ |
<resp> (responsibility) contains a phrase describing the nature of a person's intellectual responsibility, or an organization's role in the production or distribution of a work. [3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Contained by |
core: respStmt
|
May contain | |
Note |
The attribute ref, inherited from the class att.canonical may be used to indicate the kind of responsibility in a normalized form by referring directly to a standardized list of responsibility types, such as that maintained by a naming authority, for example the list maintained at http://www.loc.gov/marc/relators/relacode.html for bibliographic usage. |
Example |
<respStmt>
<resp ref="http://id.loc.gov/vocabulary/relators/com.html">compiler</resp>
<name>Edward Child</name>
</respStmt>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element resp { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.datable.attributes, tei_macro.phraseSeq.limited }⚓ |
<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. May also be used to encode information about individuals or organizations which have played a role in the production or distribution of a bibliographic work. [3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) |
Member of | |
Contained by | |
May contain | |
Example |
<respStmt>
<resp>transcribed from original ms</resp>
<persName>Claus Huitfeldt</persName>
</respStmt>
|
Example |
<respStmt>
<resp>converted to XML encoding</resp>
<name>Alan Morrison</name>
</respStmt>
|
Content model |
<content> <sequence> <alternate> <sequence> <elementRef key="resp" minOccurs="1" maxOccurs="unbounded"/> <classRef key="model.nameLike.agent" minOccurs="1" maxOccurs="unbounded"/> </sequence> <sequence> <classRef key="model.nameLike.agent" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="resp" minOccurs="1" maxOccurs="unbounded"/> </sequence> </alternate> <elementRef key="note" minOccurs="0" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
Schema Declaration |
element respStmt { tei_att.global.attributes, tei_att.canonical.attributes, ( ( ( tei_resp+, tei_model.nameLike.agent+ ) | ( tei_model.nameLike.agent+, tei_resp+ ) ), tei_note* ) }⚓ |
<revisionDesc> (revision description) summarizes the revision history for a file. [2.6. The Revision Description 2.1.1. The TEI Header and Its Components] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.docStatus (@status) |
Contained by |
header: teiHeader
|
May contain |
core: list
|
Note |
If present on this element, the status attribute should indicate the current status of the document. The same attribute may appear on any <change> to record the status at the time of that change. Conventionally <change> elements should be given in reverse date order, with the most recent change at the start of the list. |
Example |
<revisionDesc status="embargoed">
<change when="1991-11-11" who="#LB"> deleted chapter 10 </change>
</revisionDesc>
|
Content model |
<content> <alternate> <elementRef key="list" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="listChange" minOccurs="1" maxOccurs="unbounded"/> <elementRef key="change" minOccurs="1" maxOccurs="unbounded"/> </alternate> </content> ⚓ |
Schema Declaration |
element revisionDesc { tei_att.global.attributes, tei_att.docStatus.attributes, ( tei_list+ | listChange+ | change+ ) }⚓ |
<roleName> (role name) contains a name component which indicates that the referent has a particular role or position in society, such as an official title or rank. [13.2.1. Personal Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Note |
A <roleName> may be distinguished from an <addName> by virtue of the fact that, like a title, it typically exists independently of its holder. |
Example |
<persName>
<forename>William</forename>
<surname>Poulteny</surname>
<roleName>Earl of Bath</roleName>
</persName>
|
Example |
<p>The <roleName role="solicitor_general">S.G.</roleName> is the only national public official,
including the Supreme Court justices, required by statute to be “learned in the law.”</p>
|
Example |
<p>
<persName ref="#NJF">
<roleName role="solicitor_general">Solicitor General</roleName> Noel J. Francisco</persName>,
representing the administration, asserted in rebuttal that there was nothing to disavow
(...)
<persName ref="#NJF">Francisco</persName> had violated the scrupulous standard of candor about the facts and
the law that <roleName role="solicitor_general">S.G.s</roleName>, in Republican and Democratic administrations
alike, have repeatedly said they must honor.
</p>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element roleName { tei_att.global.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<rs> (referencing string) contains a general purpose name or referring string. [13.2.1. Personal Names 3.6.1. Referring Strings] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<q>My dear <rs type="person">Mr. Bennet</rs>, </q> said <rs type="person">his lady</rs>
to him one day,
<q>have you heard that <rs type="place">Netherfield Park</rs> is let at
last?</q>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element rs { tei_att.global.attributes, tei_att.naming.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<series> (series information) contains information about the series in which a book or other bibliographic item has appeared. [3.12.2.1. Analytic, Monographic, and Series Levels] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by |
core: bibl
|
May contain | |
Example |
<series xml:lang="de">
<title level="s">Halbgraue Reihe zur Historischen Fachinformatik</title>
<respStmt>
<resp>Herausgegeben von</resp>
<name type="person">Manfred Thaller</name>
<name type="org">Max-Planck-Institut für Geschichte</name>
</respStmt>
<title level="s">Serie A: Historische Quellenkunden</title>
<biblScope>Band 11</biblScope>
</series>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <elementRef key="title"/> <classRef key="model.ptrLike"/> <elementRef key="editor"/> <elementRef key="respStmt"/> <elementRef key="biblScope"/> <elementRef key="idno"/> <elementRef key="textLang"/> <classRef key="model.global"/> <elementRef key="availability"/> </alternate> </content> ⚓ |
Schema Declaration |
element series { tei_att.global.attributes, ( text | tei_model.gLike | tei_title | tei_model.ptrLike | tei_editor | tei_respStmt | tei_biblScope | tei_idno | textLang | tei_model.global | tei_availability )* }⚓ |
<settlement> (settlement) contains the name of a settlement such as a city, town, or village identified as a single geo-political or administrative unit. [13.2.3. Place Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.naming (@role, @nymRef) (att.canonical (@key, @ref)) att.typed (@type, @subtype) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
|
May contain | |
Example |
<placeName>
<settlement type="town">Glasgow</settlement>
<region>Scotland</region>
</placeName>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element settlement { tei_att.global.attributes, tei_att.naming.attributes, tei_att.typed.attributes, tei_att.datable.attributes, tei_macro.phraseSeq }⚓ |
<soCalled> (so called) contains a word or phrase for which the author or narrator indicates a disclaiming of responsibility, for example by the use of scare quotes or italics. [3.3.3. Quotation] | |
Module | core |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Member of | |
Contained by | |
May contain | |
Example |
To edge his way along
the crowded paths of life, warning all human sympathy to keep its distance, was what
the
knowing ones call <soCalled>nuts</soCalled> to Scrooge.
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element soCalled { tei_att.global.attributes, tei_macro.phraseSeq }⚓ |
<sourceDesc> (source description) describes the source(s) from which an electronic text was derived or generated, typically a bibliographic description in the case of a digitized text, or a phrase such as "born digital" for a text which has no previous existence. [2.2.7. The Source Description] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) |
Contained by | |
May contain | |
Example |
<sourceDesc>
<bibl>
<title level="a">The Interesting story of the Children in the Wood</title>. In
<author>Victor E Neuberg</author>, <title>The Penny Histories</title>.
<publisher>OUP</publisher>
<date>1968</date>. </bibl>
</sourceDesc>
|
Example |
<sourceDesc>
<p>Born digital: no previous source exists.</p>
</sourceDesc>
|
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <alternate minOccurs="1" maxOccurs="unbounded"> <classRef key="model.biblLike"/> <classRef key="model.sourceDescPart"/> <classRef key="model.listLike"/> </alternate> </alternate> </content> ⚓ |
Schema Declaration |
element sourceDesc { tei_att.global.attributes, tei_att.declarable.attributes, ( tei_model.pLike+ | ( tei_model.biblLike | tei_model.sourceDescPart | tei_model.listLike )+ ) }⚓ |
<sponsor> (sponsor) specifies the name of a sponsoring organization or institution. [2.2.1. The Title Statement] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) |
Member of | |
Contained by | |
May contain | |
Note |
Sponsors give their intellectual authority to a project; they are to be distinguished from funders (see element <funder>), who provide the funding but do not necessarily take intellectual responsibility. |
Example |
<sponsor>Association for Computers and the Humanities</sponsor>
<sponsor>Association for Computational Linguistics</sponsor>
<sponsor ref="http://www.allc.org/">Association for Literary and Linguistic Computing</sponsor>
|
Content model |
<content> <macroRef key="macro.phraseSeq.limited"/> </content> ⚓ |
Schema Declaration |
element sponsor { tei_att.global.attributes, tei_att.canonical.attributes, tei_att.datable.attributes, tei_macro.phraseSeq.limited }⚓ |
<support> (support) contains a description of the materials etc. which make up the physical support for the written part of a manuscript or other object. [10.7.1. Object Description] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: supportDesc
|
May contain | |
Example |
<objectDesc form="roll">
<supportDesc>
<support> Parchment roll with <material>silk</material> ribbons.
</support>
</supportDesc>
</objectDesc>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element support { tei_att.global.attributes, tei_macro.specialPara }⚓ |
<supportDesc> (support description) groups elements describing the physical support for the written part of a manuscript or other object. [10.7.1. Object Description] | |||||||||
Module | msdescription | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||||
Contained by |
msdescription: objectDesc
|
||||||||
May contain | |||||||||
Example |
<supportDesc>
<support> Parchment roll with <material>silk</material> ribbons.
</support>
</supportDesc>
|
||||||||
Content model |
<content> <alternate> <classRef key="model.pLike" minOccurs="1" maxOccurs="unbounded"/> <sequence> <elementRef key="support" minOccurs="0"/> <elementRef key="extent" minOccurs="0"/> <elementRef key="foliation" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="collation" minOccurs="0"/> <elementRef key="condition" minOccurs="0"/> </sequence> </alternate> </content> ⚓ |
||||||||
Schema Declaration |
element supportDesc { tei_att.global.attributes, attribute material { "paper" | "parch" | "mixed" }?, ( tei_model.pLike+ | ( tei_support?, tei_extent?, foliation*, collation?, condition? ) ) }⚓ |
<surname> (surname) contains a family (inherited) name, as opposed to a given, baptismal, or nick name. [13.2.1. Personal Names] | |
Module | namesdates |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.personal (@full, @sort) (att.naming (@role, @nymRef) (att.canonical (@key, @ref)) ) att.typed (@type, @subtype) |
Member of | |
Contained by | |
May contain | |
Example |
<surname type="combine">St John Stevas</surname>
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element surname { tei_att.global.attributes, tei_att.personal.attributes, tei_att.typed.attributes, tei_macro.phraseSeq }⚓ |
<surrogates> (surrogates) contains information about any representations of the manuscript or other object being described which may exist in the holding institution or elsewhere. [10.9. Additional Information] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
msdescription: additional
|
May contain | |
Example |
<surrogates>
<bibl>
<title type="gmd">diapositive</title>
<idno>AM 74 a, fol.</idno>
<date>May 1984</date>
</bibl>
<bibl>
<title type="gmd">b/w prints</title>
<idno>AM 75 a, fol.</idno>
<date>1972</date>
</bibl>
</surrogates>
|
Content model |
<content> <macroRef key="macro.specialPara"/> </content> ⚓ |
Schema Declaration |
element surrogates { tei_att.global.attributes, tei_macro.specialPara }⚓ |
<tagUsage> (element usage) documents the usage of a specific element within a specified document. [2.3.4. The Tagging Declaration] | |||||||||||||||||||
Module | header | ||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.datcat (@datcat, @valueDatcat, @targetDatcat)
|
||||||||||||||||||
Contained by |
header: namespace
|
||||||||||||||||||
May contain | |||||||||||||||||||
Example |
<tagsDecl partial="true">
<rendition xml:id="it" scheme="css"
selector="foreign, hi"> font-style: italic; </rendition>
<!-- ... -->
<namespace name="http://www.tei-c.org/ns/1.0">
<tagUsage gi="hi" occurs="28" withId="2"> Used to mark English words italicized in the copy text.</tagUsage>
<tagUsage gi="foreign">Used to mark non-English words in the copy text.</tagUsage>
<!-- ... -->
</namespace>
</tagsDecl>
|
||||||||||||||||||
Content model |
<content> <macroRef key="macro.limitedContent"/> </content> ⚓ |
||||||||||||||||||
Schema Declaration |
element tagUsage { tei_att.global.attributes, tei_att.datcat.attributes, attribute gi { text }, attribute occurs { text }?, attribute withId { text }?, tei_macro.limitedContent }⚓ |
<tagsDecl> (tagging declaration) provides detailed information about the tagging applied to a document. [2.3.4. The Tagging Declaration 2.3. The Encoding Description] | |||||||||
Module | header | ||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source))
|
||||||||
Member of | |||||||||
Contained by |
header: encodingDesc
|
||||||||
May contain |
header: namespace
|
||||||||
Example |
<tagsDecl partial="true">
<rendition xml:id="rend-it" scheme="css"
selector="emph, hi, name, title">font-style: italic;</rendition>
<namespace name="http://www.tei-c.org/ns/1.0">
<tagUsage gi="hi" occurs="467"/>
<tagUsage gi="title" occurs="45"/>
</namespace>
<namespace name="http://docbook.org/ns/docbook">
<tagUsage gi="para" occurs="10"/>
</namespace>
</tagsDecl> If the partial attribute were not specified here, the implication would be that the document in
question contains only <hi>, <title>, and <para> elements. |
||||||||
Content model |
<content> <sequence> <elementRef key="rendition" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="namespace" minOccurs="0" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
||||||||
Schema Declaration |
element tagsDecl { tei_att.global.attributes, attribute partial { text }?, ( rendition*, tei_namespace* ) }⚓ |
<teiHeader> (TEI header) supplies descriptive and declarative metadata associated with a digital resource or set of resources. [2.1.1. The TEI Header and Its Components 15.1. Varieties of Composite Text] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by |
textstructure: TEI
|
May contain |
header: encodingDesc fileDesc profileDesc revisionDesc
|
Note |
One of the few elements unconditionally required in any TEI document. |
Example |
<teiHeader>
<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>
|
Content model |
<content> <sequence> <elementRef key="fileDesc"/> <classRef key="model.teiHeaderPart" minOccurs="0" maxOccurs="unbounded"/> <elementRef key="revisionDesc" minOccurs="0"/> </sequence> </content> ⚓ |
Schema Declaration |
element teiHeader { tei_att.global.attributes, ( tei_fileDesc, tei_model.teiHeaderPart*, tei_revisionDesc? ) }⚓ |
<term> (term) contains a single-word, multi-word, or symbolic designation which is regarded as a technical term. [3.4.1. Terms and Glosses] | |
Module | core |
Attributes | att.declaring (@decls) att.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype) att.canonical (@key, @ref) att.sortable (@sortKey) att.cReferencing (@cRef) att.global (xml:id, @n, @xml:lang, @xml:base, @xml:space) att.global.rendition (@rend, @style, @rendition) att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select) att.global.facs (@facs) att.global.change (@change) att.global.responsibility (@cert, @resp) att.global.source (@source) |
Member of | |
Contained by | |
May contain | |
Note |
When this element appears within an <index> element, it is understood to supply the form under which an index entry is to be made for that location. Elsewhere, it is understood simply to indicate that its content is to be regarded as a technical or specialised term. It may be associated with a <gloss> element by means of its ref attribute; alternatively a <gloss> element may point to a <term> element by means of its target attribute. In formal terminological work, there is frequently discussion over whether terms must be atomic or may include multi-word lexical items, symbolic designations, or phraseological units. The <term> element may be used to mark any of these. No position is taken on the philosophical issue of what a term can be; the looser definition simply allows the <term> element to be used by practitioners of any persuasion. As with other members of the att.canonical class, instances of this element occuring in a text may be associated with a canonical definition, either by means of a URI (using the ref attribute), or by means of some system-specific code value (using the key attribute). Because the mutually exclusive target and cRef attributes overlap with the function of the ref attribute, they are deprecated and may be removed at a subsequent release. |
Example |
A computational device that infers structure
from grammatical strings of words is known as a <term>parser</term>, and much of the history
of NLP over the last 20 years has been occupied with the design of parsers.
|
Example |
We may define <term xml:id="TDPV1" rend="sc">discoursal point of view</term> as
<gloss target="#TDPV1">the relationship, expressed
through discourse structure, between the implied author or some other addresser, and
the
fiction.</gloss>
|
Example |
We may define <term ref="#TDPV2" rend="sc">discoursal point of view</term> as
<gloss xml:id="TDPV2">the relationship, expressed
through discourse structure, between the implied author or some other addresser, and
the
fiction.</gloss>
|
Example |
We discuss Leech's concept of <term ref="myGlossary.xml#TDPV2" rend="sc">discoursal point of view</term> below.
|
Content model |
<content> <macroRef key="macro.phraseSeq"/> </content> ⚓ |
Schema Declaration |
element term { tei_att.global.attribute.n, tei_att.global.attribute.xmllang, tei_att.global.attribute.xmlbase, tei_att.global.attribute.xmlspace, tei_att.global.rendition.attribute.rend, tei_att.global.rendition.attribute.style, tei_att.global.rendition.attribute.rendition, tei_att.global.linking.attribute.corresp, tei_att.global.linking.attribute.synch, tei_att.global.linking.attribute.sameAs, tei_att.global.linking.attribute.copyOf, tei_att.global.linking.attribute.next, tei_att.global.linking.attribute.prev, tei_att.global.linking.attribute.exclude, tei_att.global.linking.attribute.select, tei_att.global.facs.attribute.facs, tei_att.global.change.attribute.change, tei_att.global.responsibility.attribute.cert, tei_att.global.responsibility.attribute.resp, tei_att.global.source.attribute.source, tei_att.declaring.attributes, tei_att.pointing.attributes, tei_att.typed.attributes, tei_att.canonical.attributes, tei_att.sortable.attributes, tei_att.cReferencing.attributes, tei_macro.phraseSeq }⚓ |
<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. [4. Default Text Structure 15.1. Varieties of Composite Text] | |
Module | textstructure |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declaring (@decls) att.typed (@type, @subtype) att.written (@hand) |
Member of | |
Contained by |
textstructure: TEI
|
May contain | |
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. |
Example |
<text>
<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>
<front>
<!-- front matter for the whole group -->
</front>
<group>
<text>
<!-- first text -->
</text>
<text>
<!-- second text -->
</text>
</group>
</text>
|
Content model |
<content> <sequence> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> <sequence minOccurs="0"> <elementRef key="front"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> <alternate> <elementRef key="body"/> <elementRef key="group"/> </alternate> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> <sequence minOccurs="0"> <elementRef key="back"/> <classRef key="model.global" minOccurs="0" maxOccurs="unbounded"/> </sequence> </sequence> </content> ⚓ |
Schema Declaration |
element text { tei_att.global.attributes, tei_att.declaring.attributes, tei_att.typed.attributes, tei_att.written.attributes, ( tei_model.global*, ( tei_front, tei_model.global* )?, ( tei_body | group ), tei_model.global*, ( tei_back, tei_model.global* )? ) }⚓ |
<textClass> (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. [2.4.3. The Text Classification] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.declarable (@default) |
Member of | |
Contained by |
header: profileDesc
|
May contain |
header: keywords
|
Example |
<taxonomy>
<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>
|
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <elementRef key="classCode"/> <elementRef key="catRef"/> <elementRef key="keywords"/> </alternate> </content> ⚓ |
Schema Declaration |
element textClass { tei_att.global.attributes, tei_att.declarable.attributes, ( classCode | catRef | tei_keywords )* }⚓ |
<title> (title) contains a title for any kind of work. [3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement] | |||||||||||||||||||||||
Module | core | ||||||||||||||||||||||
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.canonical (@key, @ref) att.datable (@calendar, @period) (att.datable.w3c (@when, @notBefore, @notAfter, @from, @to)) (att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso)) (att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)) att.typed (type, @subtype)
|
||||||||||||||||||||||
Member of | |||||||||||||||||||||||
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs series soCalled term title
figures: figDesc
|
||||||||||||||||||||||
May contain | |||||||||||||||||||||||
Note |
The attributes key and ref, inherited from the class att.canonical may be used to indicate the canonical form for the title; the former, by supplying (for example) the identifier of a record in some external library system; the latter by pointing to an XML element somewhere containing the canonical form of the title. |
||||||||||||||||||||||
Example |
<title>Information Technology and the Research Process: Proceedings of
a conference held at Cranfield Institute of Technology, UK,
18–21 July 1989</title>
|
||||||||||||||||||||||
Example |
<title>Hardy's Tess of the D'Urbervilles: a machine readable
edition</title>
|
||||||||||||||||||||||
Example |
<title type="full">
<title type="main">Synthèse</title>
<title type="sub">an international journal for
epistemology, methodology and history of
science</title>
</title>
|
||||||||||||||||||||||
Content model |
<content> <macroRef key="macro.paraContent"/> </content> ⚓ |
||||||||||||||||||||||
Schema Declaration |
element title { tei_att.global.attributes, tei_att.typed.attribute.subtype, tei_att.canonical.attributes, tei_att.datable.attributes, attribute type { text }?, attribute level { "a" | "m" | "j" | "s" | "u" }?, tei_macro.paraContent }⚓ |
<titleStmt> (title statement) groups information about the title of a work and those responsible for its content. [2.2.1. The Title Statement 2.2. The File Description] | |
Module | header |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) |
Contained by | |
May contain | |
Example |
<titleStmt>
<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>
|
Content model |
<content> <sequence> <elementRef key="title" minOccurs="1" maxOccurs="unbounded"/> <classRef key="model.respLike" minOccurs="0" maxOccurs="unbounded"/> </sequence> </content> ⚓ |
Schema Declaration |
element titleStmt { tei_att.global.attributes, ( tei_title+, tei_model.respLike* ) }⚓ |
<width> (width) contains a measurement of an object along the axis parallel to its bottom, e.g. perpendicular to the spine of a book or codex. [10.3.4. Dimensions] | |
Module | msdescription |
Attributes | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.dimensions (@unit, @quantity, @extent, @precision, @scope) (att.ranging (@atLeast, @atMost, @min, @max, @confidence)) |
Member of | |
Contained by |
core: author bibl biblScope date desc editor email head item l label name note p pubPlace publisher q quote ref resp rs soCalled term title
figures: figDesc
|
May contain | Character data only |
Note |
If used to specify the depth of a non text-bearing portion of some object, for example a monument, this element conventionally refers to the axis facing the observer, and perpendicular to that indicated by the ‘depth’ axis. |
Example |
<width unit="in">4</width>
|
Content model |
<content> <macroRef key="macro.xtext"/> </content> ⚓ |
Schema Declaration |
element width { tei_att.global.attributes, tei_att.dimensions.attributes, tei_macro.xtext }⚓ |
model.addressLike groups elements used to represent a postal or email address. [1. The TEI Infrastructure] | |
Module | tei |
Used by | |
Members |
model.attributable groups elements that contain a word or phrase that can be attributed to a source. [3.3.3. Quotation 4.3.2. Floating Texts] | |
Module | tei |
Used by | |
Members | model.quoteLike[cit quote] |
model.biblLike groups elements containing a bibliographic description. [3.12. Bibliographic Citations and References] | |
Module | tei |
Used by | |
Members | bibl biblFull listBibl msDesc |
model.biblPart groups elements which represent components of a bibliographic description. [3.12. Bibliographic Citations and References] | |
Module | tei |
Used by | |
Members | model.imprintPart[biblScope distributor pubPlace publisher] model.respLike[author editor funder principal respStmt sponsor] availability bibl edition extent msIdentifier relatedItem series |
model.common groups common chunk- and inter-level elements. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.divPart[model.lLike[l] model.pLike[p] lg] model.inter[model.attributable[model.quoteLike[cit quote]] model.biblLike[bibl biblFull listBibl msDesc] model.egLike model.labelLike[desc label] model.listLike[list listEvent listOrg listPerson listPlace] model.oddDecl model.stageLike] q |
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 groups elements containing temporal expressions. [3.6.4. Dates and Times 13.4. Dates] | |
Module | tei |
Used by | |
Members | date |
model.divPart groups paragraph-level elements appearing directly within divisions. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.lLike[l] model.pLike[p] lg |
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 groups elements appearing at the beginning of a text division. [4.2. Elements Common to All Divisions] | |
Module | tei |
Used by | |
Members | model.divTopPart[model.headLike[head]] model.divWrapper |
model.divTopPart groups elements which can occur only at the beginning of a text division. [4.6. Title Pages] | |
Module | tei |
Used by | |
Members | model.headLike[head] |
model.editorialDeclPart groups elements which may be used inside <editorialDecl> and appear multiple times. | |
Module | tei |
Used by | |
Members | normalization |
model.emphLike groups phrase-level elements which are typographically distinct and to which a specific function can be attributed. [3.3. Highlighting and Quotation] | |
Module | tei |
Used by | |
Members | soCalled term title |
model.encodingDescPart groups elements which may be used inside <encodingDesc> and appear multiple times. | |
Module | tei |
Used by | |
Members | editorialDecl listPrefixDef projectDesc tagsDecl |
model.frontPart groups elements which appear at the level of divisions within front or back matter. [7.1. Front and Back Matter ] | |
Module | tei |
Used by | |
Members | model.frontPart.drama divGen listBibl |
model.global groups elements which may appear at any point within a TEI text. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.global.edit model.global.meta model.milestoneLike model.noteLike[note] figure |
model.graphicLike groups elements containing images, formulae, and similar objects. [3.10. Graphics and Other Non-textual Components] | |
Module | tei |
Used by | |
Members | graphic |
model.hiLike groups phrase-level elements which are typographically distinct but to which no specific function can be attributed. [3.3. Highlighting and Quotation] | |
Module | tei |
Used by | |
Members | q |
model.highlighted groups phrase-level elements which are typographically distinct. [3.3. Highlighting and Quotation] | |
Module | tei |
Used by | |
Members | model.emphLike[soCalled term title] model.hiLike[q] |
model.imprintPart groups the bibliographic elements which occur inside imprints. [3.12. Bibliographic Citations and References] | |
Module | tei |
Used by | |
Members | biblScope distributor pubPlace publisher |
model.inter groups elements which can appear either within or between paragraph-like elements. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.attributable[model.quoteLike[cit quote]] model.biblLike[bibl biblFull listBibl msDesc] model.egLike model.labelLike[desc label] model.listLike[list listEvent listOrg listPerson listPlace] model.oddDecl model.stageLike |
model.lLike groups elements representing metrical components such as verse lines. | |
Module | tei |
Used by | |
Members | l |
model.lPart groups phrase-level elements which may appear within verse only. [6.2. Components of the Verse Line] | |
Module | tei |
Used by | |
Members | caesura |
model.limitedPhrase groups phrase-level elements excluding those elements primarily intended for transcription of existing sources. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.emphLike[soCalled term title] model.hiLike[q] model.pPart.data[model.addressLike[email] model.dateLike[date] model.measureLike[height width] model.nameLike[model.nameLike.agent[name orgName persName] model.offsetLike model.persNamePart[addName forename roleName surname] model.placeStateLike[model.placeNamePart[country placeName settlement]] idno rs]] model.pPart.editorial model.pPart.msdesc[dimensions locus material origDate origPlace] model.phrase.xml model.ptrLike[ptr ref] |
model.listLike groups list-like elements. [3.8. Lists] | |
Module | tei |
Used by | |
Members | list listEvent listOrg listPerson listPlace |
model.measureLike groups elements which denote a number, a quantity, a measurement, or similar piece of text that conveys some numerical meaning. [3.6.3. Numbers and Measures] | |
Module | tei |
Used by | |
Members | height width |
model.msItemPart groups elements which can appear within a manuscript item description. | |
Module | tei |
Used by | |
Members | model.biblLike[bibl biblFull listBibl msDesc] model.msQuoteLike[title] model.quoteLike[cit quote] model.respLike[author editor funder principal respStmt sponsor] idno msItem |
model.msQuoteLike groups elements which represent passages such as titles quoted from a manuscript as a part of its description. | |
Module | tei |
Used by | |
Members | title |
model.nameLike groups elements which name or refer to a person, place, or organization. | |
Module | tei |
Used by | |
Members | model.nameLike.agent[name orgName persName] model.offsetLike model.persNamePart[addName forename roleName surname] model.placeStateLike[model.placeNamePart[country placeName settlement]] idno rs |
Note |
A superset of the naming elements that may appear in datelines, addresses, statements of responsibility, etc. |
model.nameLike.agent groups elements which contain names of individuals or corporate bodies. [3.6. Names, Numbers, Dates, Abbreviations, and Addresses] | |
Module | tei |
Used by | |
Members | name orgName persName |
Note |
This class is used in the content model of elements which reference names of people or organizations. |
model.noteLike groups globally-available note-like elements. [3.9. Notes, Annotation, and Indexing] | |
Module | tei |
Used by | |
Members | note |
model.orgPart groups elements which form part of the description of an organization. | |
Module | tei |
Used by | |
Members | model.eventLike[event listEvent] listOrg listPerson listPlace |
model.pLike groups paragraph-like elements. | |
Module | tei |
Used by | |
Members | p |
model.pLike.front groups paragraph-like elements which can occur as direct constituents of front matter. [4.6. Title Pages] | |
Module | tei |
Used by | |
Members | head |
model.pPart.data groups phrase-level elements containing names, dates, numbers, measures, and similar data. [3.6. Names, Numbers, Dates, Abbreviations, and Addresses] | |
Module | tei |
Used by | |
Members | model.addressLike[email] model.dateLike[date] model.measureLike[height width] model.nameLike[model.nameLike.agent[name orgName persName] model.offsetLike model.persNamePart[addName forename roleName surname] model.placeStateLike[model.placeNamePart[country placeName settlement]] idno rs] |
model.pPart.edit groups phrase-level elements for simple editorial correction and transcription. [3.5. Simple Editorial Changes] | |
Module | tei |
Used by | |
Members | model.pPart.editorial model.pPart.transcriptional |
model.pPart.msdesc groups phrase-level elements used in manuscript description. [10. Manuscript Description] | |
Module | tei |
Used by | |
Members | dimensions locus material origDate origPlace |
model.persNamePart groups elements which form part of a personal name. [13.2.1. Personal Names] | |
Module | namesdates |
Used by | |
Members | addName forename roleName surname |
model.persStateLike groups elements describing changeable characteristics of a person which have a definite duration, for example occupation, residence, or name. | |
Module | tei |
Used by | |
Members | nationality occupation persName residence |
Note |
These characteristics of an individual are typically a consequence of their own action or that of others. |
model.personPart groups elements which form part of the description of a person. [15.2.2. The Participant Description] | |
Module | tei |
Used by | |
Members | model.biblLike[bibl biblFull listBibl msDesc] model.eventLike[event listEvent] model.persStateLike[nationality occupation persName residence] birth death idno name |
model.phrase groups elements which can occur at the level of individual words or phrases. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | model.graphicLike[graphic] model.highlighted[model.emphLike[soCalled term title] model.hiLike[q]] model.lPart[caesura] model.pPart.data[model.addressLike[email] model.dateLike[date] model.measureLike[height width] model.nameLike[model.nameLike.agent[name orgName persName] model.offsetLike model.persNamePart[addName forename roleName surname] model.placeStateLike[model.placeNamePart[country placeName settlement]] idno rs]] model.pPart.edit[model.pPart.editorial model.pPart.transcriptional] model.pPart.msdesc[dimensions locus material origDate origPlace] model.phrase.xml model.ptrLike[ptr ref] model.segLike model.specDescLike |
Note |
This class of elements can occur within paragraphs, list items, lines of verse, etc. |
model.physDescPart groups specialized elements forming part of the physical description of a manuscript or similar written source. | |
Module | msdescription |
Used by | |
Members | decoDesc handDesc objectDesc |
model.placeNamePart groups elements which form part of a place name. [13.2.3. Place Names] | |
Module | tei |
Used by | |
Members | country placeName settlement |
model.placeStateLike groups elements which describe changing states of a place. | |
Module | tei |
Used by | |
Members | model.placeNamePart[country placeName settlement] |
model.profileDescPart groups elements which may be used inside <profileDesc> and appear multiple times. | |
Module | tei |
Used by | |
Members | langUsage textClass |
model.ptrLike groups elements used for purposes of location and reference. [3.7. Simple Links and Cross-References] | |
Module | tei |
Used by | |
Members | ptr ref |
model.publicationStmtPart.agency groups the child elements of a <publicationStmt> element of the TEI header that indicate an authorising agent. [2.2.4. Publication, Distribution, Licensing, etc.] | |
Module | tei |
Used by | |
Members | authority distributor publisher |
Note |
The ‘agency’ child elements, while not required, are required if one of the ‘detail’ child elements is to be used. It is not valid to have a ‘detail’ child element without a preceding ‘agency’ child element. See also model.publicationStmtPart.detail. |
model.publicationStmtPart.detail groups the agency-specific child elements of the <publicationStmt> element of the TEI header. [2.2.4. Publication, Distribution, Licensing, etc.] | |
Module | tei |
Used by | |
Members | model.ptrLike[ptr ref] availability date idno pubPlace |
Note |
A ‘detail’ child element may not occur unless an ‘agency’ child element precedes it. See also model.publicationStmtPart.agency. |
model.resource groups separate elements which constitute the content of a digital resource, as opposed to its metadata. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Members | facsimile text |
model.teiHeaderPart groups high level elements which may appear more than once in a TEI header. | |
Module | tei |
Used by | |
Members | encodingDesc profileDesc |
model.titlepagePart groups elements which can occur as direct constituents of a title page, such as <docTitle>, <docAuthor>, <docImprint>, or <epigraph>. [4.6. Title Pages] | |
Module | tei |
Used by | |
Members | graphic |
att.anchoring (anchoring) provides attributes for use on annotations, e.g. notes and groups of notes describing the existence and position of an anchor for annotations. | |||||||||||||||||||
Module | tei | ||||||||||||||||||
Members | note | ||||||||||||||||||
Attributes |
|
||||||||||||||||||
Example |
<p>(...) tamen reuerendos dominos archiepiscopum et canonicos Leopolienses
necnon episcopum in duplicibus Quatuortemporibus<anchor xml:id="A55234"/> totaliter expediui...</p>
<!-- elsewhere in the document -->
<noteGrp targetEnd="#A55234">
<note xml:lang="en"> Quatuor Tempora, so called dry fast days.
</note>
<note xml:lang="pl"> Quatuor Tempora, tzw. Suche dni postne.
</note>
</noteGrp>
|
att.ascribed provides attributes for elements representing speech or action that can be ascribed to a specific individual. [3.3.3. Quotation 8.3. Elements Unique to Spoken Texts] | |||||||||||
Module | tei | ||||||||||
Members | att.ascribed.directed[q] | ||||||||||
Attributes |
|
att.ascribed.directed provides attributes for elements representing speech or action that can be directed at a group or individual. [3.3.3. Quotation 8.3. Elements Unique to Spoken Texts] | |||||||||||
Module | tei | ||||||||||
Members | q | ||||||||||
Attributes | att.ascribed (@who)
|
att.cReferencing provides attributes that may be used to supply a canonical reference as a means of identifying the target of a pointer. | |||||||||
Module | tei | ||||||||
Members | ptr ref term | ||||||||
Attributes |
|
att.canonical provides attributes that can be used to associate a representation such as a name or title with canonical information about the object being named or referenced. [13.1.1. Linking Names and Their Referents] | |||||||||||||||||||||
Module | tei | ||||||||||||||||||||
Members | att.naming[att.personal[addName forename name orgName persName placeName roleName surname] author birth collection country death editor event institution nationality occupation origPlace pubPlace repository residence rs settlement] authority date distributor funder material principal publisher resp respStmt sponsor term title | ||||||||||||||||||||
Attributes |
|
||||||||||||||||||||
Example | In this contrived example, a canonical reference to the same organisation is provided
in four different ways.
<author n="1">
<name ref="http://nzetc.victoria.ac.nz/tm/scholarly/name-427308.html"
type="organisation">New Zealand Parliament, Legislative Council</name>
</author>
<author n="2">
<name ref="nzvn:427308"
type="organisation">New Zealand Parliament, Legislative Council</name>
</author>
<author n="3">
<name ref="./named_entities.xml#o427308"
type="organisation">New Zealand Parliament, Legislative Council</name>
</author>
<author n="4">
<name key="name-427308"
type="organisation">New Zealand Parliament, Legislative Council</name>
</author> The first presumes the availability of an internet connection and a processor that
can resolve a URI (most can). The second requires, in addition, a <prefixDef> that declares how the nzvm prefix should be interpreted. The third does not require an internet connection,
but does require that a file named named_entities.xml be in the same directory as the TEI document. The fourth requires that an entire
external system for key resolution be available. |
||||||||||||||||||||
Note |
The key attribute is more flexible and general-purpose, but its use in interchange requires that documentation about how the key is to be resolved be sent to the recipient of the TEI document. In contrast values of the ref attribute are resolved using the widely accepted protocols for a URI, and thus less documentation, if any, is likely required by the recipient in data interchange. These guidelines provide no semantic basis or suggested precedence when both key and ref are provided. For this reason simultaneous use of both is not recommended unless documentation explaining the use is provided, probably in an ODD customizaiton, for interchange. |
att.datable provides attributes for normalization of elements that contain dates, times, or datable events. [3.6.4. Dates and Times 13.4. Dates] | |||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||
Members | acquisition author birth country date death editor event funder idno name nationality occupation orgName origDate origPlace origin persName placeName principal provenance residence resp settlement sponsor title | ||||||||||||||||||||||
Attributes | att.datable.w3c (@when, @notBefore, @notAfter, @from, @to) att.datable.iso (@when-iso, @notBefore-iso, @notAfter-iso, @from-iso, @to-iso) att.datable.custom (@when-custom, @notBefore-custom, @notAfter-custom, @from-custom, @to-custom, @datingPoint, @datingMethod)
|
||||||||||||||||||||||
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 and att.datable.custom classes. 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.custom provides attributes for normalization of elements that contain datable events to a custom dating system (i.e. other than the Gregorian used by W3 and ISO). [13.4. Dates] | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | namesdates | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Members | att.datable[acquisition author birth country date death editor event funder idno name nationality occupation orgName origDate origPlace origin persName placeName principal provenance residence resp settlement sponsor title] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Attributes |
|
att.datable.iso provides attributes for normalization of elements that contain datable events using the ISO 8601:2004 standard. [3.6.4. Dates and Times 13.4. Dates] | |||||||||||||||||||||||||||||||||||
Module | namesdates | ||||||||||||||||||||||||||||||||||
Members | att.datable[acquisition author birth country date death editor event funder idno name nationality occupation orgName origDate origPlace origin persName placeName principal provenance residence resp settlement sponsor title] | ||||||||||||||||||||||||||||||||||
Attributes |
|
||||||||||||||||||||||||||||||||||
Note |
The value of these attributes should be a normalized representation of the date, time, or combined date & time intended, in any of the standard formats specified by ISO 8601:2004, using the Gregorian calendar. If both when-iso and dur-iso are specified, the values should be interpreted as indicating a span of time by its
starting time (or date) and duration. That is,
<date when-iso="2007-06-01" dur-iso="P8D"/> indicates the same time period as
<date when-iso="2007-06-01/P8D"/>
In providing a ‘regularized’ form, no claim is made that the form in the source text is incorrect; the regularized form is simply that chosen as the main form for purposes of unifying variant forms under a single heading. |
att.datable.w3c provides attributes for normalization of elements that contain datable events conforming to the W3C XML Schema Part 2: Datatypes Second Edition. [3.6.4. Dates and Times 13.4. Dates] | |||||||||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||||||||
Members | att.datable[acquisition author birth country date death editor event funder idno name nationality occupation orgName origDate origPlace origin persName placeName principal provenance residence resp settlement sponsor title] | ||||||||||||||||||||||||||||||||||||
Attributes |
|
||||||||||||||||||||||||||||||||||||
Schematron |
<sch:rule context="tei:*[@when]">
<sch:report test="@notBefore|@notAfter|@from|@to"
role="nonfatal">The @when attribute cannot be used with any other att.datable.w3c
attributes.</sch:report>
</sch:rule>
|
||||||||||||||||||||||||||||||||||||
Schematron |
<sch:rule context="tei:*[@from]">
<sch:report test="@notBefore"
role="nonfatal">The @from and @notBefore attributes cannot be used together.</sch:report>
</sch:rule>
|
||||||||||||||||||||||||||||||||||||
Schematron |
<sch:rule context="tei:*[@to]">
<sch:report test="@notAfter"
role="nonfatal">The @to and @notAfter attributes cannot be used together.</sch:report>
</sch:rule>
|
||||||||||||||||||||||||||||||||||||
Example |
<date from="1863-05-28" to="1863-06-01">28 May through 1 June 1863</date>
|
||||||||||||||||||||||||||||||||||||
Note |
The value of these attributes should be a normalized representation of the date, time, or combined date & time intended, in any of the standard formats specified by XML Schema Part 2: Datatypes Second Edition, using the Gregorian calendar. The most commonly-encountered format for the date portion of a temporal attribute
is Note that this format does not currently permit use of the value 0000 to represent the year 1 BCE; instead the value -0001 should be used. |
att.datcat provides attributes that are used to align XML elements or attributes with the appropriate Data Categories (DCs) defined by an external taxonomy, in this way establishing the identity of information containers and values, and providing means of interpreting them. [9.5.2. Lexical View 18.3. Other Atomic Feature Values] | |||||||||||||||||||
Module | tei | ||||||||||||||||||
Members | tagUsage | ||||||||||||||||||
Attributes |
|
||||||||||||||||||
Example | The example below presents the TEI encoding of the name-value pair <part of speech, common noun> , where the name (key) ‘part of speech’ is abbreviated as ‘POS’, and the value, ‘common noun’ is symbolized by ‘NN’. The entire name-value pair is encoded by means of the element <f>. In TEI XML, that element acts as the container, labeled with the name attribute. Its contents may be complex or simple. In the case at hand, the content
is the symbol ‘NN’.The datcat attribute relates the feature name (i.e., the key) to the data category ‘part of speech’, while the attribute valueDatcat relates the feature value to the data category common noun. Both these data categories should be defined in an external and preferably open
reference taxonomy or ontology.
<fs>
<f name="POS"
datcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3">
<symbol valueDatcat="http://hdl.handle.net/11459/CCR_C-1256_7ec6083c-23d4-224d-6f94-eecbe6861545"
value="NN"/>
</f>
<!-- ... -->
</fs> ‘NN’ is the symbol for common noun used e.g. in the CLAWS-7 tagset defined by the University Centre for Computer Corpus Research on Language at the
University of Lancaster. The very same data category used for tagging an early version
of the British National Corpus, and coming from the BNC Basic (C5) tagset, uses the symbol ‘NN0’ (rather than ‘NN’). Making these values semantically interoperable would be extremely difficult without
a human expert if they were not anchored in a single point of an established reference
taxonomy of morphosyntactic data categories. In the case at hand, the string ‘http://hdl.handle.net/11459/CCR_C-1256_7ec6083c-23d4-224d-6f94-eecbe6861545’ is both a persistent identifier of the data category in question, as well as a pointer
to a shared definition of common noun.While the symbols ‘NN’, ‘NN0’, and many others (often coming from languages other than English) are implicitly
members of the container category ‘part of speech’, it is sometimes useful not to rely on such an implicit relationship but rather use
an explicit identifier for that data category, to distinguish it from other morphosyntactic
data categories, such as gender, tense, etc. For that purpose, the above example uses
the datcat attribute to reference a definition of part of speech. The reference taxonomy in this example is the CLARIN Concept Registry.If the feature structure markup exemplified above is to be repeated many times in
a single document, it is much more efficient to gather the persistent identifiers
in a single place and to only reference them, implicitly or directly, from feature
structure markup. The following example is much more concise than the one above and
relies on the concepts of feature structure declaration and feature value library,
discussed in chapter [[undefined FS]].
<fs>
<f name="POS" fVal="#commonNoun"/>
<!-- ... -->
</fs> The assumption here is that the relevant feature values are collected in a place that
the annotation document in question has access to — preferably, a single document
per linguistic resource, for example an <fsdDecl> that is XIncluded as a sibling of <text> or a child of <encodingDesc>; a <taxonomy> available resource-wide (e.g., in a shared header) is also an option.The example
below presents an <fvLib> element that collects the relevant feature values (most of them omitted). At the
same time, this example shows one way of encoding a tagset, i.e., an established inventory of values of (in the case at hand) morphosyntactic
categories.
<fvLib n="POS values">
<symbol xml:id="commonNoun" value="NN"
datcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3"/>
<symbol xml:id="properNoun" value="NP"
datcat="http://hdl.handle.net/11459/CCR_C-1371_fbebd9ec-a7f4-9a36-d6e9-88ee16b944ae"/>
<!-- ... -->
</fvLib> Note that these Guidelines do not prescribe a specific choice between datcat and valueDatcat in such cases. The former is the generic way of referencing a data category, whereas
the latter is more specific, in that it references a data category that represents
a value. The choice between them comes into play where a single element — or a tight
element complex, such as the <f>/<symbol> complex illustrated above — make it necessary or useful to distinguish between the
container data category and its value. |
||||||||||||||||||
Example | In the context of dictionaries designed with semantic interoperability in mind, the
following example ensures that the <pos> element is interpreted as the same information container as in the case of the example
of <f name="POS"> above.
<gramGrp>
<pos datcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3"
valueDatcat="http://hdl.handle.net/11459/CCR_C-1256_7ec6083c-23d4-224d-6f94-eecbe6861545">NN</pos>
</gramGrp> Efficiency of this type of interoperable markup demands that the references to the
particular data categories should best be provided in a single place within the dictionary
(or a single place within the project), rather than being repeated inside every entry.
For the container elements, this can be achieved at the level of <tagUsage>, although here, the valueDatcat attribute should be used, because it is not the <tagUsage> element that is associated with the relevant data category, but rather the element
<pos> (or <case>, etc.) that is described by <tagUsage>:
<tagsDecl partial="true">
<!-- ... -->
<namespace name="http://www.tei-c.org/ns/1.0">
<tagUsage gi="pos"
targetDatcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3">Contains the part of speech.</tagUsage>
<tagUsage gi="case"
targetDatcat="http://hdl.handle.net/11459/CCR_C-1840_9f4e319c-f233-6c90-9117-7270e215f039">Contains information about the grammatical case that the described form is inflected
for.</tagUsage>
<!-- ... -->
</namespace>
</tagsDecl> Another possibility is to shorten the URIs by means of the <prefixDef> mechanism, as illustrated below:
<listPrefixDef>
<prefixDef ident="ccr" matchPattern="pos"
replacementPattern="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3"/>
<prefixDef ident="ccr" matchPattern="adj"
replacementPattern="http://hdl.handle.net/11459/CCR_C-1230_23653c21-fca1-edf8-fd7c-3df2d6499157"/>
</listPrefixDef>
<!-- ... -->
<entry>
<!--...-->
<form>
<orth>isotope</orth>
</form>
<gramGrp>
<pos datcat="ccr:pos"
valueDatcat="ccr:adj">adj</pos>
</gramGrp>
<!--...-->
</entry> This mechanism creates implications that are not always wanted, among others, in the
case at hand, suggesting that the identifiers ‘pos’ and ‘adj’ belong to a namespace associated with the CLARIN Concept Repository (CCR), whereas
that is solely a shorthand mechanism whose scope is the current resource. Documenting
this clearly in the header of the dictionary is therefore advised.Yet another possibility
is to associate the information about the relationship between a TEI markup element
and the data category that it is intended to model already at the level of modeling
the dictionary resource, that is, at the level of the ODD, in <equiv> element that is a child of <elementSpec> or <attDef>. |
||||||||||||||||||
Example | The targetDatcat attribute is designed to be used in, e.g., feature structure declarations, and is
analogous to the targetLang attribute of the att.pointing class, in that it describes the object that is being referenced, rather than the
referencing object.
<fDecl name="POS"
targetDatcat="http://hdl.handle.net/11459/CCR_C-396_5a972b93-2294-ab5c-a541-7c344c5f26c3">
<fDescr>part of speech (morphosyntactic category)</fDescr>
<vRange>
<vAlt>
<symbol value="NN"
datcat="http://hdl.handle.net/11459/CCR_C-1256_7ec6083c-23d4-224d-6f94-eecbe6861545"/>
<symbol value="NP"
datcat="http://hdl.handle.net/11459/CCR_C-1371_fbebd9ec-a7f4-9a36-d6e9-88ee16b944ae"/>
<!-- ... -->
</vAlt>
</vRange>
</fDecl> Above, the <fDecl> uses targetDatcat, because if it were to use datcat, it would be asserting that it is an instance of the container data category part of speech, whereas it is not — it models a container (<f>) that encodes a part of speech. Note also that it is the <f> that is modeled above, not its values, which are used as direct references to data
categories; hence the use of datcat in the <symbol> element. |
||||||||||||||||||
Note |
The TEI Abstract Model can be expressed as a hierarchy of attribute-value matrices (AVMs) of various types and of various levels of complexity, nested or grouped in various ways. At the most abstract level, an AVM consists of an information container and the value (contents) of that container. A simple example of an XML serialization of such structures is, on the one hand, the opening and closing tags that delimit and name the container, and, on the other, the content enclosed by the two tags that constitues the value. An analogous example is an attribute name and the value of that attribute. In a TEI XML example of two equivalent serializations expressing the name-value pair
The att.datcat class provides means of addressing the containers and their values, while at the same time providing a way to interpret them in the context of external taxonomies or ontologies. Aligning e.g. both the <pos> element and the pos attribute with the same value of an external reference point (i.e., an entry in an agreed taxonomy) affirms the identity of the concept serialised by both the element container and the attribute container, and optionally provides a definition of that concept (in the case at hand, the concept part of speech). The value of the att.datcat attributes should be a PID (persistent identifier) that points to a specific — and, ideally, shared — taxonomy or ontology. Among the resources that can, to a lesser or greater extent, be used as inventories of (more or less) standardized linguistic categories are the GOLD ontology, CLARIN CCR, OLiA, or TermWeb's DatCatInfo, and also the Universal Dependencies inventory, on the assumption that its URIs are going to persist. It is imaginable that a project may choose to address a local taxonomy store instead, but this risks losing the advantage of interchangeability with other projects. Historically, datcat and valueDatcat originate from the (the now obsolete) ISO 12620:2009 standard, describing the data model and procedures for a Data Category Registry (DCR). The current version of that standard, ISO 12620-1, does not standardize the serialization of pointers, merely mentioning the TEI att.datcat as an example. Note that no constraint prevents the occurrence of a combination of att.datcat attributes: the <fDecl> element, which is a natural bearer of the targetDatcat attribute, is an instance of a specific modeling element, and, in principle, could be semantically fixed by an appropriate reference taxonomy of modeling devices. |
att.declarable provides attributes for those elements in the TEI header which may be independently selected by means of the special purpose decls attribute. [15.3. Associating Contextual Information with a Text] | |||||||||
Module | tei | ||||||||
Members | availability bibl biblFull editorialDecl langUsage listBibl listEvent listOrg listPerson listPlace normalization projectDesc sourceDesc textClass | ||||||||
Attributes |
|
||||||||
Note |
The rules governing the association of declarable elements with individual parts of a TEI text are fully defined in chapter 15.3. Associating Contextual Information with a Text. Only one element of a particular type may have a default attribute with a value of true. |
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. [15.3. Associating Contextual Information with a Text] | |||||||
Module | tei | ||||||
Members | back body div facsimile front graphic lg msDesc p ptr ref term text | ||||||
Attributes |
|
||||||
Note |
The rules governing the association of declarable elements with individual parts of a TEI text are fully defined in chapter 15.3. Associating Contextual Information with a Text. |
att.dimensions provides attributes for describing the size of physical objects. | |||||||||||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||||||||||
Members | birth date death dimensions height origDate width | ||||||||||||||||||||||||||||||||||||||
Attributes | att.ranging (@atLeast, @atMost, @min, @max, @confidence)
|
att.divLike provides attributes common to all elements which behave in the same way as divisions. [4. Default Text Structure] | |||||||||||||||||
Module | tei | ||||||||||||||||
Members | div lg | ||||||||||||||||
Attributes | att.metrical (@met, @real, @rhyme) att.fragmentable (@part)
|
att.docStatus provides attributes for use on metadata elements describing the status of a document. | |||||||||
Module | tei | ||||||||
Members | bibl biblFull msDesc revisionDesc | ||||||||
Attributes |
|
||||||||
Example |
<revisionDesc status="published">
<change when="2010-10-21"
status="published"/>
<change when="2010-10-02" status="cleared"/>
<change when="2010-08-02"
status="embargoed"/>
<change when="2010-05-01" status="frozen"
who="#MSM"/>
<change when="2010-03-01" status="draft"
who="#LB"/>
</revisionDesc>
|
att.editLike provides attributes describing the nature of an encoded scholarly intervention or interpretation of any kind. [3.5. Simple Editorial Changes 10.3.1. Origination 13.3.2. The Person Element 11.3.1.1. Core Elements for Transcriptional Work] | |||||||||||||||||
Module | tei | ||||||||||||||||
Members | birth date death event name nationality occupation org orgName origDate origPlace origin persName person place placeName residence | ||||||||||||||||
Attributes |
|
||||||||||||||||
Note |
The members of this attribute class are typically used to represent any kind of editorial intervention in a text, for example a correction or interpretation, or to date or localize manuscripts etc. Each pointer on the source (if present) corresponding to a witness or witness group should reference a bibliographic citation such as a <witness>, <msDesc>, or <bibl> element, or another external bibliographic citation, documenting the source concerned. |
att.enjamb (enjambement) provides attributes that may be used to indicate enjambement of the parent element. [6.2. Components of the Verse Line] | |||||||||||
Module | verse | ||||||||||
Members | l | ||||||||||
Attributes |
|
att.fragmentable provides attributes for representing fragmentation of a structural element, typically as a consequence of some overlapping hierarchy. | |||||||||||
Module | tei | ||||||||||
Members | att.divLike[div lg] l p | ||||||||||
Attributes |
|
att.global provides attributes common to all elements in the TEI encoding scheme. [1.3.1.1. Global Attributes] | |||||||||||||||||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||||||||||||||||
Members | TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width | ||||||||||||||||||||||||||||||||||||||||||||
Attributes | att.global.rendition (@rend, @style, @rendition) att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select) att.global.facs (@facs) att.global.change (@change) att.global.responsibility (@cert, @resp) att.global.source (@source)
|
att.global.facs provides attributes used to express correspondence between an element and all or part of a facsimile image or surface. [11.1. Digital Facsimiles] | |||||||
Module | transcr | ||||||
Members | att.global[TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width] | ||||||
Attributes |
|
att.global.linking provides a set of attributes for hypertextual linking. [16. Linking, Segmentation, and Alignment] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | linking | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Members | att.global[TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Attributes |
|
att.global.rendition provides rendering attributes common to all elements in the TEI encoding scheme. [1.3.1.1.3. Rendition Indicators] | |||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||
Members | att.global[TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width] | ||||||||||||||||||||||||||||||
Attributes |
|
att.global.responsibility provides attributes indicating the agent responsible for some aspect of the text, the markup or something asserted by the markup, and the degree of certainty associated with it. [1.3.1.1.4. Sources, certainty, and responsibility 3.5. Simple Editorial Changes 11.3.2.2. Hand, Responsibility, and Certainty Attributes 17.3. Spans and Interpretations 13.1.1. Linking Names and Their Referents] | |||||||||||||||
Module | tei | ||||||||||||||
Members | att.global[TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width] | ||||||||||||||
Attributes |
|
||||||||||||||
Example |
Blessed are the
<choice>
<sic>cheesemakers</sic>
<corr resp="#editor" cert="high">peacemakers</corr>
</choice>: for they shall be called the children of God.
|
||||||||||||||
Example |
<!-- in the <text> ... --><lg>
<!-- ... -->
<l>Punkes, Panders, baſe extortionizing
sla<choice>
<sic>n</sic>
<corr resp="#JENS1_transcriber">u</corr>
</choice>es,</l>
<!-- ... -->
</lg>
<!-- in the <teiHeader> ... -->
<!-- ... -->
<respStmt xml:id="JENS1_transcriber">
<resp when="2014">Transcriber</resp>
<name>Janelle Jenstad</name>
</respStmt>
|
att.global.source provides attributes used by elements to point to an external source. [1.3.1.1.4. Sources, certainty, and responsibility 3.3.3. Quotation 8.3.4. Writing] | |||||||||||
Module | tei | ||||||||||
Members | att.global[TEI acquisition addName additional author authority availability back bibl biblFull biblScope birth body caesura cit collection country date death decoDesc desc dimensions distributor div divGen edition editor editorialDecl email encodingDesc event extent facsimile figDesc figure fileDesc forename front funder graphic handDesc head height history idno institution item keywords l label langUsage language layout layoutDesc lg list listBibl listEvent listOrg listPerson listPlace listPrefixDef locus material msContents msDesc msIdentifier msItem msName name namespace nationality normalization note notesStmt objectDesc occupation org orgName origDate origPlace origin p persName person physDesc place placeName prefixDef principal profileDesc projectDesc provenance ptr pubPlace publicationStmt publisher q quote ref relatedItem repository residence resp respStmt revisionDesc roleName rs series settlement soCalled sourceDesc sponsor support supportDesc surname surrogates tagUsage tagsDecl teiHeader term text textClass title titleStmt width] | ||||||||||
Attributes |
|
||||||||||
Example |
<p>
<!-- ... --> As Willard McCarty (<bibl xml:id="mcc_2012">2012, p.2</bibl>) tells us, <quote source="#mcc_2012">‘Collaboration’ is a problematic and should be a contested
term.</quote>
<!-- ... -->
</p>
|
||||||||||
Example |
<p>
<!-- ... -->
<quote source="#chicago_15_ed">Grammatical theories are in flux, and the more we learn, the
less we seem to know.</quote>
<!-- ... -->
</p>
<!-- ... -->
<bibl xml:id="chicago_15_ed">
<title level="m">The Chicago Manual of Style</title>,
<edition>15th edition</edition>. <pubPlace>Chicago</pubPlace>: <publisher>University of
Chicago Press</publisher> (<date>2003</date>), <biblScope unit="page">p.147</biblScope>.
</bibl>
|
||||||||||
Example |
<elementRef key="p" source="tei:2.0.1"/> Include in the schema an element named <p> available from the TEI P5 2.0.1 release. |
||||||||||
Example |
<schemaSpec ident="myODD"
source="mycompiledODD.xml">
<!-- further declarations specifying the components required -->
</schemaSpec> Create a schema using components taken from the file mycompiledODD.xml. |
att.internetMedia provides attributes for specifying the type of a computer resource using a standard taxonomy. | |||||||
Module | tei | ||||||
Members | att.media[graphic] ptr ref | ||||||
Attributes |
|
||||||
Example | In this example mimeType is used to indicate that the URL points to a TEI XML file encoded in UTF-8.
<ref mimeType="application/tei+xml; charset=UTF-8"
target="https://raw.githubusercontent.com/TEIC/TEI/dev/P5/Source/guidelines-en.xml"/>
|
||||||
Note |
This attribute class provides an attribute for describing a computer resource, typically available over the internet, using a value taken from a standard taxonomy. At present only a single taxonomy is supported, the Multipurpose Internet Mail Extensions (MIME) Media Type system. This 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 (IANA). The mimeType attribute must have a value taken from this list. |
att.locatable provides attributes for referencing locations by pointing to entries in a canonical list of places. [2.3.9. The Unit Declaration 13.3.4.3. States, Traits, and Events] | |||||||
Module | tei | ||||||
Members | event | ||||||
Attributes |
|
att.media provides attributes for specifying display and related properties of external media. | |||||||||||||||||||
Module | tei | ||||||||||||||||||
Members | graphic | ||||||||||||||||||
Attributes | att.internetMedia (@mimeType)
|
att.metrical defines a set of attributes that certain elements may use to represent metrical information. [6.4. Rhyme and Metrical Analysis] | |||||||||||||||||||||||||
Module | verse | ||||||||||||||||||||||||
Members | att.divLike[div lg] l | ||||||||||||||||||||||||
Attributes |
|
att.msClass provides attributes to indicate text type or classification. [10.6. Intellectual Content 10.6.1. The msItem and msItemStruct Elements] | |||||||
Module | msdescription | ||||||
Members | msContents msItem | ||||||
Attributes |
|
att.msExcerpt (manuscript excerpt) provides attributes used to describe excerpts from a manuscript placed in a description thereof. [10.6. Intellectual Content] | |||||||
Module | msdescription | ||||||
Members | msContents msItem quote | ||||||
Attributes |
|
||||||
Note |
In the case of an incipit, indicates whether the incipit as given is defective, i.e. the first words of the text as preserved, as opposed to the first words of the work itself. In the case of an explicit, indicates whether the explicit as given is defective, i.e. the final words of the text as preserved, as opposed to what the closing words would have been had the text of the work been whole. |
att.naming provides attributes common to elements which refer to named persons, places, organizations etc. [3.6.1. Referring Strings 13.3.6. Names and Nyms] | |||||||||||||||
Module | tei | ||||||||||||||
Members | att.personal[addName forename name orgName persName placeName roleName surname] author birth collection country death editor event institution nationality occupation origPlace pubPlace repository residence rs settlement | ||||||||||||||
Attributes | att.canonical (@key, @ref)
|
att.notated provides attributes to indicate any specialised notation used for element content. | |||||||
Module | tei | ||||||
Members | quote | ||||||
Attributes |
|
att.patternReplacement provides attributes for regular-expression matching and replacement. [16.2.3. Using Abbreviated Pointers 2.3.6.3. Milestone Method 2.3.6. The Reference System Declaration 2.3.6.2. Search-and-Replace Method] | |||||||||||||||||
Module | header | ||||||||||||||||
Members | prefixDef | ||||||||||||||||
Attributes |
|
att.personal (attributes for components of names usually, but not necessarily, personal names) common attributes for those elements which form part of a name usually, but not necessarily, a personal name. [13.2.1. Personal Names] | |||||||||||||||
Module | tei | ||||||||||||||
Members | addName forename name orgName persName placeName roleName surname | ||||||||||||||
Attributes | att.naming (@role, @nymRef) (att.canonical (@key, @ref))
|
att.placement provides attributes for describing where on the source page or object a textual element appears. [3.5.3. Additions, Deletions, and Omissions 11.3.1.4. Additions and Deletions] | |||||||||||||
Module | tei | ||||||||||||
Members | figure head label note | ||||||||||||
Attributes |
|
att.pointing provides a set of attributes used by all elements which point to other elements by means of one or more URI references. [1.3.1.1.2. Language Indicators 3.7. Simple Links and Cross-References] | |||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||
Members | locus note ptr ref term | ||||||||||||||||||||||||||||||
Attributes |
|
att.ranging provides attributes for describing numerical ranges. | |||||||||||||||||||||||||||||||
Module | tei | ||||||||||||||||||||||||||||||
Members | att.dimensions[birth date death dimensions height origDate width] | ||||||||||||||||||||||||||||||
Attributes |
|
||||||||||||||||||||||||||||||
Example |
The MS. was lost in transmission by mail from <del rend="overstrike">
<gap reason="illegible"
extent="one or two letters" atLeast="1" atMost="2" unit="chars"/>
</del> Philadelphia to the Graphic office, New York.
|
||||||||||||||||||||||||||||||
Example |
Americares has been supporting the health sector in Eastern
Europe since 1986, and since 1992 has provided <measure atLeast="120000000" unit="USD"
commodity="currency">more than
$120m</measure> in aid to Ukrainians.
|
att.resourced provides attributes by which a resource (such as an externally held media file) may be located. | |||||||
Module | tei | ||||||
Members | graphic | ||||||
Attributes |
|
att.sortable provides attributes for elements in lists or groups that are sortable, but whose sorting key cannot be derived mechanically from the element content. [9.1. Dictionary Body and Overall Structure] | |||||||||||
Module | tei | ||||||||||
Members | bibl biblFull event idno item list listBibl listEvent listOrg listPerson listPlace msDesc org person place term | ||||||||||
Attributes |
|
att.typed provides attributes that can be used to classify or subclassify elements in any way. [1.3.1. Attribute Classes 17.1.1. Words and Above 3.6.1. Referring Strings 3.7. Simple Links and Cross-References 3.6.5. Abbreviations and Their Expansions 3.13.1. Core Tags for Verse 7.2.5. Speech Contents 4.1.1. Un-numbered Divisions 4.1.2. Numbered Divisions 4.2.1. Headings and Trailers 4.4. Virtual Divisions 13.3.2.3. Personal Relationships 11.3.1.1. Core Elements for Transcriptional Work 16.1.1. Pointers and Links 16.3. Blocks, Segments, and Anchors 12.2. Linking the Apparatus to the Text 22.5.1.2. Defining Content Models: RELAX NG 8.3. Elements Unique to Spoken Texts 23.3.1.3. Modification of Attribute and Attribute Value Lists] | |||||||||||||||||||
Module | tei | ||||||||||||||||||
Members | TEI addName bibl birth cit collection country date death desc dimensions div divGen event figure forename graphic head idno label lg list listBibl listEvent listOrg listPerson listPlace locus material msDesc msName name nationality note occupation org orgName origDate origPlace persName place placeName provenance ptr quote ref relatedItem residence roleName rs settlement surname term text title | ||||||||||||||||||
Attributes |
|
||||||||||||||||||
Schematron |
<sch:rule context="tei:*[@subtype]">
<sch:assert test="@type">The <sch:name/> element should not be categorized in detail
with @subtype unless also categorized in general with @type</sch:assert>
</sch:rule>
|
||||||||||||||||||
Note |
When appropriate, values from an established typology should be used. Alternatively a typology may be defined in the associated TEI header. If values are to be taken from a project-specific list, this should be defined using the <valList> element in the project-specific schema description, as described in 23.3.1.3. Modification of Attribute and Attribute Value Lists . |
att.written provides attributes to indicate the hand in which the content of an element was written in the source being transcribed. [1.3.1. Attribute Classes] | |||||||
Module | tei | ||||||
Members | div figure head label note p text | ||||||
Attributes |
|
macro.limitedContent (paragraph content) defines the content of prose elements that are not used for transcription of extant materials. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.limitedPhrase"/> <classRef key="model.inter"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.limitedContent = ( text | tei_model.limitedPhrase | tei_model.inter )*⚓ |
macro.paraContent (paragraph content) defines the content of paragraphs and similar elements. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.paraPart"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.paraContent = ( text | tei_model.paraPart )*⚓ |
macro.phraseSeq (phrase sequence) defines a sequence of character data and phrase-level elements. [1.4.1. Standard Content Models] | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.attributable"/> <classRef key="model.phrase"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.phraseSeq = ( text | tei_model.gLike | tei_model.attributable | tei_model.phrase | tei_model.global )*⚓ |
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. [1.4.1. Standard Content Models] | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.limitedPhrase"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.phraseSeq.limited = ( text | tei_model.limitedPhrase | tei_model.global )*⚓ |
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. [1.3. The TEI Class System] | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> <classRef key="model.phrase"/> <classRef key="model.inter"/> <classRef key="model.divPart"/> <classRef key="model.global"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.specialPara = ( text | tei_model.gLike | tei_model.phrase | tei_model.inter | tei_model.divPart | tei_model.global )*⚓ |
macro.xtext (extended text) defines a sequence of character data and gaiji elements. | |
Module | tei |
Used by | |
Content model |
<content> <alternate minOccurs="0" maxOccurs="unbounded"> <textNode/> <classRef key="model.gLike"/> </alternate> </content> ⚓ |
Declaration |
tei_macro.xtext = ( text | tei_model.gLike )*⚓ |
teidata.certainty defines the range of attribute values expressing a degree of certainty. | |
Module | tei |
Used by | |
Content model |
<content> <valList type="closed"> <valItem ident="high"/> <valItem ident="medium"/> <valItem ident="low"/> <valItem ident="unknown"/> </valList> </content> ⚓ |
Declaration |
tei_teidata.certainty = "high" | "medium" | "low" | "unknown"⚓ |
Note |
Certainty may be expressed by one of the predefined symbolic values high, medium, or low. The value unknown should be used in cases where the encoder does not wish to assert an opinion about the matter. |
teidata.count defines the range of attribute values used for a non-negative integer value used as a count. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="nonNegativeInteger"/> </content> ⚓ |
Declaration |
tei_teidata.count = xsd:nonNegativeInteger⚓ |
Note |
Any positive integer value or zero is permitted |
teidata.duration.iso defines the range of attribute values available for representation of a duration in time using ISO 8601 standard formats | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token" restriction="[0-9.,DHMPRSTWYZ/:+\-]+"/> </content> ⚓ |
Declaration |
tei_teidata.duration.iso = token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" }⚓ |
Example |
<time dur-iso="PT0,75H">three-quarters of an hour</time>
|
Example |
<date dur-iso="P1,5D">a day and a half</date>
|
Example |
<date dur-iso="P14D">a fortnight</date>
|
Example |
<time dur-iso="PT0.02S">20 ms</time>
|
Note |
A duration is expressed as a sequence of number-letter pairs, preceded by the letter
P; the letter gives the unit and may be Y (year), M (month), D (day), H (hour), M
(minute), or S (second), in that order. The numbers are all unsigned integers, except
for the last, which may have a decimal component (using either For complete details, see ISO 8601 Data elements and interchange formats — Information interchange — Representation of dates and times. |
teidata.duration.w3c defines the range of attribute values available for representation of a duration in time using W3C datatypes. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="duration"/> </content> ⚓ |
Declaration |
tei_teidata.duration.w3c = xsd:duration⚓ |
Example |
<time dur="PT45M">forty-five minutes</time>
|
Example |
<date dur="P1DT12H">a day and a half</date>
|
Example |
<date dur="P7D">a week</date>
|
Example |
<time dur="PT0.02S">20 ms</time>
|
Note |
A duration is expressed as a sequence of number-letter pairs, preceded by the letter
P; the letter gives the unit and may be Y (year), M (month), D (day), H (hour), M
(minute), or S (second), in that order. The numbers are all unsigned integers, except
for the For complete details, see the W3C specification. |
teidata.enumerated defines the range of attribute values expressed as a single XML name taken from a list of documented possibilities. | |
Module | tei |
Used by |
teidata.gender teidata.sexElement:
|
Content model |
<content> <dataRef key="teidata.word"/> </content> ⚓ |
Declaration |
tei_teidata.enumerated = teidata.word⚓ |
Note |
Attributes using this datatype must contain a single ‘word’ which contains only letters, digits, punctuation characters, or symbols: thus it cannot include whitespace. Typically, the list of documented possibilities will be provided (or exemplified) by a value list in the associated attribute specification, expressed with a <valList> element. |
teidata.gender defines the range of attribute values used to represent the gender of a person, persona, or character. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef key="teidata.enumerated"/> </content> ⚓ |
Declaration |
tei_teidata.gender = teidata.enumerated⚓ |
Note |
Values for attributes using this datatype may be defined locally by a project, or they may refer to an external standard. Values for this datatype should not be used to encode morphological gender (cf. <gen>, msd as defined in att.linguistic, and 9.3.1. Information on Written and Spoken Forms). |
teidata.language defines the range of attribute values used to identify a particular combination of human language and writing system. [6.1. Language Identification] | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <alternate> <dataRef name="language"/> <valList> <valItem ident=""/> </valList> </alternate> </content> ⚓ |
Declaration |
tei_teidata.language = xsd:language | ( "" )⚓ |
Note |
The values for this attribute are language ‘tags’ as defined in BCP 47. Currently BCP 47 comprises RFC 5646 and RFC 4647; over time, other IETF documents may succeed these as the best current practice. A ‘language tag’, per BCP 47, is assembled from a sequence of components or subtags separated by the hyphen character (-, U+002D). The tag is made of the following subtags, in the following order. Every subtag except the first is optional. If present, each occurs only once, except the fourth and fifth components (variant and extension), which are repeatable.
There are two exceptions to the above format. First, there are language tags in the IANA registry that do not match the above syntax, but are present because they have been ‘grandfathered’ from previous specifications. Second, an entire language tag can consist of only a private use subtag. These tags
start with Examples include
The W3C Internationalization Activity has published a useful introduction to BCP 47, Language tags in HTML and XML. |
teidata.name defines the range of attribute values expressed as an XML Name. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef name="Name"/> </content> ⚓ |
Declaration |
tei_teidata.name = xsd:Name⚓ |
Note |
Attributes using this datatype must contain a single word which follows the rules defining a legal XML name (see https://www.w3.org/TR/REC-xml/#dt-name): for example they cannot include whitespace or begin with digits. |
teidata.namespace defines the range of attribute values used to indicate XML namespaces as defined by the W3C Namespaces in XML Technical Recommendation. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef restriction="\S+" name="anyURI"/> </content> ⚓ |
Declaration |
tei_teidata.namespace = xsd:anyURI { pattern = "\S+" }⚓ |
Note |
The range of syntactically valid values is defined by RFC 3986 Uniform Resource Identifier (URI): Generic Syntax |
teidata.numeric defines the range of attribute values used for numeric values. | |
Module | tei |
Used by | |
Content model |
<content> <alternate> <dataRef name="double"/> <dataRef name="token" restriction="(\-?[\d]+/\-?[\d]+)"/> <dataRef name="decimal"/> </alternate> </content> ⚓ |
Declaration |
tei_teidata.numeric = xsd:double | token { pattern = "(\-?[\d]+/\-?[\d]+)" } | xsd:decimal⚓ |
Note |
Any numeric value, represented as a decimal number, in floating point format, or as a ratio. To represent a floating point number, expressed in scientific notation, ‘E notation’, a variant of ‘exponential notation’, may be used. In this format, the value is expressed as two numbers separated by the letter E. The first number, the significand (sometimes called the mantissa) is given in decimal format, while the second is an integer. The value is obtained by multiplying the mantissa by 10 the number of times indicated by the integer. Thus the value represented in decimal notation as 1000.0 might be represented in scientific notation as 10E3. A value expressed as a ratio is represented by two integer values separated by a solidus (/) character. Thus, the value represented in decimal notation as 0.5 might be represented as a ratio by the string 1/2. |
teidata.outputMeasurement defines a range of values for use in specifying the size of an object that is intended for display. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token" restriction="[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|ch|rem|vw|vh|vmin|vmax)"/> </content> ⚓ |
Declaration |
tei_teidata.outputMeasurement = token { pattern = "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|ch|rem|vw|vh|vmin|vmax)" }⚓ |
Example |
<figure>
<head>The TEI Logo</head>
<figDesc>Stylized yellow angle brackets with the letters <mentioned>TEI</mentioned> in
between and <mentioned>text encoding initiative</mentioned> underneath, all on a white
background.</figDesc>
<graphic height="600px" width="600px"
url="http://www.tei-c.org/logos/TEI-600.jpg"/>
</figure>
|
Note |
These values map directly onto the values used by XSL-FO and CSS. For definitions of the units see those specifications; at the time of this writing the most complete list is in the CSS3 working draft. |
teidata.pattern defines attribute values which are expressed as a regular expression. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token"/> </content> ⚓ |
Declaration |
tei_teidata.pattern = token⚓ |
Note |
A regular expression, often called a pattern, is an expression that describes a set of strings. They are usually used to give
a concise description of a set, without having to list all elements. For example,
the set containing the three strings Handel, Händel, and Haendel can be described by the pattern WikipediaH(ä|ae?)ndel (or alternatively, it is said that the pattern H(ä|ae?)ndel matches each of the three strings)This TEI datatype is mapped to the XSD token datatype, and may therefore contain any string of characters. However, it is recommended that the value used conform to the particular flavour of regular expression syntax supported by XSD Schema. |
teidata.point defines the data type used to express a point in cartesian space. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token" restriction="(-?[0-9]+(\.[0-9]+)?,-?[0-9]+(\.[0-9]+)?)"/> </content> ⚓ |
Declaration |
tei_teidata.point = token { pattern = "(-?[0-9]+(\.[0-9]+)?,-?[0-9]+(\.[0-9]+)?)" }⚓ |
Example |
<facsimile>
<surface ulx="0" uly="0" lrx="400" lry="280">
<zone points="220,100 300,210 170,250 123,234">
<graphic url="handwriting.png"/>
</zone>
</surface>
</facsimile>
|
Note |
A point is defined by two numeric values, which should be expressed as decimal numbers. Neither number can end in a decimal point. E.g., both 0.0,84.2 and 0,84 are allowed, but 0.,84. is not. |
teidata.pointer defines the range of attribute values used to provide a single URI, absolute or relative, pointing to some other resource, either within the current document or elsewhere. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef restriction="\S+" name="anyURI"/> </content> ⚓ |
Declaration |
tei_teidata.pointer = xsd:anyURI { pattern = "\S+" }⚓ |
Note |
The range of syntactically valid values is defined by RFC 3986 Uniform Resource Identifier (URI): Generic Syntax. Note that the values themselves are encoded using RFC 3987 Internationalized Resource Identifiers (IRIs) mapping to URIs. For example, |
teidata.prefix defines a range of values that may function as a URI scheme name. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef name="token" restriction="[a-z][a-z0-9\+\.\-]*"/> </content> ⚓ |
Declaration |
tei_teidata.prefix = token { pattern = "[a-z][a-z0-9\+\.\-]*" }⚓ |
Note |
This datatype is used to constrain a string of characters to one that can be used as a URI scheme name according to RFC 3986, section 3.1. Thus only the 26 lowercase letters a–z, the 10 digits 0–9, the plus sign, the period, and the hyphen are permitted, and the value must start with a letter. |
teidata.probCert defines a range of attribute values which can be expressed either as a numeric probability or as a coded certainty value. | |
Module | tei |
Used by | |
Content model |
<content> <alternate> <dataRef key="teidata.probability"/> <dataRef key="teidata.certainty"/> </alternate> </content> ⚓ |
Declaration |
tei_teidata.probCert = teidata.probability | teidata.certainty⚓ |
teidata.probability defines the range of attribute values expressing a probability. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="double"/> </content> ⚓ |
Declaration |
tei_teidata.probability = xsd:double⚓ |
Note |
Probability is expressed as a real number between 0 and 1; 0 representing certainly false and 1 representing certainly true. |
teidata.sex defines the range of attribute values used to identify the sex of an organism. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef key="teidata.enumerated"/> </content> ⚓ |
Declaration |
tei_teidata.sex = teidata.enumerated⚓ |
Note |
Values for attributes using this datatype may be defined locally by a project, or they may refer to an external standard. |
teidata.temporal.iso defines the range of attribute values expressing a temporal expression such as a date, a time, or a combination of them, that conform to the international standard Data elements and interchange formats – Information interchange – Representation of dates and times. | |
Module | tei |
Used by | |
Content model |
<content> <alternate> <dataRef name="date"/> <dataRef name="gYear"/> <dataRef name="gMonth"/> <dataRef name="gDay"/> <dataRef name="gYearMonth"/> <dataRef name="gMonthDay"/> <dataRef name="time"/> <dataRef name="dateTime"/> <dataRef name="token" restriction="[0-9.,DHMPRSTWYZ/:+\-]+"/> </alternate> </content> ⚓ |
Declaration |
tei_teidata.temporal.iso = xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime | token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" }⚓ |
Note |
If it is likely that the value used is to be compared with another, then a time zone indicator should always be included, and only the dateTime representation should be used. For all representations for which ISO 8601:2004 describes both a basic and an extended format, these Guidelines recommend use of the extended format. |
teidata.temporal.w3c defines the range of attribute values expressing a temporal expression such as a date, a time, or a combination of them, that conform to the W3C XML Schema Part 2: Datatypes Second Edition specification. | |
Module | tei |
Used by | |
Content model |
<content> <alternate> <dataRef name="date"/> <dataRef name="gYear"/> <dataRef name="gMonth"/> <dataRef name="gDay"/> <dataRef name="gYearMonth"/> <dataRef name="gMonthDay"/> <dataRef name="time"/> <dataRef name="dateTime"/> </alternate> </content> ⚓ |
Declaration |
tei_teidata.temporal.w3c = xsd:date | xsd:gYear | xsd:gMonth | xsd:gDay | xsd:gYearMonth | xsd:gMonthDay | xsd:time | xsd:dateTime⚓ |
Note |
If it is likely that the value used is to be compared with another, then a time zone indicator should always be included, and only the dateTime representation should be used. |
teidata.text defines the range of attribute values used to express some kind of identifying string as a single sequence of Unicode characters possibly including whitespace. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="string"/> </content> ⚓ |
Declaration |
tei_teidata.text = string⚓ |
Note |
Attributes using this datatype must contain a single ‘token’ in which whitespace and other punctuation characters are permitted. |
teidata.truthValue defines the range of attribute values used to express a truth value. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef name="boolean"/> </content> ⚓ |
Declaration |
tei_teidata.truthValue = xsd:boolean⚓ |
Note |
The possible values of this datatype are 1 or true, or 0 or false. This datatype applies only for cases where uncertainty is inappropriate; if the attribute concerned may have a value other than true or false, e.g. unknown, or inapplicable, it should have the extended version of this datatype: teidata.xTruthValue. |
teidata.version defines the range of attribute values which may be used to specify a TEI or Unicode version number. | |
Module | tei |
Used by |
Element:
|
Content model |
<content> <dataRef name="token" restriction="[\d]+(\.[\d]+){0,2}"/> </content> ⚓ |
Declaration |
tei_teidata.version = token { pattern = "[\d]+(\.[\d]+){0,2}" }⚓ |
Note |
The value of this attribute follows the pattern specified by the Unicode consortium for its version number (https://unicode.org/versions/). A version number contains digits and fullstop characters only. The first number supplied identifies the major version number. A second and third number, for minor and sub-minor version numbers, may also be supplied. |
teidata.versionNumber defines the range of attribute values used for version numbers. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token" restriction="[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}"/> </content> ⚓ |
Declaration |
tei_teidata.versionNumber = token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" }⚓ |
teidata.word defines the range of attribute values expressed as a single word or token. | |
Module | tei |
Used by | |
Content model |
<content> <dataRef name="token" restriction="[^\p{C}\p{Z}]+"/> </content> ⚓ |
Declaration |
tei_teidata.word = token { pattern = "[^\p{C}\p{Z}]+" }⚓ |
Note |
Attributes using this datatype must contain a single ‘word’ which contains only letters, digits, punctuation characters, or symbols: thus it cannot include whitespace. |
teidata.xTruthValue (extended truth value) defines the range of attribute values used to express a truth value which may be unknown. | |
Module | tei |
Used by | |
Content model |
<content> <alternate> <dataRef name="boolean"/> <valList> <valItem ident="unknown"/> <valItem ident="inapplicable"/> </valList> </alternate> </content> ⚓ |
Declaration |
tei_teidata.xTruthValue = xsd:boolean | ( "unknown" | "inapplicable" )⚓ |
Note |
In cases where where uncertainty is inappropriate, use the datatype teidata.TruthValue. |
teidata.xpath defines attribute values which contain an XPath expression. | |
Module | tei |
Used by | |
Content model |
<content> <textNode/> </content> ⚓ |
Declaration |
tei_teidata.xpath = text⚓ |
Note |
Any XPath expression using the syntax defined in 6.2.. When writing programs that evaluate XPath expressions, programmers should be mindful of the possibility of malicious code injection attacks. For further information about XPath injection attacks, see the article at OWASP. |
Schematron |
<sch:rule context="tei:bibl[@corresp]">
<sch:let name="biblId"
value="substring-after(@corresp, 'bibl:')"/>
<sch:assert test="doc(resolve-uri('../biblio/biblio.xml', base-uri(.)))//tei:bibl[@xml:id=$biblId]">
ERROR: The @corresp value should point to the @xml:id of a bibl element
in the biblio.xml file (<sch:value-of select="$biblId"/>).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:decoDesc">
<sch:assert test="descendant::tei:dimensions"> ERROR: every decoDesc element must
have a descendant
dimensions element (usually inside the p element).
</sch:assert>
<sch:assert test="descendant::tei:material"> ERROR: every decoDesc element must have
a descendant
material element (usually inside the p element).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:TEI[tei:facsimile]/tei:teiHeader/tei:fileDesc">
<sch:assert test="child::tei:extent"> ERROR: every fileDesc element must have a child
extent element.
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:TEI">
<sch:let name="fname"
value="concat(@xml:id, '.xml')"/>
<sch:assert test="ends-with(document-uri(/), $fname)"> ERROR: The @xml:id of your
document (<sch:value-of select="@xml:id"/>)
does not match the document file name (<sch:value-of select="document-uri(/)"/>).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:publicationStmt/tei:idno">
<sch:let name="fid"
value="ancestor::tei:TEI/@xml:id"/>
<sch:assert test=". = $fid"> ERROR: The idno in your publicationStmt should match
the @xml:id
of your document (<sch:value-of select="$fid"/>).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:*[matches(@ref, '^#')]">
<sch:let name="targId"
value="substring-after(@ref, '#')"/>
<sch:assert test="//*[@xml:id = $targId]"> ERROR: An @ref value beginning with a hash
should point to the @xml:id of an element
in the same file (<sch:value-of select="$targId"/>).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:msItem">
<sch:assert test="child::tei:respStmt[child::tei:resp[@key='ill']]"> ERROR: every
msItem element must have a respStmt for the illustrator.
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:msItem">
<sch:assert test="child::tei:title[@type='supplied'][string-length(normalize-space(.))
gt 0]"> ERROR: every msItem must have a title with @type="supplied".
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:*[matches(@ref, '^\s*name:')]">
<sch:let name="namesIds"
value="doc('../xml/names/names.xml')//@xml:id"/>
<sch:let name="targId"
value="substring-after(@ref, 'name:')"/>
<sch:assert test="$targId = $namesIds"> ERROR: There is no element in the names.xml
file with the xml:id (<sch:value-of select="$targId"/>).
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:*[@target]">
<sch:assert test="starts-with(@target, 'http') or not(matches(@target, '\.html$'))">
ERROR: Use ONLY prefixes mnd:, bibl:, or name: to link to ids or documents inside
the MyNDIR project.
<sch:value-of select="@target"/>
</sch:assert>
<sch:assert test="not(contains(@target, 'myndir.uvic.ca'))"> ERROR: Use ONLY prefixes
mnd:, bibl:, or name: to link to ids or documents inside the MyNDIR project.
Never include a full link to the MyNDIR site URL.
<sch:value-of select="@target"/>
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:title | tei:name | tei:label | tei:persName | tei:orgName |
tei:eventName
| tei:rs | tei:addName | tei:placeName | tei:rs">
<sch:assert test="not(matches(., '(^\s)|(\s$)'))"> ERROR: Titles, names, labels etc.
should not have leading or trailing spaces.
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:*[@ref]">
<sch:assert test="matches(@ref, '^\s*((name)|(bibl)|(mnd)):') or matches(@ref, '^\s*#')">
ERROR: Use the prefixes name: and bibl: to link to items in the names.xml or biblio.xml
files.
</sch:assert>
</sch:rule>
<sch:rule context="tei:*[@target]">
<sch:assert test="matches(@target, '^\s*((mnd)|(https?)):') or matches(@target, '^\s*[^\.:\s]+\.xml')
or matches(@target, '^\s*((images)|(pdfs))/')"> ERROR: use the mnd: prefix to link
to documents, or a full URL starting
with http(s):// to link to external websites.
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:bibl/tei:author | tei:bibl/tei:respStmt">
<sch:assert test="not(matches(., '\.\s*$')) or matches(tei:name/tei:forename[last()],
'(^|\s)\p{Lu}\.$')"> ERROR: don't put trailing punctuation inside author or respStmt
elements.
</sch:assert>
</sch:rule>
|
Schematron |
<sch:rule context="tei:*[matches(@ref, '^\s*name:')][not(local-name() = ('persName',
'title', 'term', 'placeName', 'orgName'))]">
<sch:assert test="@type"> ERROR: a name or other linking element pointing to the names.xml
file must have @type to say
what type of thing it's pointing at.
</sch:assert>
</sch:rule>
|