User Tools


Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
wiki:orthography [2019/08/21 21:03] chuckwiki:orthography [2023/03/15 04:22] (current) chuck
Line 14: Line 14:
  
 Examples are given to show how the text is normalized; counterexamples are exceptions which are not normalized. Examples are given to show how the text is normalized; counterexamples are exceptions which are not normalized.
 +
 +Normalized spellings may not represent what is generally considered to be "correct" Sanskrit; however, they do reflect orthographic practices as attested in manuscripts. 
  
 === geminated t === === geminated t ===
Line 30: Line 32:
  
 === geminated consonants after r === === geminated consonants after r ===
-<code pcre>/(?<=[rṛṙ]|[rṛ]\s)(]kgcjṭḍṇdnpbmyvl)\1/\1/</code>+<code pcre>/(?<=[rṛṙ]|[rṛ]\s)([kgcjṭḍṇdnpbmyvl])\1/\1/</code>
  
  * replaces doubled consonants (excluding t) after consonantal/vocalic r with a single consonant (Cf. [[https://www.sanskritdictionary.com/panini/8-4-46|Aṣṭādhyāyī 8.4.46]])  * replaces doubled consonants (excluding t) after consonantal/vocalic r with a single consonant (Cf. [[https://www.sanskritdictionary.com/panini/8-4-46|Aṣṭādhyāyī 8.4.46]])
Line 51: Line 53:
 <code pcre>/(?:ṃ[lśs]|nn)(?!\S)/n/</code> <code pcre>/(?:ṃ[lśs]|nn)(?!\S)/n/</code>
  
- * replaces -ṃl, -ṃś, -ṃs, and -nn with -n (Cf. [[https://www.sanskritdictionary.com/panini/8-3-7|Aṣṭādhyāyī 8.3.7]], etc.)+ * replaces final -ṃl, -ṃś, -ṃs, and -nn with -n (Cf. [[https://www.sanskritdictionary.com/panini/8-3-7|Aṣṭādhyāyī 8.3.7]], etc.)
  
  * __examples__   * __examples__ 
  * gacchaṃs tu => gacchan tu  * gacchaṃs tu => gacchan tu
- * puruṣānn eva => puruṣān eva + * puruṣānn atti => puruṣān atti
- * __counterexamples__ +
- * aṃśa +
- * annam+
  
 === internal nasal variants === === internal nasal variants ===
Line 69: Line 68:
  * yuñjati => yuṃjati  * yuñjati => yuṃjati
  
 +==== Script/scribe specific filters ====
 +
 +Some normalization filters require a tag in your TEI header, because they only apply to certain scripts or specific scribal practices. When these filters are activated, they will only apply to those transcriptions which have the corresponding tag.
 +
 +=== pṛṣṭhamātrā vowels ===
 +<code pcre>/ê/e/ /î/i/ /ô/o/ /û/u/</code>
 +
 +In transcriptions of Devanāgarī sources, pṛṣṭhamātrā vowels are transcribed as ê, aî, ô, and aû (see [[wiki:transcription|Transcription conventions]]).
 +
 + * These filters require ''@mainLang="sa-Deva"'' in the ''<textLang>'' tag.
 +
 +=== valapalagilaka ===
 +<code pcre>/ṙ/r/</code>
 +
 +In transcriptions of Telugu sources, the valapalagilaka reph is transcribed as ṙ (see [[wiki:transcription|Transcription conventions]]).
 +
 + * This filter requires ''@mainLang="sa-Telu"'' in the ''<textLang>'' tag.
 +
 +=== ṭh written as ṭ ===
 +<code pcre>/ṭh/ṭ/</code>
 +
 +In some Devanāgarī manuscripts, it is common for ṭh to be written as ṭ.
 +
 + * This filter requires a ''<scriptNote>'' tag with the ''@xml:id="script-ṭha-ṭa"''.
 +
 +=== b written as v ===
 +<code pcre>/b(?!h)/v/</code>
 +
 +In some scripts, b is not distinguished from v.
 +
 + * This filter requires a ''<scriptNote>'' tag with the ''@xml:id="script-ba-va"''.
 +
 +=== dbh written as bhd ===
 +<code pcre>/bh(\s?)d(?!h)/d\1bh/</code>
 +
 +In some Devanāgarī manuscripts, the conjunct dbh is written as bhd.
 +
 + * This filter requires a ''<scriptNote>'' tag with the ''@xml:id="script-dbha-bhda"''.