xml:lang Language
Usage/Remarks
Inheritance
- all of an element’s textual content,
- all of the element’s children and descendents (even the multimedia ones),
- all of the element’s attributes.
Related Attributes
Script and Language
- A language code Language (typically using the shortest ISO 639)
- Potentially followed by a hyphen and then a script code (Script using the ISO 15924 code)
- Potentially followed by a hyphen and a region code (Region using the ISO 15924 code)
- Language subtag plus Script subtag: xml:lang="zh-Hant" (Chinese written using the Traditional Chinese script)
- Language subtag plus Script subtag: xml:lang="zh-Hans" (Chinese written using the Simplified Chinese script)
- Language-Script-Region: xml:lang="zh-Hans-CN" (Chinese written using the Simplified script as used in mainland China)
- Language-Script-Region: xml:lang="sr-Latn-RS" (Serbian written using the Latin script as used in Serbia)
- xml:lang="ja-Hira" (Japanese written in Hiragana)
- xml:lang="ja-Hrkt" (Japanese written in Hiragana + Katakana)
- xml:lang="ja-Jpan" (Japanese written in Han + Hiragana + Katakana)
- xml:lang="ja-Hani" (Japanese written in Kanji (Hanzi, Hanja, Han))
- xml:lang="ja-Kana" (Japanese written in Katakana)
OPTIONAL (defaults to en) on element: <article>
Value | Meaning |
---|---|
An alphanumeric string, which may include hyphens | An abbreviation for a natural language (such as “en” for English or “de” for German) or for a language and a script (“ja-Kana”). |
Default value | en |
OPTIONAL on many elements; click for list and usage
<abbrev>, <abstract>, <ack>, <addr-line>, <address>, <aff>, <alt-text>, <alt-title>, <annotation>, <anonymous>, <answer>, <answer-set>, <app>, <app-group>, <array>, <article-title>, <attrib>, <author-comment>, <award-desc>, <award-group>, <award-id>, <award-name>, <bio>, <boxed-text>, <caption>, <chapter-title>, <chem-struct>, <chem-struct-wrap>, <city>, <code>, <collab>, <comment>, <conf-acronym>, <conf-date>, <conf-loc>, <conf-name>, <conf-num>, <conf-sponsor>, <conf-theme>, <conference>, <contrib-id>, <contributed-resource-group>, <copyright-holder>, <copyright-statement>, <country>, <custom-meta>, <custom-meta-group>, <data-title>, <date-in-citation>, <day>, <def>, <def-item>, <def-list>, <degrees>, <disp-formula>, <disp-formula-group>, <disp-quote>, <edition>, <element-citation>, <email>, <era>, <etal>, <explanation>, <ext-link>, <fig>, <fn>, <fn-group>, <fpage>, <funding-group>, <funding-source>, <funding-statement>, <glossary>, <gov>, <graphic>, <index-term>, <inline-formula>, <inline-graphic>, <inline-media>, <inline-supplementary-material>, <institution>, <institution-id>, <issue>, <issue-id>, <issue-part>, <issue-title>, <journal-id>, <kwd-group>, <label>, <license>, <list>, <list-item>, <long-desc>, <lpage>, <media>, <mixed-citation>, <month>, <name>, <named-content>, <nlm-citation>, <on-behalf-of>, <open-access>, <option>, <p>, <page-range>, <part-title>, <patent>, <person-group>, <postal-code>, <prefix>, <preformat>, <price>, <principal-award-recipient>, <principal-investigator>, <product>, <publisher-loc>, <publisher-name>, <question>, <question-preamble>, <question-wrap>, <question-wrap-group>, <rb>, <ref>, <ref-list>, <related-article>, <related-object>, <resource-group>, <resource-id>, <resource-name>, <role>, <rt>, <season>, <sec>, <see>, <see-also>, <self-uri>, <series>, <size>, <source>, <speaker>, <speech>, <state>, <statement>, <std>, <std-organization>, <string-date>, <string-name>, <styled-content>, <subj-group>, <subtitle>, <suffix>, <supplement>, <supplementary-material>, <support-description>, <support-group>, <support-source>, <table-wrap>, <target>, <term>, <textual-form>, <trans-source>, <trans-title>, <uri>, <verse-group>, <verse-line>, <version>, <volume>, <volume-id>, <volume-series>, <xref>, <year>
Value | Meaning |
---|---|
An alphanumeric string, which may include hyphens | An abbreviation for a natural language (such as “en” for English or “de” for German) or for a language and a script (“ja-Kana”). |
Restriction | @xml:lang is an optional attribute; there is no default. |
Tagged Samples
Romanized Japanese name referred to as an “English” name
...
<name name-style="western" xml:lang="en">
<surname>Sonoda</surname>
<given-names>Naoko</given-names>
</name>
...
Within a citation, names the language of the book title (German) and a translated title (English)
... <ref> <element-citation publication-type="book"> <person-group person-group-type="author"> <name><surname>Hartmeier</surname> <given-names>Winifried</given-names></name> </person-group> <source xml:lang="de">Immobilisierte Biokatalysstoren</source> <trans-source xml:lang="en">Immobilized biocatalysts</trans-source> <publisher-loc>Berlin</publisher-loc> ... </element-citation> </ref> ...