Text Encoding Initiative

The XML Version of the TEI Guidelines

<re>


<re> (related entry) contains a dictionary entry for a lexical item related to the headword, such as a compound phrase or derived form, embedded inside a larger entry.
Attributes (In addition to global attributes and those inherited from dictionaries, dictionaryParts, dictionaryTopLevel)
type classifies the related entry according to any convenient typology.
Datatype: CDATA
Values: any string of characters
Default: #IMPLIED
Example:

Example

The following example from Webster's New Collegiate Dictionary (Springfield, Mass.: G. & C. Merriam Company, 1975) shows a single related entry for which no definition is given, since its meaning is held to be readily derivable from the root entry:

<entry>
   <form>   
      <orth>neu&middot;ral</orth>
      <pron>&STRESS;n(y)&udot;r-&schwa;l</pron>
   </form>
   <gramGrp>
      <pos>adj</pos>
   </gramGrp>
   <sense n="1">
      <def>of, relating to, or affecting a nerve or the
     nervous system</def>
   </sense>
   <sense n="2"> ... </sense>
   <re><form>   
         <orth>neurally</orth>
         <pron extent="suffix">-&schwa;-l&emacr;</pron>
      </form>
      <gramGrp>
         <pos>adv</pos>
      </gramGrp>
   </re>
</entry>

Example

The following example from Diccionario de la Universidad de Chicago Inglés-Español y Español-Inglés / The University of Chicago Spanish Dictionary, Fourth Edition, compiled by Carlos Castillo and Otto F. Bond (Chicago: University of Chicago Press, 1987) shows a number of related entries embedded in the main entry. The original entry resembles the following:

abeja [a·bé·xa] f. bee; abejera [a·be·xé·ra] f. beehive; abejón [a·be·xóon] m. drone; bumblebee; abejorro [a·be·xó·rro] m. bumble bee.
One encoding for this entry would be:
<entry>
  <form><orth>abeja</orth></form>
  <gramGrp><gen>f. </gen></gramGrp> 
  <sense n="1.">        
	<usg type="domain"> (ento.) </usg>
	<def> bee </def>.
  </sense>
  <sense n="2.">        
	<def> busy bee, hard worker </def>.
  </sense>
  <sense n="3.">        
	<usg orig="A." type="domain"> (astron.) </usg>,
	<def> Musca </def> &mdash;
  </sense>
  <re><form>  
	<orth orig="a. albanila"> abeja albanila </orth>,
       </form>
       <sense><def>mason bee</def>;</sense>
  </re>
  <re><form>  
        <orth orig="a. carpintera">
		abeja carpintera </orth>,
       </form>
	<sense><def>carpenter bee </def>;</sense>
  </re>
  <re><form>  
	 <orth id="o1" orig="a. reina or maestra">
		abeja reina </orth>
	  <orth mergedin="o1"> abeja maestra </orth>
	</form>
	<sense><def> queen bee </def>;</sense>
  </re>
  <re><form>  
	 <orth id="o2" orig="a. neutra or obrera">
		abeja neutra </orth>
	  <orth mergedin="o2"> abeja obrera </orth>
	</form>
	<sense><def>worker bee</def>.</sense>
  </re>
</entry>

Example

In the much larger Simon & Schuster Spanish-English dictionary,189 these derived forms of ‘abeja’ are treated as separate main entries, but there are other embedded phrases shown as <re>s in its main entry for ‘abeja’:

abeja, f. 1. (ento.) bee. 2. busy bee, hard worker. 3. (astron.) A., Musca. — a. albanila, mason bee; a. carpintera, carpenter bee; a. reina or maestra, queen bee; a. neutra or obrera, worker bee.
This entry may be encoded thus:
<entry>
<form> 
  <orth> abeja </orth> 
  <gramGrp>
     <gen> f. </gen>
  </gramGrp> 
</form>
<sense n="1.">        
  <usg type="domain"> (ento.) </usg>
  <def> bee </def>.
 </sense>
<sense n="2.">        
  <def> busy bee, hard worker </def>.
 </sense>
<sense n="3.">        
  <usg orig="A." type="domain"> (astron.) </usg>,
 <def> Musca </def> &mdash;
 </sense>
<re>
  <form>  
     <orth orig="a. albanila"> abeja albanila </orth>,
 </form>
  <sense>
     <def> mason bee </def>; </sense>
</re>
<re>
  <form>  
     <orth orig="a. carpintera">
          abeja carpintera </orth>,
 </form>
  <sense> 
     <def> carpenter bee </def>; </sense>
</re>
<re>
  <form>  
     <orth id="o1" orig="a. reina or maestra">
       abeja reina </orth>
     <orth mergedin="o1"> abeja maestra </orth>
  </form>
  <sense> 
     <def> queen bee </def>; </sense>
</re>
<re>
  <form>  
     <orth id="o2" orig="a. neutra or obrera">
       abeja neutra </orth>
     <orth mergedin="o2"> abeja obrera </orth>
  </form>
  <sense> 
     <def> worker bee </def> . </sense>
</re>
</entry>

Note

Identical in sub-elements to an <entry> tag, and used where a dictionary has embedded information inside one entry which could have formed a separate entry. Some authorities distinguish related entries, run-on entries, and various other types of degenerate entries; no such typology is attempted here.

Module Declared in file teidict2; Base tag set for dictionaries: enabled by TEI.dictionary
Class dictionaryTopLevel; dictionaryParts; dictionaries
Data Description May contain character data mixed with any other elements defined in the dictionary tag set.
May contain #PCDATA abbr add addSpan address alt altGrp anchor app c caesura cb certainty cl corr damage date dateRange dateStruct def del delSpan dictScrap distinct eg emph etym expan fLib foreign form formula fs fsLib fvLib fw gap geogName gloss gramGrp handShift hi index interp interpGrp join joinGrp lang lb link linkGrp m measure mentioned milestone name note num oRef oVar orgName orig pRef pVar pb persName phr placeName ptr re ref reg respons restore rs s seg sense sic soCalled space span spanGrp supplied term time timeRange timeStruct timeline title trans unclear usg w xptr xr xref
May occur within dictScrap eg entry entryFree hom re sense trans
Declaration
<!ELEMENT re %om.RO;  ( #PCDATA | sense | %m.dictionaryTopLevel;
                       | %m.phrase; | %m.Incl; )* > 
<!ATTLIST re  
      %a.global;
      %a.dictionaries;
      type CDATA #IMPLIED>
See further 12.3.6 Related Entries

Up: 35 Elements