<address>

Address/Contact Information

Container element for contact information such as a postal address for a person or organization.

Remarks

There are many ways to tag an address: as text; as a series of named address elements including <country>, <email>, <fax>; as a series of address lines <addr-line>, which may or may not have other elements such as <country> identified within them as a mixture of named elements and address lines; etc.

Common Practice: If the address is divided into lines, the lines can be preserved using the <addr-line> element. If the address is just a block of undifferentiated text, numbers, or special characters, the entire address may be placed inside one <addr-line> element.

Attributes

content-type Type of Content
id Document Internal Identifier
specific-use Specific Use
xml:base Base
xml:lang Language

Related Elements

The elements used in an address may include the address class elements: <addr-line>, <country>, <fax>, <institution>, <institution-wrap>, and <phone> and the address linking class elements: <email>, <ext-link>, and <uri>.

Content Model

<!ELEMENT  address      %address-model;                              >

Expanded Content Model

(addr-line | country | fax | institution | institution-wrap | phone | email | ext-link | uri | label | x)*

Description

Any combination of:

This element may be contained in:

<abstract>, <ack>, <answer>, <app>, <app-group>, <bio>, <body>, <boxed-text>, <collab>, <contrib>, <contrib-group>, <disp-quote>, <glossary>, <index>, <index-div>, <index-group>, <license-p>, <named-book-part-body>, <named-content>, <notes>, <p>, <question>, <ref-list>, <sec>, <styled-content>, <toc>, <toc-div>, <toc-entry>, <toc-group>, <trans-abstract>

Example 1

A combination of address lines and semantic elements

    
...
<contrib contrib-type="author" rid="IIDR">
<name><surname>Taylor</surname>
<given-names>James C.</given-names></name>
<degrees>PhD</degrees>
<aff id="IIDR">
<institution>Institute of Infectious Disease Research
</institution>
<break/>
<addr-line>Oberlin, MD 20869</addr-line>
</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>
...


   

Example 2

Only address lines

    
...
<contrib contrib-type="author" rid="IIDR">
<name><surname>Taylor</surname>
<given-names>James C.</given-names></name>
<degrees>PhD</degrees>
<aff id="IIDR">
<institution>Institute of Infectious Disease Research
</institution>
<break/>
<addr-line>Oberlin, MD 20869</addr-line>
</aff>
<address>
<addr-line>Kalakukko Corporation</addr-line>
<addr-line>17 West Jefferson St.</addr-line>
<addr-line>Suite 207</addr-line>
<addr-line>New South Finland, MD 20856 USA</addr-line>
<addr-line>Phone: (301) 754-5766 Fax: (301) 754-5765</addr-line>
<addr-line>jct@kalakukko.com</addr-line>
<addr-line>http://www.kalakukko.com</addr-line>
</address>
</contrib>
...


   

Example 3

No semantic elements

    
...
<contrib contrib-type="author" rid="IIDR">
<name><surname>Taylor</surname>
<given-names>James C.</given-names></name>
<degrees>PhD</degrees>
<aff id="IIDR">
<institution>Institute of Infectious Disease Research
</institution>
<break/>
<addr-line>Oberlin, MD 20869</addr-line>
</aff>
<address>
<addr-line>Kalakukko Corporation 17 West Jefferson 
St. Suite 207 New South Finland, MD 20856 USA 
(301) 754-5766 (301) 754-5765 
jct@kalakukko.com 
http://www.kalakukko.com</addr-line>
</address>
</contrib>
...