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> |
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 | | |