◇◆
<country> Country: in an Address
Country name used within an address.
Attributes
Multi-lang Attributes
Models and Context
May be contained in
Description
Any combination of:
- Text, numbers, or special characters
- <x> X - Generated Text and Punctuation
Content Model
<!ELEMENT country (#PCDATA %country-elements;)* >
Expanded Content Model
(#PCDATA | x)*
Tagged Samples
<country>
The element content for <country> is uncontrolled, but the @country attribute should use a strict vocabulary (such as the ISO 3166-1 Alpha-2 codes, see
example below).
...
<address>
...
<country country="GB">United Kingdom</country>
</address>
...
Without country code attribute (@country)
... <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> ...