Sample Header (Extended Edition)

Select the " XML View" from available "Stylesheets" to see Annotations on Header structure

Have questions?

Post questions in Forum on developing the TEI Header

Review teiHeader
the teiHeader

Header Sections

The TEI Header is the first section of the TEI file structure and is a required component of any valid TEI file.

The information provided within TEI Headers can be simple or complex depending on the document and its intended purposes. However, it includes a few required and suggested sections.





The <teiHeader> contains the following 5 sections, where only <fileDesc>is required:

Jumpt to:

(1) <fileDesc>

(View Section Snippet)

Description |

<fileDesc> is a required section of the TEI Header. It records bibliographic information of the encoded document using the subSections listed below.

Notes |

For <fileDesc> to be valid, it must include at a minumum <titleStmt>, <publicationStmt>and <sourceDesc> subsections

subSections |

(1.1) <titleStmt> is a mandatory section of fileDesc. It groups elements for recording information about the title of a work and those responsible, at various levels, for the creation or editorial work of its content. This section includes:

(1.1.1) <title> declares the title of the TEI file. Note this may be different from the source title of the encoded work in <text> section. For example, if we were encoding Oscar Wilde's The Importance of Being Earnest, we might name our TEI file something like, "Oscar Wilde's The Importance of Being Earnest": a TEI edition."

To record the original source title (and other source text data), we can use <bibl> under <sourceDesc>. We would include the original source creator under <author> in next section below. We would record information on the TEI edition's creator/encoder (if different than source author) under <respStmt>.

(1.1.2) <author> declares the original source author (a person or organization) responsible for producing the work. We can repeat <author> for works where there is more than one primary creator. We can also nest <persName> in <author> to associate persons listed in personograpy data; similarly, use <orgName> for organizations listed in orgography data where an organization is responsible as creator.

(1.1.3) <sponser> declares any person(s)/group(s) responsible for providing intellectual sponsorship for the creation of the work

(1.1.4) <funder> declares any person(s)/group(s) responsible for providing money in the creation of the work

(1.1.5) <editor> declares any person(s) responsible for an editorial role in the case of document being part of an edition

(1.1.6) <principal> declares any person(s) responsible for principal research in the case where the document is the product of formal research

(1.1.7) <respStmt> groups elements for recording information on contributors involved in the creation of the TEI edition (e.g., those on an encoding team involved in the encoding of the TEI edition); or anyone not already named in above sections

(1.2) <editionStmt> is optional, but recommended by TEI-C guidelines. It is used to group information on a single edition of text, where there may exist other editions of the work elsewhere, with their own editionStmt's.

(1.2.1) <edition> should note whether it is a first edition, new edition, revised edition, etc., and note the date of released to mark distinction from other known editions. The @n attribute on edition can assist in declaring version number across multiple existing editions of the work: <edition n="1"> marks a first edition.

(1.2.2) <respStmt> records primary contributor(s) of edition; repeat this section where necessary to record other contributors to the edition.

(1.2.3) <name> declares person responsible for the changes made to this edition.

(1.2.4) <resp> describe role of edits

(1.3) <extent> is optional. It is used for documenting the size of the textual medium; in the case of the TEI document, the file size.

As a minimum structure, we can declare the file size between <extent> tags. We can supply byte size, or use terms to describe physical (disk, tape, etc.) or logical (pages, paragraphs, sentences, etc.) units. <p> tags are not used between parent tags:

<extent>12 paragraphs</extent>

Approximate declarations are acceptable if precise file size is not known: using such terms as "less than," "between," "over."

<extent>Less than 1 Mb</extent>

(1.3.1) <measure> with @unit and @quantity attributes declares machine friendly measurements (For more information on file size naming, see this reference):

<extent>
<measure unit="MiB" quantity="1.5"> About 1.5 megabytes </measure>
</extent>

(1.4) <publicationStmt> is required. It groups information concerning the publication or distribution of the digital TEI object. Alternatively, we use <sourceDesc> -- last section of <titleStmt> -- to record publication data of the TEI file's source text, where TEI edition is not original source, or "born digital."

This section must contain at least one of the following tags: <publisher>, <distributor>, or <authority>. (the code snippet includes all three.)

(1.4.1) <publisher> the person or ogranization responsible for the creation of TEI edition, and who maintains rights over its production and/or distribution. if "unknown," then "Publisher Unknown."

(1.4.2) <address> (repeat <addrLin> as needed) or <pubPlace>

(1.4.3) <date> may be used for both marking the publication date of the TEI document or following <availability> to mark availability statement date if different than publication date

(1.4.4) <distribution> identifies organization responsible for the distribution of the TEI edition

(1.4.5) <availability> statement clarifies a general copyright and fair use policy governing reuse of the TEI edition. May include just a simple paragraph statement and/or a <license> making use of @target attribute to link directly to license.

(1.5) <seriesStmt> (Optional) records the relation between separate documents understood as each part of a series (e.g., collected works: essays, lectures, articles, document volumes, etc.) by declaring its parent work/identity. This section accepts either a block of text wrapped in <p> or a the following section tags (not both)

(1.5.1) <title> declares the title of the series of which this document is considered to be a part.

(1.5.2) <respStmt> (containing expected <name> and <resp> tags) declares the name of person or entity responsible for series, e.g., editor or organization, and identified role.

(1.5.3) <biblScope> declares the bibliographic scope of the TEI document as included within the series, for example as a list of page numbers, or a named subdivision of a larger work. Using @unit, @from, @to, for example, we can state,

<biblScope unit="page" from="25" to="29">pp 25-29</biblScope>

(1.5.4) <idno> is an identifier tag in the TEI used to mark an ISSN, ISBN, or on idno.

<idno type="ISBN">978-1-234567-89-1</idno>

(1.6) <notesStmt> (Optional) compiles together notes about the encoded document that are not recorded elsewhere within the header.

As notes are somewhat open-ended, we suggest reviewing the Guidelines to assess what kinds of information you might put here based on your document and/or project purposes. The Guidelines offer a nicely detailed overview of the possible handlings of note section, with links to more explanation where possible, and help demonstrate how note data may be more appropriately placed outside note elsewhere in TEI header.

At a minimum, apply a container made up of a parent <notesStmt> containing <note>. You may repeat note as needed.

(1.7) <sourceDesc> (Required) records the source from which an electronic text was derived or generated (if true).

Typically this comes in the form of a bibliographic description using one of the following containers:

<bibl>, <biblStruct>, <listBibl>(review the differences between in the Guidelines). In the case where the TEI file is born digital, we can state "born digital" using <p>

(2) <encodingDesc>

(View Section Snippet)

Description |

<encodingDesc> is a recommended section of the TEI Header. It records information on the encoding practices used and relationship between encoded work and, where true, its source text; this section can range from a brief statement on encoding approach under <projectDesc> to a more detailed overview of editorial decisions and handling of source text under <editorialDesc>.

Notes |

For <encodingDesc> to be valid, it must include at a minumum 1 or more <p> tags, or for more detailed and structured encoding descriptions, one or more of the element sections discussed below:

subSections |

(2.1) <projectDesc> a prose description on purpose of TEI edition, project objectives, teams, etc., wrapped in <p>.

(2.2) <samplingDecl> a prose description about the selection process behind choosing text(s) or textual fragments that comprise the encoded document in the case where encoded document is of a source text. Often this will include information on sample size, methods, purpose, and more general discussion of textual source.

(2.3) <editorialDecl> a prose description of the editorial practices employed in the encoding of a document in which one may either use <p> or one or more of the following elements:

(2.3.1) <correction> prose description of corrections, if any, made to the source text in creation of TEI edition

(2.3.2) <normalization> prose description on any normalization decisions made on source text in creation of TEI edition

(2.3.3) <quotation> prose description on handling of quotation markers of source text in creation of TEI edition

(2.3.4) <hyphenation> prose description on handling hyphenation encoding of source text in creation of TEI edition

(2.3.5) <segmentation> prose description on segmentation of source text in creation of TEI edition

(2.3.6) <stdVals> prose description of approach to standardizing date and number values in TEI edition

(2.3.7) <interpretation> prose description of any interpretive information added in the creation of TEI edition

(2.3.8) <punctuation> prose description of handling of punctuation of source text in creation of TEI edition

(2.4) <tagsDecl> documents use of tags in TEI edition using,

(2.4.1) <rendition> renditional display of element in TEI edition, where @selector points to elements in <text> with applied rendition; @scheme is "css"

<rendition xm:id="medium" scheme="css" selector="front div">
font-size:90%;margin:0.5em;</rendition>

a really great example can be found in guidelines here

(2.4.2) <namespace> declares namespace to which tag (<tagUsage>) belongs

(2.4.3) <tagUsage> details usage of tag; repeat element for multiple tag descriptions

(2.5) <styledefDecl> declares the name of supplied value of @scheme attribute on rendition:

<styledefDecl scheme="css" schemeVersion="2.1"/>
<tagsDecl>
<rendition xm:id="medium" scheme="css" selector="front div">
font-size:90%;margin:0.5em;
</rendition>
</tagsDecl>

(2.6) <refsDecl> documentation on how canonical references are formed for TEI edition

(see here)

(2.7) <classDecl> declares taxonomies for classification schemes in TEI edition

(see here)

(2.8) <geoDecl> documents notation used for geographic coordinates in TEI edition

(see here)

(2.9) <schemaSpec> declares a schema specification for including ODD file in header of TEI document

(see here)

(2.10) <schemaRef> to point to external ODD

(see here)

(3) <profileDesc>

(View Section Snippet)

Description |

<profileDesc> is a recommended section of the TEI Header. It provides a profile description of the encoded file, or as the guidelines state: "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."

Notes |

Available sections under <profileDesc> are listed below:

subSections |

This section is in progress. Here is a link to profileDesc in the TEI Guidelines. Post your questions to the TAPAS Header forum.

(3.1) <handNotes>

(3.2) <creation>

(3.3) <langUsage>

(3.4) <abstract>

(3.5) <textDesc>

(3.6) <settingDesc>

(3.7) <particDesc>

(4) <xenoData>

(View Section Snippet)

Description |

<xenoData> is a possible section of the TEI Header.

Notes |

For <xenoData> sections are listed below:

subSections |

This section is in progress. Here is a link to profileDesc in the TEI Guidelines. Post your questions to the TAPAS Header forum.

(4.1)

(5) <revisionDesc>

(View Section Snippet)

Description |

<revisionDesc> is a highly recommended section of the TEI Header.

Notes |

<revisionDesc> sections are listed below:

subSections |

This section is in progress. Here is a link to profileDesc in the TEI Guidelines. Post your questions to the TAPAS Header forum.

(5.1)

CLOSE ^

Vertical Tabs

Reader
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml"
	schematypens="http://purl.oclc.org/dsdl/schematron"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
   <teiHeader><!-- the tei header records information about the encoded document under <fileDesc>, <encodingDesc>, <profileDesc>. TEI headers come in all shapes and sizes, and include a widerange of information based on the source document or purpose of project to which it belongs. However, in all cases, headers must include at a minimum a fileDesc. -->
      <fileDesc><!-- fileDesc is a required header section. It is where we record bibliographic information of the encoded document. For <fileDesc> to be valid, it must include at a minumum <titleStmt>, <publicationStmt>, and <sourceDesc> subsections -->
         <titleStmt><!-- titleStmt is mandatory. It groups elements for recording information about the title of a work and those responsible, at various levels, for the creation or editorial work of its content.-->
            <title><!-- title of the document. The format of our title will depend on whether the document is the first of its kind (e.g., this is the  first edition of the "TAPAS Templates: a Minimally Encoded Header") or an encoded edition of a historical source document (e.g., Oscar Wilde's "The Importance of Being Earnest"). In the former, the title is straightforward in so far as the originator decides the document title; in the latter, one may choose to preserve the orginal historical title (e.g., "The Importance of Being Earnest") to emphasize the historical object being encoded. However, as one would be creating a new edition (of many other possible editions) of the source work in the TEI, it is considered best practice to reflect that the new object is an iteration of a source object: e.g., "Oscar Wilde's The Importance of Being Earnest: a TEI Edition." To record the original source title (and other bibliographic data), we can use <bibl> under <sourceDesc>. In this case, we would include the original source creator under <author> (e.g., Oscar Wilde), and record the TEI edition's creator/encoder under <respStmt>. -->The Importance of Being Earnest</title>
            <title>A trivial comedy for serious people</title>
            <title>A TEI edition</title>
            <author><!-- name of source object author or an organization reseponsible for producing the work; repeat <author> for multiauthored works; we can also nest <persName> in <author> for asssociating author with a personography -->
               <persName>
                  <ref target="#pers_oscarwilde">Oscar Wilde</ref>
            </persName>
            </author>
            <sponsor><!-- person(s)/group(s) responsible for providing intellectual sponsorship -->
               <name>
                  Name of sponsor
               </name>
            </sponsor>
            <funder><!--  person(s)/group(s) responsible for providing money -->
               <name>
                  Name of funder
               </name>
            </funder>
            <editor><!-- in the case of document being part of an edition -->
               <name>Name of editor</name>
            </editor>
            <principal><!-- in the case document is the product of formal research -->
               <persName>Name of the lead researcher</persName>
            </principal>
            <respStmt><!-- groups elements for recording information on creators and contributors in the creation of the TEI edition (e.g., those on an encoding team who contributed to creation or editing of the TEI edition) not already named in above sections-->
               <name><!-- the name of contributor; we can also wrap in <persName> if we have an accompanying personography-->Contributor's Name</name>
               <resp><!-- the role of contributor in creation of TEI edition (e.g., primary encoder; or editor of original transcription)-->Contributor's Role</resp>
            </respStmt><!-- we can add multiple <respStmt> sections where there are multiple contributors <respStmt><name></name><resp></resp></respStmt> -->
         </titleStmt>
         <editionStmt><!-- editionStmt is optional, but recommended by TEI-C guidelines if in case of multiple editions. It is used to group information on a single edition of text -->
            <edition>Edition statement...</edition>
            <respStmt><!-- used to record primary contributors of edition; add addition <respStmt> where there is more than one contributor to the edition -->
               <name><!-- responsible for task or role noted below -->Name of person</name>
               <resp><!-- description of task or role --></resp>
            </respStmt>
         </editionStmt>
         <extent><!-- extent is optional. Used for documenting the size of the textual medium as a digital object-->
            <measure unit="MiB" quantity=".3">About .3 megabytes</measure>
            <measure unit="pages" quantity="1">1 page of source material</measure>
         </extent>
         <publicationStmt><!-- publicationStmt is mandatory. It groups information concerning the publication or distribution of the digital TEI object; use <sourceDesc> section below to record publication data that may be different than TEI edition, say for an historical source work.  -->
            <publisher><!-- the person or ogranization responsible for the creation of TEI edition, and who has rights over its production and/or distribution -->Publisher Name</publisher>
            <address> 
               <addrLine><!-- repeat addrLine as needed -->Address Line 1,</addrLine> 
            </address> 
            <idno type="ISBN"><!-- Use <idno> for ISBN or any other identifying numbers that are relevant -->0-19-254705-4</idno>
            <availability><!-- availability statement clarifies a general copyright and fair use policy governing reuse of the TEI edition -->
               <licence target="URL_of_full_license">
                  Summary statement of which license applies to this TEI file
               </licence>
               <p><!-- okay to add <p> to include other related but necessary blocks of information -->Availablity statement continued...</p>
            </availability>
            <date when="2017-01-01"><!-- the date of publication of the TEI edition -->Publication Date</date>
            <distributor><!-- you can identify organization responsible for the distribution or purchase handling of the TEI edition -->Distributor of this TEI Edition</distributor>
            <date><!-- provide a date for update on availability statement if different than publication date -->Availability Date</date>
         </publicationStmt>
         <seriesStmt><!-- seriesStmt is optional. It records the relation between separate documents understood as each part of a series (e.g., collected works (essays, lectures, articles, etc.), document volumes, etc.) by declaring its parent work/identity -->
            <title level="s">Title of Series</title>
            <respStmt><!-- name of person responsible for series, e.g., editor or organization -->
               <resp>ed. by...</resp>
               <name>Name of Editor</name> 
            </respStmt>
            <biblScope unit="vol">biblScope...</biblScope>
            <idno type="ISSN">idno...</idno>
         </seriesStmt>
         <notesStmt><!-- notesStmt is optional. It adds multiple notes for additional information or discussion of document -->
            <note><!-- repeat <note> as needed -->Notes on the text...</note>
         </notesStmt>
         <sourceDesc><!-- sourceDesc is mandatory. It describes the source from which an electronic text was derived or generated, typically a bibliographic description <bibl> in the case of a digitized edition of a print text; in the case where the TEI file is born digital,we can include <p>"born digital"</p> -->
            <bibl>
               <title>Title of Source Work</title>
               <author>Author of Source Work</author>
               <pubPlace>Place of Publication of Source Work</pubPlace>
               <publisher>Publisher of Source Work</publisher>
               <date>Publication Date of Source Work</date>. 
            </bibl>
            <!-- sourceDesc can also include Ography data of source Work; for more detailed discussion of internal and external Ography handling see: http://beta.tapasproject.org/guides/ographies-->
            <listPerson>
               <person>
                  <persName><!-- ... --></persName>
               </person>
            </listPerson>
            <listOrg>
               <org xml:id="org-tapas">  
                  <orgName>the TEI Archiving, Publishing, and Access Service</orgName>
                  <desc>
                     <ref target="http://beta.tapasproject.org/">http://tapasproject.org/</ref>
                  </desc>
               </org>
            </listOrg>
            <listPlace>
               <place xml:id="bos-ma-us">
                  <placeName>Boston</placeName>
                  <location>
                     <country key="US"></country>
                     <geo>42.360082 -71.058880</geo>
                  </location>
                  <listPlace>
                     <place xml:id="nu-bos-ma-us">
                        <placeName>Northeastern University</placeName>
                        <location>
                           <country key="US"></country>
                           <geo>42.340082 -71.089488</geo>
                           <address>
                  <addrLine>360 Huntington Ave</addrLine>
                  <addrLine>Boston, MA 02115</addrLine>
               </address>
                        </location>
                     </place>
                  </listPlace>
               </place>
            </listPlace>
         </sourceDesc>
      </fileDesc>
      <encodingDesc><!-- encodingDesc section is optional, but recommended. It groups elements for recording information on the encoding practices used in relation to source work's orginal formatting; this section can range from a brief statement on encoding approach under <projectDesc> to a more detailed overview of editorial decisions under <editorialDesc> -->
         <projectDesc><!-- a statment on purpose of TEI edition, project objectives, teams, etc -->
         <p>A Project Description ...</p>
            </projectDesc>
         <samplingDecl><!-- can use this section to provide details on how text(s) at project level were selected -->
            <p>
               Information about text(s) in collection
            </p>
         </samplingDecl>
         <editorialDecl>
            
            <correction><!-- one might wish to note any "corrections" or alterations -->
               <p>A Correction statement on any edits made of source work in TEI edition</p>
            </correction>
            <normalization><!-- we can also record any regularization decisions made to source work in translating into a digital format -->
               <p>A Normalization statement on any edits made of source work in TEI edition for reasons of regularizing the work for digital format</p>
            </normalization>
            <quotation>
               <p>
                  Information about treatment of quotations (preservation of original quotation marks, etc.)
               </p>
            </quotation>
            <hyphenation eol="hard">
               <p>Treatment of the hyphenation of the source</p>
            </hyphenation>
            <segmentation>
               <p>
                  Information about whether and how the text has been segmented (mostly for linguistic purposes)
               </p>
            </segmentation>
            <interpretation>
               <p>
                  Information about any interpretive information added to the text
               </p>
            </interpretation>
         </editorialDecl>
         <tagsDecl>
            <!--
 Used to document the tags used in the text, their frequency of use, and their default rendition 
-->
            <rendition xml:id="rend.head">font-size: 120%; text-align: center;</rendition>
            <namespace name="http://www.tei-c.org/ns/1.0">
               <tagUsage gi="head" occurs="17" render="rend.head">Description of how the tag is used</tagUsage>
               <!--  one <tagUsage> for each element type in <text>  -->
            </namespace>
         </tagsDecl>
         <classDecl>
            <taxonomy xml:id="DDC22">
               <bibl>
                  <title>Dewey Decimal Classification</title>
                  <edition>22nd print</edition>
                  <publisher>OCLC Online Computer Library Center, Inc.</publisher>
                  <pubPlace>Dublin, OH USA</pubPlace>
               </bibl>
            </taxonomy>
         </classDecl>
         <charDecl>
            <desc>
               Definitions of characters glyphs, e.g. characters not (yet) in Unicode, or to differentiate separate glyphs used for same character
            </desc>
            <char xml:id="for_empty_g">
               <charName>
                  name is required (even if only CJK UNIFIED IDEOGRAPH xxx)
               </charName>
               <charProp>
                  <localName>name of a non-Unicode property</localName>
                  <value>property value</value>
               </charProp>
               <mapping type="important_to_have_a_type">char_to_which_its_mapped</mapping>
               <graphic url="./charPic.png"/>
            </char>
            <glyph xml:id="for_g">
               <glyphName>required</glyphName>
               <desc>brief description, if desired</desc>
               <charProp>
                  <unicodeName>name of a Unicode property</unicodeName>
                  <value>property value</value>
               </charProp>
               <mapping>optional</mapping>
               <graphic url="./glyph.png"/>
            </glyph>
         </charDecl>
      </encodingDesc>
      <profileDesc><!-- Optional. profileDesc groups elements that record such information as creation data (<creation/>), language (<langUsage/>), abstract (<abstract/>), description of text (<textDesc/>), description of setting of text (<settingDesc/>), personography data (<particDesc/>) -->
         <handNotes><!--  List of the handwriting that appears in the text  -->
            <handNote xml:id="hojhf" medium="blueInk" scope="major" scribe="JHFlanders" script="plain"/><!-- the details of one particular set of handwriting are specified on the attributes -->
            <handNote xml:id="hosdb" medium="pencil" scope="minor" scribe="SDBauman" script="sloppy"/>
         </handNotes>
         <creation><!-- where we recorded publication data of source work under <sourceDesc> above, here we can track information known of the creation of source work -->
            <date>Creation Date of Source Work</date>
            <listChange><!-- records information on changes/revisions to source work during stages of its creation; <revisionDesc> can be used after <listChange> to record information on changes/revisions to the TEI edition; can add more <change/> sections to track multiple changes/revisions -->
               <change>A note on change/revision made at a particualr stage in the creation of source work...</change>
            </listChange>
         </creation>
         <langUsage>
            <language ident="en-US"><!-- a good online resource for language subtags can be found here: http://r12a.github.io/apps/subtags/ -->Language of Source Work</language>
         </langUsage>
         <abstract><!-- add a description or abstract of source work --><p>Abstract of source work...</p></abstract>
         <textDesc><!--  provides a full description of the situation within which a text was produced or experienced; this is a commonly occuring yet complex section of the header, and its attributes and values; see the following for a detailed overview of each grouped element in this section: http://www.tei-c.org/release/doc/tei-p5-doc/en/html/CC.html#CCAHTD -->
            <channel mode="x"><!-- allowed values of "mode" include: s (spoken); w (written); sw (spoken to be written) e.g. dictation; ws (written to be spoken) e.g. a script; m (mixed); x
(unknown or inapplicable) [Default] --></channel>
            <constitution type="single"><!-- allowed values of "constitution" include: single (a single complete text [Default]); composite (a text made by combining several smaller items, each individually complete); frags (fragments, a text made by combining several smaller, not necessarily complete, items); unknown (composition unknown or unspecified) --></constitution>
            <derivation type="original"><!-- sample values of "derivation" include: original (text is original); revision (text is a revision of some other text); translation (text is a translation of some other text); abridgment (text is an abridged version of some other text); plagiarism (text is plagiarized from some other text); traditional (text has no obvious source but is one of a number derived from some common ancestor) --></derivation>
            <domain type="education"><!-- sample values of "domain" include: art (art and entertainment); domestic (domestic and private); religious (religious and ceremonial); business (business and work place); education (education); govt (government, government and law); public (other forms of public context)  -->educational resource</domain>
            <factuality type="inapplicable"><!-- allowed values include: fiction (the text is to be regarded as entirely imaginative); fact (the text is to be regarded as entirely informative or factual); mixed (the text contains a mixture of fact and fiction); inapplicable (the fiction/fact distinction is not regarded as helpful or appropriate to this text) -->one of many models of TEI encoding based on standard guidelines</factuality>
            <interaction type="inapplicable" active="singular" passive="world"><!-- for a full description of these optional attributes and their suggested or allowed values, see: http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-interaction.html --></interaction>
            <preparedness type="formulaic"><!-- sample values include: none (spontaneous or unprepared); scripted (follows a script); formulaic (follows a predefined set of conventions);
revised (polished or revised before presentation) --></preparedness>
            <purpose type="inform" degree="high"><!-- for a full description of these optional attributes and their suggested or allowed values, see: http://www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-purpose.html --></purpose>
         </textDesc>
         <settingDesc><!-- this section is used to describe the setting or settings in which language interaction takes place in the source work. We can write out a prose description using <p> or the following elements grouped by <setting>. We can use additional <setting> sections to record information where there is more than one setting -->
            <setting>
               <name><!-- often used to refer to location of setting (e.g., paris); the accompanying attribute @type on <name> may include "person," "place," or one may use <perName>, <placeName>, <orgName> alternatively to <name> --> Place Name of setting</name>
               <date><!-- any identifiable date associated with the setting --> Date associated with setting</date>
               <time><!-- a phrase describing the setting's time of day -->Time associated with setting</time>
               <locale><!-- a brief informal description of the setting's location  -->Location of setting</locale>
               <activity><!-- a brief informal description of the actions (other than speaking) of participants in setting -->Activities of participants in setting</activity>
            </setting>   
         </settingDesc>
         
        <particDesc><!-- Personography and Orgography data may go here as well; for a more detailed example of internal and external ography handling, please see: -->
           <listPerson>
              <person xml:id="pers_oscarwilde">
                 <persName>Oscar Wilde</persName>
              </person>
           </listPerson>
            <listOrg>
               <org xml:id="idorgs"></org>
               <!-- ... -->
            </listOrg>
         </particDesc>
      </profileDesc>
      <revisionDesc><!-- Optional. revisionDesc tracks the revision history of the encoded document -->
         <change when="2016-11-11" who="#BJD">Added revision description to header to represent this metadata section.</change>
      </revisionDesc>
   </teiHeader>
   <text>
      <body>
        <p><!--document body content goes here--></p>
      </body>
   </text>
</TEI>
The Importance of Being Earnest A trivial comedy for serious people A TEI edition Oscar Wilde Name of sponsor Name of funder Name of editor Name of the lead researcher Contributor's Name Contributor's Role Edition statement... Name of person About .3 megabytes 1 page of source material Publisher Name
Address Line 1,
0-19-254705-4 Summary statement of which license applies to this TEI file

Availablity statement continued...

Publication Date Distributor of this TEI Edition Availability Date
Title of Series ed. by... Name of Editor biblScope... idno... Notes on the text... Title of Source Work Author of Source Work Place of Publication of Source Work Publisher of Source Work Publication Date of Source Work.

A Project Description ...

Information about text(s) in collection

A Correction statement on any edits made of source work in TEI edition

A Normalization statement on any edits made of source work in TEI edition for reasons of regularizing the work for digital format

Information about treatment of quotations (preservation of original quotation marks, etc.)

Treatment of the hyphenation of the source

Information about whether and how the text has been segmented (mostly for linguistic purposes)

Information about any interpretive information added to the text

font-size: 120%; text-align: center; Description of how the tag is used Dewey Decimal Classification 22nd print OCLC Online Computer Library Center, Inc. Dublin, OH USA Definitions of characters glyphs, e.g. characters not (yet) in Unicode, or to differentiate separate glyphs used for same character name is required (even if only CJK UNIFIED IDEOGRAPH xxx) name of a non-Unicode property property value char_to_which_its_mapped required brief description, if desired name of a Unicode property property value optional
Creation Date of Source Work A note on change/revision made at a particualr stage in the creation of source work... Language of Source Work

Abstract of source work...

educational resource one of many models of TEI encoding based on standard guidelines Place Name of setting Date associated with setting Location of setting Activities of participants in setting
Added revision description to header to represent this metadata section.

Toolbox

Themes:

The Importance of Being Earnest A trivial comedy for serious people A TEI edition Oscar Wilde Name of sponsor Name of funder Name of editor Name of the lead researcher Contributor's Name Contributor's Role Edition statement... Name of person About .3 megabytes 1 page of source material Publisher Name
Address Line 1,
0-19-254705-4 Summary statement of which license applies to this TEI file

Availablity statement continued...

Publication Date Distributor of this TEI Edition Availability Date
Title of Series ed. by... Name of Editor biblScope... idno... Notes on the text... Title of Source Work Author of Source Work Place of Publication of Source Work Publisher of Source Work Publication Date of Source Work. the TEI Archiving, Publishing, and Access Service http://tapasproject.org/ Boston 42.360082 -71.058880 Northeastern University 42.340082 -71.089488
360 Huntington Ave Boston, MA 02115

A Project Description ...

Information about text(s) in collection

A Correction statement on any edits made of source work in TEI edition

A Normalization statement on any edits made of source work in TEI edition for reasons of regularizing the work for digital format

Information about treatment of quotations (preservation of original quotation marks, etc.)

Treatment of the hyphenation of the source

Information about whether and how the text has been segmented (mostly for linguistic purposes)

Information about any interpretive information added to the text

font-size: 120%; text-align: center; Description of how the tag is used Dewey Decimal Classification 22nd print OCLC Online Computer Library Center, Inc. Dublin, OH USA Definitions of characters glyphs, e.g. characters not (yet) in Unicode, or to differentiate separate glyphs used for same character name is required (even if only CJK UNIFIED IDEOGRAPH xxx) name of a non-Unicode property property value char_to_which_its_mapped required brief description, if desired name of a Unicode property property value optional
Creation Date of Source Work A note on change/revision made at a particualr stage in the creation of source work... Language of Source Work

Abstract of source work...

educational resource one of many models of TEI encoding based on standard guidelines Place Name of setting Date associated with setting Location of setting Activities of participants in setting Oscar Wilde
Added revision description to header to represent this metadata section.