Changes between Version 1 and Version 2 of schema


Ignore:
Timestamp:
Jan 4, 2011, 12:14:49 PM (13 years ago)
Author:
jwillenborg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schema

    v1 v2  
    55== Echo ==
    66
     7=== Schema ===
    78The MPDL Echo schema is developed by the schema group of this project and could be found
    89[https://itgroup.mpiwg-berlin.mpg.de:8080/tracs/mpdl-project-content/wiki/echo-schema here].
    910
     11=== Elements ===
     12An Echo document (element „echo“ with namespace „echo“) consists of a metadata part (element „metadata“) which contains the Dublin Core metadata of the document and a fulltext part (element „text“) which contains the content of the document.
    1013
     14Dublin Core metadata elements (namespace dcterms):
     15* identifier
     16* creator
     17* title
     18* date
     19* rights
     20* license
     21* accessRights
    1122
     23Fulltext elements:
     24* text flow elements: head, div (type, level, style), p (style), lb, cb, gap (extent)
     25* text structure elements: s
     26* figure elements: figure, image (file), caption (style), description (style), variables (style), handwritten (xlink:href)
     27* note elements: note (xlink:label), anchor (type, xlink:href)
     28* quotation elements: q, quote, blockquote, set-off
     29* translation elements: foreign (lang, xml:lang), reg (orig)
     30* mathematical elements: var (type), num, mml:*
     31* geographical elements: place, event, time
     32* person elements: person
     33* xhtml elements: xhtml:* : e.g. table, ul
     34* other elements: expan, emph (class), ref
     35
     36=== Example ===
     37
     38In the following simple example document the metadata part consists of 4 Dublin Core elements („creator“, „title“, „language“, „date“) and the text part consists of 2 pages („pb“) with 2 paragraphs („p“) which contains 3 sentences („s“).
     39{{{
     40<?xml version="1.0" encoding="UTF-8"?>
     41<echo xmlns="http://www.mpiwg-berlin.mpg.de/ns/echo/1.0/" xmlns:dcterms="http://purl.org/dc/terms">
     42  <metadata>
     43    <dcterms:creator>Your name, your prename</dcterms:creator>
     44    <dcterms:title>Your title</dcterms:title>
     45    <dcterms:language>en</dcterms:language>
     46    <dcterms:date>1789</dcterms:date>
     47  </metadata>
     48  <text>
     49    <pb file="0001"/>
     50    <p>
     51      <s>This is the first sentence of the first paragraph.</s>
     52      <s>This is the second sentence of the first paragraph.</s>
     53      <s>This is the third sentence of the first paragraph.</s>
     54    </p>
     55    <p>
     56      <s>This is the first sentence of the second paragraph.</s>
     57      <s>This is the second sentence of the second paragraph.</s>
     58      <s>This is the third sentence of the second paragraph.</s>
     59    </p>
     60    <pb file="0002"/>
     61    <p>
     62      <s>This is the first sentence of the first paragraph with line <lb/>break.</s><lb/>
     63      <s>This is the second sentence of the first paragraph with line <lb/>break.</s><lb/>
     64      <s>This is the third sentence of the first paragraph with line <lb/>break.</s><lb/>
     65    </p>
     66    <p>
     67      <s>This is the first sentence of the second paragraph.</s>
     68      <s>This is the second sentence of the second paragraph.</s>
     69      <s>This is the third sentence of the second paragraph.</s>
     70    </p>
     71  </text>
     72</echo>
     73}}}
    1274== TEI ==