PGTEI Examples

From DPWiki
Jump to navigation Jump to search
Replacement filing cabinet.svg Attention

This page has been kept for Archival and Historical Purposes and does not reflect the latest information and documentation regarding DP. Please see the Official Documentation for the latest information, or ask around on the Forums. Thank you.

Note: PGTEI is no longer used at DP. Information on this page may be out of date.

See also: PGTEI

See also: The Guide to PGTEI

See also: TEI Lite: An Introduction to Text Encoding for Interchange

<corr>

<corr> is the TEI element used to correct errors in the original text. It is used as a transcriber's note. Since, the correction is embedded in the TEI file. It can be used by an academic researcher to locate corrections made to the original text. Therefore, there is no reason to provide a Errata Page for the general reader.

It is used with to attributes sic and resp. sic is the original error. resp is the person responsible for the correction. If the attribute resp is used, a <respStmt> element must be included in the <teiHeader>.

Typo

An example of a typo correction:

This is an eror[** typo: error] in the text.

using <corr> element:

This is an <corr sic="eror" resp="Your Name">error</corr> in the text.

renders as:

This is an error in the text.

Addition

An example of missing punctuation:

"A comma is missing[** missing: ,]" he said.

using <corr> element:

"A comma is missing<corr sic="" resp="Your Name">,</corr>" he said.

renders as:

"A comma is missing," he said.

Deletion

An example of deleting a word:

He had had[** extra: had] a small dog.

using <corr> element:

He had <corr sic="had" resp="Your Name"></corr> a small dog.

renders as:

He had a small dog.

See also: Editorial Interventions

<respStmt>

<respStmt> is the TEI element used to state the name of the person, who has made corrections to the original text.

The usage is as:

<teiHeader>
  <fileDesc>
    <titleStmt>
      <respStmt>
        <resp>Corrections made by</resp>
        <name>Your Name</name>
      </respStmt>
    </titleStmt>
  </fileDesc>
</teiHeader>

See also: The Title Statement