<addr-line> Address Line

One physical or logical line of an address.

Usage/Remarks

An address (<address>) is a postal address and/or other contact information. An address line (<addr-line>) is one physical or logical line of an address, typically containing undifferentiated portions of an <address> such as street addresses, post box numbers, building numbers, mailstops, etc. They are called “lines” because addresses are frequently divided onto multiple lines, and this encoding allows that fact to be preserved.
There are many ways to tag an address: as text; as a series of named address elements including <country>, <email>, and <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.
Related Elements
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

Models and Context
May be contained in
Description
Any combination of:
Content Model
<!ELEMENT  addr-line    (#PCDATA %addr-line-elements;)*              >
Expanded Content Model

(#PCDATA | email | ext-link | uri | inline-supplementary-material | related-article | related-object | hr | bold | fixed-case | italic | monospace | overline | overline-start | overline-end | roman | sans-serif | sc | strike | underline | underline-start | underline-end | ruby | alternatives | inline-graphic | inline-media | private-char | chem-struct | inline-formula | tex-math | mml:math | abbrev | index-term | index-term-range-end | milestone-end | milestone-start | named-content | styled-content | fn | target | xref | sub | sup | x | city | country | fax | institution | institution-wrap | phone | postal-code | state)*

Tagged Sample

Inside affiliation and address

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