<address>
Address/Contact Information
Container element for contact information such as a postal address for a person or organization.
Attributes
Content Model
<!ELEMENT address %address-model; >
Expanded Content Model
((institution | institution-wrap)*, addr-line*, city?, state?, postal-code?, country, phone*, fax*, email*, ext-link*, uri*)
Description
The following, in order:
- Any combination of:
- <addr-line> Address Line, zero or more
- <city> City, zero or one
- <state> State or Province, zero or one
- <postal-code> Postal Code, zero or one
- <country> Country: in an Address
- <phone> Phone Number: in an Address, zero or more
- <fax> Fax Number: in an Address, zero or more
- Linking Elements
- <email> Email Address, zero or more
- <ext-link> External Link, zero or more
- <uri> Uniform Resource Identifier (URI), zero or more
Example
...
<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>
...