Changes between Version 18 and Version 19 of schema


Ignore:
Timestamp:
Mar 13, 2011, 11:49:25 AM (13 years ago)
Author:
jwillenborg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schema

    v18 v19  
    160160* MathML elements: m:*
    161161* SVG elements: svg:*
    162 * XHTML elements (e.g. table and list elements): xhtml:* (planned in future)
     162
    163163
    164164=== Example ===
    165165
    166 In 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“) and a formula in MathML. The second line (beginning with "<?oxygen RNGSchema=") could be omitted when no additional TEI elements (e.g. MathML) are used.
     166In the following simple example the metadata part ("teiHeader") consists of 5 elements („author“, „title“, „language“, „date“, "idno") and the text part consists of 2 pages („pb“) with 2 paragraphs („p“) which contains 3 sentences („s“).
    167167{{{
    168168<?xml version="1.0" encoding="UTF-8"?>
    169 <?oxygen RNGSchema="http://mpdl-proto.mpiwg-berlin.mpg.de/exist/rest/db/mpdl/schema/tei/tei_allPlus.rnc" type="compact"?>
    170169<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:m="http://www.w3.org/1998/Math/MathML">
    171170  <teiHeader>
     
    218217      </p>
    219218      <figure facs="fig-0001.jpg"></figure>
    220       <p>And this is a formula in MathML:
    221         <formula>
    222         <m:math>
    223           <m:mrow>
    224             <m:msup>
    225              <m:mi>x</m:mi>
    226              <m:mn>2</m:mn>
    227             </m:msup>
    228           </m:mrow>
    229        </m:math>
    230        </formula>
    231       </p>
    232219    </body>
    233220  </text>