Changes between Version 2 and Version 3 of schema


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

--

Legend:

Unmodified
Added
Removed
Modified
  • schema

    v2 v3  
    11= Schema support =
    22
     3The MPDL document storing and querying system supports the document schemas Archimedes and Echo. A subset of TEI-Lite will be supported in the near future.
     4 
    35== Archimedes ==
     6
     7=== Schema ===
     8
     9The Archimedes schema was developed by the [http://archimedes.mpiwg-berlin.mpg.de Archimedes project] and could be found
     10[https://itgroup.mpiwg-berlin.mpg.de:8080/svn/mpdl-project-content/trunk/texts/eXist/archimedesOldCVSRepository/archimedes/xsd/archimedes.xsd here].
     11
     12=== Example ===
     13
     14In the following simple example document the metadata part consists of 4 elements („author“, „title“, „lang“, „date“) and the text part consists of 2 pages („pb“) with 2 paragraphs („p“) which contains 3 sentences („s“).
     15{{{
     16<?xml version="1.0" encoding="UTF-8"?>
     17<archimedes xmlns:xlink="http://www.w3.org/1999/xlink">
     18  <info>
     19    <author>Your name, your prename</author>
     20    <title>Your title</title>
     21    <lang>en</lang>
     22    <date>1789</date>
     23  </info>
     24  <text>
     25    <pb xlink:href="0001.jpg"/>
     26    <p>
     27      <s>This is the first sentence of the first paragraph.</s>
     28      <s>This is the second sentence of the first paragraph.</s>
     29      <s>This is the third sentence of the first paragraph.</s>
     30    </p>
     31    <p>
     32      <s>This is the first sentence of the second paragraph.</s>
     33      <s>This is the second sentence of the second paragraph.</s>
     34      <s>This is the third sentence of the second paragraph.</s>
     35    </p>
     36    <pb xlink:href="0002.jpg"/>
     37    <p>
     38      <s>This is the first sentence of the first paragraph with line <lb/>break.</s><lb/>
     39      <s>This is the second sentence of the first paragraph with line <lb/>break.</s><lb/>
     40      <s>This is the third sentence of the first paragraph with line <lb/>break.</s><lb/>
     41    </p>
     42    <p>
     43      <s>This is the first sentence of the second paragraph.</s>
     44      <s>This is the second sentence of the second paragraph.</s>
     45      <s>This is the third sentence of the second paragraph.</s>
     46    </p>
     47  </text>
     48</archimedes>
     49}}}
    450
    551== Echo ==
     
    72118</echo>
    73119}}}
    74 == TEI ==
     120
     121== TEI Lite ==
     122
     123A subset of TEI-Lite will be supported in the near future.
     124
     125=== Schema ===
     126
     127The TEI Lite schema is developed by the [http://www.tei-c.org/ Text Encoding Initiative] and could be found
     128[http://www.tei-c.org/Guidelines/Customization/Lite/ here].