lang-group Language Group (multi-language)

Used to associate alternate language versions (variants) of the same content, which JATS calls members of a language group.

Usage/Remarks

Why Language Groups: When substantial portions of document content are in more than one language, the same structures are often repeated, once in each language. These parallel structures (English phrase meaning the same content, differing only by language) need not be co-located in the document and a single language need not be contiguous. As an example, alternate sections could repeat the same content in French and English. As another example, a paragraph could also be repeated, first in Greek, then in Romanian, and then in Italian. The same figure could be presented in Spanish, English, and Portuguese.
Attributes Bind Language Groups: Members of a language group use the @lang-group attribute to associate the members of the group together. The value of the @lang-group attribute, which is the same for all members of the group, is an IDREF attribute pointing to the @id of one of the group members. The group member with the ID even points to itself.
The members of a language group need not be contiguous. That is, they may appear next to each other, but they may also appear in different places within a document. The members are bound together by the IDREF.
How Language Groups May be Used: Desirable functionality for language groups in an online environment might include:
  • allowing the user to choose whether to see one version (or another version) or all versions, and
  • allowing a user to find an article in a search using a filter specifying a particular language.
For example, for an article produced in both English and Spanish, a user could opt to see only the Spanish, only the English, or both. This would be a function of the display application supported by the JATS markup.
OPTIONAL on many elements; click for list and usage

<abbrev>, <abbrev-journal-title>, <abstract>, <ack>, <addr-line>, <address>, <aff>, <alt-text>, <alt-title>, <annotation>, <anonymous>, <answer>, <answer-set>, <app>, <app-group>, <array>, <article-title>, <article-version>, <attrib>, <author-comment>, <author-notes>, <award-desc>, <award-group>, <award-id>, <award-name>, <bio>, <bold>, <boxed-text>, <caption>, <chapter-title>, <chem-struct>, <chem-struct-wrap>, <city>, <code>, <collab>, <collab-name>, <collab-wrap>, <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>, <corresp>, <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>, <event>, <event-desc>, <explanation>, <ext-link>, <fig>, <fig-group>, <fixed-case>, <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-sponsor>, <issue-subtitle>, <issue-title>, <issue-title-group>, <italic>, <journal-id>, <journal-subtitle>, <journal-title>, <journal-title-group>, <kwd-group>, <label>, <legend>, <license>, <license-p>, <list>, <list-item>, <long-desc>, <lpage>, <media>, <milestone-start>, <mixed-citation>, <monospace>, <month>, <name>, <named-content>, <nlm-citation>, <note>, <notes>, <on-behalf-of>, <open-access>, <option>, <overline>, <overline-start>, <p>, <page-range>, <part-title>, <patent>, <permissions>, <person-group>, <postal-code>, <prefix>, <preformat>, <price>, <principal-award-recipient>, <principal-investigator>, <product>, <pub-date>, <publisher>, <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>, <response>, <role>, <roman>, <rt>, <sans-serif>, <sc>, <season>, <sec>, <see>, <see-also>, <self-uri>, <series>, <series-text>, <series-title>, <sig>, <size>, <source>, <speaker>, <speech>, <state>, <statement>, <std>, <std-organization>, <strike>, <string-conf>, <string-date>, <string-name>, <styled-content>, <sub>, <sub-article>, <subj-group>, <subtitle>, <suffix>, <sup>, <supplement>, <supplementary-material>, <support-description>, <support-group>, <support-source>, <table-wrap>, <table-wrap-group>, <target>, <term>, <textual-form>, <title-group>, <trans-abstract>, <trans-source>, <trans-subtitle>, <trans-title>, <trans-title-group>, <underline>, <underline-start>, <unstructured-kwd-group>, <uri>, <verse-group>, <verse-line>, <version>, <volume>, <volume-id>, <volume-issue-group>, <x>, <xref>, <year>

Value Meaning
An IDREF, which means that this attribute points to the identifier (tagged as an @id attribute) of one member of a language group Used to associate the members of a language group. All the elements inside a language group identified with the same @rid are alternative versions (variants) of the same content in different languages. (Note: Since all members of a language group point to the same @id, one member of a language group will point to the @id of its own element.)
Restriction @lang-group is an optional attribute; there is no default.
Tagged Sample

2 Variant figures, with <processing-meta> and <content-language>

<article dtd-version="1.4d1" xml:lang="en"   >
<processing-meta lang-grouping="yes"/>
<front>...
<article-meta>...
<content-language>es</content-language>
<content-language>en</content-language>...
</article-meta>
</front>
<body>
...
<fig id="f0001" lang-group="f0001"  
  xml:lang="es" lang-variant="original" 
  lang-source="author" lang-focus="primary"
  position="float" fig-type="scatter-graph" >
 <label>Figura 1.</label>
 <caption><p>Evolución de la tasa de repetición en  
  todas las secuencias</p></caption>
...
</fig>

<fig id="f0005" lang-group="f0001"  
  xml:lang="en" lang-variant="translation" 
  lang-source="translator" lang-focus="secondary"
  position="float" fig-type="scatter-graph" >
 <label>Figure 1.</label>
 <caption><p>Evolution of the repetition rate in all sequences</p></caption>
 ...
</fig>
...
</body>
</article>