\n\n
DEV SITE - NOT FOR INDEXING

TEI Lex-0

— A baseline encoding for lexicographic data

12.1.39. <etym>

<etym> (etymology) encloses the etymological information in a dictionary entry. [10.3.4. Etymological Information]
Moduledictionaries — Specification
Attributes
type
StatusRecommended
Legal values are:
borrowing
inheritance
metaphor
metonymy
compounding
grammaticalization
derivation
Member of
Contained by
core: cit
dictionaries: dictScrap entry etym sense
May contain
analysis: c pc
dictionaries: def etym gramGrp lang lbl usg xr
figures: figure
gaiji: g
linking: seg
transcr: metamark
character data
Note

May contain character data mixed with any other elements defined in the dictionary tag set.

There is no consensus on the internal structure of etymologies, or even on whether such a structure is appropriate. The <etym> element accordingly simply contains prose, within which names of languages, cited words, or parts of words, glosses, and examples will typically be prominent. The tagging of such internal objects is optional.

Example
<entry>
 <form>
  <orth>publish</orth> ... </form>
 <etym>
  <lang>ME.</lang>
  <mentioned>publisshen</mentioned>,
 <lang>F.</lang>
  <mentioned>publier</mentioned>, <lang>L.</lang>
  <mentioned>publicare,
     publicatum</mentioned>. <xr>See <ref>public</ref>; cf. 2d <ref>-ish</ref>.</xr>
 </etym>
</entry> (From: Webster's Second International)
Example
<entry>
 <form>
  <orth>Handschuh</orth> ... </form>
 <etym type="compounding">
  <oRef>Hand</oRef> (<pRef notation="ipa">ˈhant</pRef>): <gloss>hand</gloss>,
 <etym type="metaphor">
   <oRef>Schuh</oRef> (<pRef notation="ipa">ʃuː</pRef>): <gloss>shoe</gloss>
  </etym>
 </etym>
</entry>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">
  <textNode/>
  <classRef key="model.gLike"/>
  <classRef key="model.global"/>
  <classRef key="model.lexInter"/>
  <classRef key="model.lexPhrase"/>
  <classRef key="model.descLike"/>
  <elementRef key="def"/>
  <elementRef key="etym"/>
  <elementRef key="gramGrp"/>
  <elementRef key="lbl"/>
  <elementRef key="usg"/>
  <elementRef key="xr"/>
 </alternate>
</content>
    
Schema Declaration

element etym
{
   att.global.attributes,
   att.lexicographic.attributes,
   att.typed.attribute.subtype,
   attribute type
   {
      "borrowing"
    | "inheritance"
    | "metaphor"
    | "metonymy"
    | "compounding"
    | "grammaticalization"
    | "derivation"
   }?,
   (
      text
    | model.gLikemodel.globalmodel.lexIntermodel.lexPhrasemodel.descLikedefetymgramGrplblusgxr
   )*
}