<uri> Uniform Resource Identifier (URI)

Identifies a Uniform Resource Identifier (such as a URL) that may be used as a live link, typically naming a website (such as: <uri>https://www.mulberrytech.com</uri>).

Usage/Remarks

Linking: While the <uri> element has the form of a URI such as a URL, it is not automatically a link, nor even expected to be a live link. To make this element into a live link, add the XLink @xlink:href attribute.
Related Elements
<self-uri> is used when a document or document component (such as an article or a chapter) is available in multiple forms, for example, as a means of indicating the online version of a print document. Conversely, a URI that indicates a different book, article, or any other kind of live-linked external reference is usually tagged as <ext-link>. The <uri> element, although allowed everywhere <ext-link> is used, is more typically part of an address, information concerning a contributor, or part of a reference citation. Loosely put, an external link <ext-link> element is intended to act as a link; a URI <uri> element identifies a URI (such as a URL) in the text, but may or may not be a traversable link; and the <self-uri> points to another form of the same document. To make any of these elements into a live link, add the XLink @xlink:href attribute.
The elements used in an address may include the address class elements: <addr-line>, <city>, <country>, <fax>, <institution>, <institution-wrap>, <state>, <phone>, and <postal-code> and the address linking class elements: <email>, <ext-link>, and <uri>.
Attributes

Base Attributes

Namespaces

Models and Context
May be contained in
Description
Text, numbers, or special characters, zero or more
Content Model
<!ELEMENT  uri          (#PCDATA %uri-elements;)*                    >
Expanded Content Model

(#PCDATA)*

Tagged Samples
In citations
Mixed citation
...
<ref>
 <mixed-citation publication-type="book" publication-format="web">
  <source>Fact sheet: AIDS information resources</source>
  [Internet]. <publisher-loc>Bethesda
  (MD)</publisher-loc>: <publisher-name>National
  Library of Medicine (US)</publisher-name>;
  <year iso-8601-date="2003-05-02">2003</year> <month>May</month>
  <day>2</day> [updated <date-in-citation content-type="updated"
  iso-8601-date="2005-07-14">2005 Jul 14</date-in-citation>; 
  cited <date-in-citation content-type="access-date"
  iso-8601-date="2006-11-15">2006 Nov 15</date-in-citation>].
  <size units="screens">[about 3 screens]</size>. Available from:
  <uri>http://www.nlm.nih.gov/pubs/factsheets/aidsinfs.html</uri>.
 </mixed-citation>
</ref>
...
Element citation
...
<ref>
 <element-citation publication-type="book" publication-format="web">
  <source>Fact sheet: AIDS information resources</source>
  <comment>[Internet]</comment>
  <publisher-loc>Bethesda (MD)</publisher-loc>
  <publisher-name>National Library of Medicine (US)</publisher-name>
  <year iso-8601-date="2003-05-02">2003</year>
  <month>May</month>
  <day>2</day>
  <date-in-citation content-type="updated"
    iso-8601-date="2005-07-14">updated 2005 Jul 14</date-in-citation>
  <date-in-citation content-type="access-date"
    iso-8601-date="2006-11-15">cited 2006 Nov 15</date-in-citation>
  <size units="screens">[about 3 screens]</size>
  <comment>Available from:
   <uri>http://www.nlm.nih.gov/pubs/factsheets/aidsinfs.html</uri>
  </comment>
 </element-citation>
</ref>
...
<article-meta>
...
<article-meta>
 ...
 <contrib-group>
  <contrib contrib-type="author">
   <name><surname>Silverstein</surname>
    <given-names>Michael Q.</given-names></name>
   <aff id="UWW">
    <institution>Department of Pathobiology
     University of WallieWash</institution>
    <addr-line>Oberlin, Washington 96204</addr-line>
    <country>USA</country>
   </aff>
  </contrib>

  <contrib contrib-type="author">
   <name><surname>Taylor</surname>
    <given-names>James C.</given-names></name>
   <degrees>Ph D</degrees>
   <aff id="affKalakukko">Kalakukko Corporation</aff>
   <address>
    <institution>Kalakukko Corporation</institution>
    <addr-line>17 West Jefferson St.</addr-line>
    <addr-line>Suite 207</addr-line>
    <addr-line>New South Finland, MD 20856.</addr-line>
    <country>USA</country>
    <phone>(301) 754-5766</phone>
    <fax>(301) 754-5765</fax>
    <email>jct@kalakukko.com</email>
    <uri>http://www.kalakukko.com</uri>
   </address>
  </contrib>
 </contrib-group>
 ...
</article-meta>
...