Changes between Version 6 and Version 7 of schema/tei-pointers


Ignore:
Timestamp:
Mar 8, 2011, 12:52:00 PM (13 years ago)
Author:
jwillenborg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • schema/tei-pointers

    v6 v7  
    1 === TEI: Elements for simple pointers and links ===
     1=== TEI: Elements for pointers and links ===
    22
    3 * <ptr> a pointer to another location in the current document in terms of one or more identifiable elements.
     3* <ptr> (pointer) defines a pointer to another location.
     4  * Examples:
     5    * <p>This is discussed in <ptr target="#TEILite"/>.</p>
     6    * <p>This is discussed in <ptr target="http://www.tei-c.org/TEI/Guidelines/SA.html"/></p>
     7    * <p>This is discussed in <ptr target="http://mpdl.mpiwg-berlin.mpg.de/music/ramones/ramones_2004.xml#xpointer((id('page6'))/></p>
     8    * A pointer named "myId1" to "myId2" is here <ptr xml:id="myId1" target="#myId2"/>
    49
    5 * <ref> a reference to another location in the current document, in terms of one or more identifiable elements, possibly modified by additional text or comment.
     10* <ref> (reference) defines a reference to another location, possibly modified by additional text or comment.
     11    * <p>This is discussed in <ref target="#TEIGuide">The TEI Guidelines</ref>.</p>
     12    * <p>This is discussed in <ref target="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</ref></p>
     13    * <p>This is discussed in <ref target="http://mpdl.mpiwg-berlin.mpg.de/music/ramones/ramones_2004.xml#xpointer((id('page6'))>Dick Porter: Ramones – The Complete Twisted History, London: Plexus, 2004. Page 6. ISBN 0859653269</ref></p>
    614
    715* <link> defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements (also possible between different documents)
     
    2432* <anchor> specifies a location or point within a document so that it may be pointed to.
    2533* <seg> identifies a span or segment of text within a document so that it may be pointed to.
    26 
    27 === TEI: Elements for extended pointers ===
    28 (also TEI XPointer could be used)
    29 
    30 * <xptr> defines a pointer to another location in the current document or an external document.
    31   * Examples:
    32     * <p>This is discussed in <xptr doc="TEIP3"/>.</p>
    33     * <xptr doc="OrbisPictus" from="id (animalia)"/>
    34     * <xptr doc="OrbisPictus" from="id (animalia)" to="id (aquaticae)"/>
    35     * <xptr doc="P3" from="id (SA) child (3 p)"/> (the third <p> element directly contained by whatever element has the identifier SA)
    36     * <p>This is discussed in <xptr url="http://www.tei-c.org/TEI/Guidelines/SA.html"/>
    37 
    38 * <xref> defines a pointer to another location in the current document or an external document, possibly modified by additional text or comment.
    39   * Examples:
    40     * <p>This is discussed in <xref doc="TEIP3">The TEI Guidelines</xref>.</p>
    41     * <p>This is discussed in <xref url="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</xref>
    42     --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html">the chapter on linking</a>
    43     * <p>This is discussed in <xref doc="TEIP3SA" from="id(SAXR)">the chapter on linking</xref>.</p>
    44     --> HTML: <p>This is discussed in <a href="http://www.tei-c.org/TEI/Guidelines/SA.html#SAXR">the subsection on external linking</a>
    45