Changes between Version 3 and Version 4 of schema


Ignore:
Timestamp:
Jan 4, 2011, 1:55:08 PM (13 years ago)
Author:
jwillenborg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schema

    v3 v4  
    1212=== Example ===
    1313
    14 In 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“).
     14In the following simple example 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“).
    1515{{{
    1616<?xml version="1.0" encoding="UTF-8"?>
    1717<archimedes xmlns:xlink="http://www.w3.org/1999/xlink">
    1818  <info>
    19     <author>Your name, your prename</author>
    20     <title>Your title</title>
     19    <author>Name, Prename</author>
     20    <title>Title</title>
    2121    <lang>en</lang>
    2222    <date>1789</date>
    2323  </info>
    2424  <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>
     25    <body>
     26      <pb xlink:href="0001.jpg"/>
     27      <p>
     28        <s>This is the first sentence of the first paragraph.</s>
     29        <s>This is the second sentence of the first paragraph.</s>
     30        <s>This is the third sentence of the first paragraph.</s>
     31      </p>
     32      <p>
     33        <s>This is the first sentence of the second paragraph.</s>
     34        <s>This is the second sentence of the second paragraph.</s>
     35        <s>This is the third sentence of the second paragraph.</s>
     36      </p>
     37      <pb xlink:href="0002.jpg"/>
     38      <p>
     39        <s>This is the first sentence of the first paragraph with line <lb/>break.</s><lb/>
     40        <s>This is the second sentence of the first paragraph with line <lb/>break.</s><lb/>
     41        <s>This is the third sentence of the first paragraph with line <lb/>break.</s><lb/>
     42      </p>
     43      <p>
     44        <s>This is the first sentence of the second paragraph.</s>
     45        <s>This is the second sentence of the second paragraph.</s>
     46        <s>This is the third sentence of the second paragraph.</s>
     47      </p>
     48    </body>
    4749  </text>
    4850</archimedes>
     
    8284=== Example ===
    8385
    84 In 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“).
     86In the following simple example 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“).
    8587{{{
    8688<?xml version="1.0" encoding="UTF-8"?>
    8789<echo xmlns="http://www.mpiwg-berlin.mpg.de/ns/echo/1.0/" xmlns:dcterms="http://purl.org/dc/terms">
    8890  <metadata>
    89     <dcterms:creator>Your name, your prename</dcterms:creator>
    90     <dcterms:title>Your title</dcterms:title>
     91    <dcterms:creator>Name, Prename</dcterms:creator>
     92    <dcterms:title>Title</dcterms:title>
    9193    <dcterms:language>en</dcterms:language>
    9294    <dcterms:date>1789</dcterms:date>
     
    127129The TEI Lite schema is developed by the [http://www.tei-c.org/ Text Encoding Initiative] and could be found
    128130[http://www.tei-c.org/Guidelines/Customization/Lite/ here].
     131
     132=== Example ===
     133
     134In the following simple example the metadata part (teiHeader) consists of 4 elements („author“, „title“, „language“, „date“) and the text part consists of 2 pages („pb“) with 2 paragraphs („p“) which contains 3 sentences („s“).
     135{{{
     136<?xml version="1.0" encoding="UTF-8"?>
     137<TEI xmlns="http://www.tei-c.org/ns/1.0">
     138  <teiHeader>
     139    <fileDesc>
     140      <titleStmt>
     141        <author>Name, Prename</author>
     142        <title>Title</title>
     143      </titleStmt>
     144      <publicationStmt>
     145        <date>1789</date>
     146      </publicationStmt>
     147    </fileDesc>
     148    <profileDesc>
     149      <langUsage>
     150        <language ident="en">English</language>
     151      </langUsage>
     152    </profileDesc>
     153  </teiHeader>
     154  <text>
     155    <body>
     156      <pb facs="0001.jpg"/>
     157      <p>
     158        <s>This is the first sentence of the first paragraph.</s>
     159        <s>This is the second sentence of the first paragraph.</s>
     160        <s>This is the third sentence of the first paragraph.</s>
     161      </p>
     162      <p>
     163        <s>This is the first sentence of the second paragraph.</s>
     164        <s>This is the second sentence of the second paragraph.</s>
     165        <s>This is the third sentence of the second paragraph.</s>
     166      </p>
     167      <pb facs="0002.jpg"/>
     168      <p>
     169        <s>This is the first sentence of the first paragraph with line <lb/>break.</s><lb/>
     170        <s>This is the second sentence of the first paragraph with line <lb/>break.</s><lb/>
     171        <s>This is the third sentence of the first paragraph with line <lb/>break.</s><lb/>
     172      </p>
     173      <p>
     174        <s>This is the first sentence of the second paragraph.</s>
     175        <s>This is the second sentence of the second paragraph.</s>
     176        <s>This is the third sentence of the second paragraph.</s>
     177      </p>
     178    </body>
     179  </text>
     180</TEI>
     181}}}
     182