wiki:schema/tei-notes

Version 7 (modified by jwillenborg, 13 years ago) (diff)

--

TEI: Notes

Definition: note: contains a note or annotation (see TEI definition)
Definition: user note: a note which contains the name of the user who is the author of the note and its date of creation or last update

Example: note

XML-Definition:

<p>Joey Ramone said: "When we started up in March of ’74, it was because the bands we loved, the rock ’n’ roll that we knew, had disappeared. We were playing music for ourselves." 
<note n="1" place="bottom">Joey Ramone 1974, see <ref target="http://mpdl-proto.mpiwg-berlin.mpg.de/tei/en/ramones_2004.xml#p6s2">Ramones 2004, Page 6, Sentence 2</ref>
</note>
</p>

Display:

Joey Ramone said: "When we started up in March of ’74, it was because the bands we loved, the rock ’n’ roll that we knew, had disappeared. We were playing music for ourselves." 1

Notes
1: Joey Ramone 1974, see Ramones 2004, Page 6, Sentence 2

Example: user note

XML definition:

<p>Joey Ramone said: "When we started up in March of ’74, it was because the bands we loved, the rock ’n’ roll that we knew, had disappeared. We were playing music for ourselves." 
<note n="1" place="bottom">Joey Ramone 1974, see <ref target="http://mpdl-proto.mpiwg-berlin.mpg.de/tei/en/ramones_2004.xml#p6s2">Ramones 2004, Page 6, Sentence 2</ref>
  <persName>
    <forename>Joe</forename>
    <surname>Miller</surname>
    <placeName>New York City</placeName>
  </persName>
  <date when="2011-06-16T11:11:11.000Z">June 16, 2011</date>
</note>
<note n="2" place="bottom">Joey Ramone 1974, see also <ref target="http://de.wikipedia.org/wiki/Ramones">Wikipedia Artikel: Ramones</ref>
  <persName>
    <forename>Henry</forename>
    <surname>Blake</surname>
    <placeName>Washington</placeName>
  </persName>
  <date when="2011-06-20T11:11:11.000Z">June 20, 2011</date>
</note>
</p>

Display:

Joey Ramone said: "When we started up in March of ’74, it was because the bands we loved, the rock ’n’ roll that we knew, had disappeared. We were playing music for ourselves." 1 2

Notes
1: Joey Ramone 1974, see Ramones 2004, Page 6, Sentence 2 (Joe Miller. New York City. June 16, 2011)
2: Joey Ramone 1974, see also Wikipedia Artikel: Ramones (Henry Blake. Washington. June 20, 2011)


Storing user notes externally:
User notes could also be stored externally so that they are not part of the XML definition itself. When the XML document is displayed the XML document and its external user notes are fetched and presented. For example an external user note could be stored as an XML object with XPointer identifier:

<object xpointer="http://yourServer.org/your_ramones_text.xml#xpointer(id('page1')/TEI[1]/text[1]/body[1]/chap[1]/p[1]/s[1])">
  <note n="1" place="bottom">Joey Ramone 1974, see <ref target="http://mpdl-proto.mpiwg-berlin.mpg.de/tei/en/ramones_2004.xml#p6s2">Ramones 2004, Page 6, Sentence 2</ref>
    <persName>
      <forename>Joe</forename>
      <surname>Miller</surname>
      <placeName>New York City</placeName>
    </persName>
    <date when="2011-06-16T11:11:11.000Z">June 16, 2011</date>
  </note>
</object>