Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions scm/ipa-x-sampa.scm
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
((("1" )) ("ɨ"))
((("2" )) ("ø"))
((("3" )) ("ɜ"))
((("3" "`" )) ("ɝ"))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I confirmed that your changes are correct except this based on https://en.wikipedia.org/wiki/X-SAMPA .
It seems that 3` doesn't exist. (E` doesn't exist too.)
Could you share a definition of 3` ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wikipedia doesn't list 3` as a separate entry, but it has an example of [n3`s] for GenAm pronunciation of nurse which would be spelled nɝs in Unicode IPA. In the original paper introducing the notation (linked on Wikipedia), Wells gave the example of GenAm bird in Kenyon and Knott transcription (ie. bɝd) as /b3`d/.

Wells defined ` as a diacritic and all entries that have ` in them can be analysed as a code for some base symbol followed by `. In case of vowels, this directly corresponds to the rhotic diacritic of IPA. See https://en.wikipedia.org/wiki/R-colored_vowel#Notation. Compare how ɚ @` doesn't even appear on the current IPA chart as a standalone symbol, but only as an example of the usage of the rhoticity diacritic.
So even if it's not listed explicitly, E` unambiguously stands for ɛ˞ while ɝ is 3` (as seen in examples). The former can be entered as ɛ E followed by ◌˞ `, but 3` is virtually always written with a single character ɝ rather than as a sequence ɜ˞ (ie. ɜ 3 followed by ◌˞ `). Although Unicode doesn't define any equivalence, from the IPA point of view ɝ is functionally just like a precomposed character for ɜ˞.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

I'll merge this.

((("3" "\\" )) ("ɞ"))
((("4" )) ("ɾ"))
((("5" )) ("ɫ"))
Expand Down Expand Up @@ -76,17 +77,16 @@
((("C" )) ("ç"))
((("D" )) ("ð"))
((("E" )) ("ɛ"))
((("E" "`" )) ("ɝ"))
((("F" )) ("ɱ"))
((("G" )) ("ɣ"))
((("G" "\\" )) ("ɢ"))
((("G" "\\" "_" ">" )) ("ʛ"))
((("G" "\\" "_" "<" )) ("ʛ"))
((("H" )) ("ɥ"))
((("H" "\\" )) ("ʜ"))
((("I" )) ("ɪ"))
((("J" )) ("ɲ"))
((("J" "\\" )) ("ɟ"))
((("J" "\\" "_" ">" )) ("ʄ"))
((("J" "\\" "_" "<" )) ("ʄ"))
((("K" )) ("ɬ"))
((("K" "\\" )) ("ɮ"))
((("L" )) ("ʎ"))
Expand Down Expand Up @@ -118,7 +118,7 @@
((("_" "+" )) ("̟"))
((("_" "-" )) ("̠"))
((("_" "/" )) ("̌"))
((("_" )) ("̥" ))
((("_" "0" )) ("̥" ))
((("_" "1" )) (""))
((("_" "2" )) (""))
((("_" "3" )) (""))
Expand All @@ -137,7 +137,7 @@
((("_" "O" )) ("̹"))
((("_" "R" )) ("̌"))
((("_" "T" )) ("̋"))
((("_" "X" )) ("˘"))
((("_" "X" )) ("̆"))
((("_" "?" "\\")) ("ˤ"))
((("_" "\\" )) ("̂"))
((("_" "^" )) ("̯"))
Expand All @@ -148,7 +148,7 @@
((("_" "h" )) ("ʰ"))
((("_" "j" )) ("ʲ"))
((("_" "k" )) ("̰"))
((("_" "l" )) ("ϡ"))
((("_" "l" )) ("ˡ"))
((("_" "m" )) ("̻"))
((("_" "n" )) (""))
((("_" "o" )) ("̞"))
Expand Down