added back example

This commit is contained in:
Phuntsok Drak-pa 2019-07-17 13:28:08 +02:00
parent bfe08e1461
commit 77cd3005a7
1 changed files with 77 additions and 1 deletions

View File

@ -42,4 +42,80 @@
(tree-to-dot-helper (cdr tree) 1 0)
"}")))
; (display (tree-to-dot vowel-tree))
(define consonants
'("consonants"
("[stop]"
("[fricative]"
("[voice]" ("g͡ʒ"))
("{voice}" ("k͡ʃ")))
("{fricative}"
("[nasal]"
("[clic]" ("ᵑ‖"))
("{clic}"
("[voice]"
("[SG]" ("n̪͡d̪ʰ"))
("{SG}" ("n̪͡d̪")))
("{voice}"
("[SG]" ("n̪͡t̪ʰ"))
("{SG}" ("n̪͡t̪")))))
("{nasal}"
("[voice]"
("[dorsal]"
("[implosive]" ("ɠ"))
("{implosive}"
("[SG]" ("gʰ"))
("{SG}" ("g"))))
("{dorsal}"
("[implosive]" ("ɗ̪"))
("{implosive}"
("[SG]" ("d̪ʰ"))
("{SG}" ("d̪")))))
("{voice}"
("[dorsal]"
("[implosive]" ("ƙ"))
("{implosive}"
("[SG]" ("kʰ"))
("{SG}" ("k"))))
("{dorsal}"
("[implosive]" ("ƭ̪"))
("{implosive}"
("[SG]" ("t̪ʰ"))
("{SG}" ("t̪"))))))))
("{stop}"
("[fricative]"
("[nasal]"
("[voice]" ("n͡ʒ"))
("{voice}" ("n͡ʃ")))
("{nasal}"
("[coronal]"
("[voice]" ("ʒ"))
("{voice}" ("ʃ")))
("{coronal}"
("[dorsal]" ("xʷ"))
("{dorsal}" ("ɸʷ")))))
("{fricative}"
("[cons]"
("[cont]" ("l̪"))
("{cont}"
("[labial]" ("m"))
("{labial}" ("n̪"))))
("{cons}"
("[round]" ("w"))
("{round}" ("j")))))))
(define vowels
'("vowels"
("[low]"
("[nasal]" ("ɑ̃"))
("{nasal}" ("a")))
("{low}"
("[back]"
("[tense]" ("ɔ"))
("{tense}" ("u")))
("{back}"
("[tense]"
("[rnd]" ("ø"))
("{rnd}" ("e")))
("{tense}"
("[rnd]" ("ɛ"))
("{rnd}" ("œ")))))))
(display (tree-to-dot vowels))