modified examples

This commit is contained in:
Phuntsok Drak-pa 2019-07-24 20:51:00 +02:00
parent af69d93f6b
commit aedba6b095

View File

@ -42,80 +42,43 @@
(tree-to-dot-helper (cdr tree) 1 0) (tree-to-dot-helper (cdr tree) 1 0)
"}"))) "}")))
(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 (define vowels
'("vowels" '("[vowel]"
("[low]" ("[back]"
("[nasal]" ("ɑ̃")) ("[tense]"
("{nasal}" ("a"))) ("[high]" ("ü"))
("{low}" ("{high}" ("ö")))
("[back]" ("{tense}"
("[tense]" ("ɔ")) ("[high]" ("u"))
("{tense}" ("u"))) ("{high}" ("o"))))
("{back}" ("{back}"
("[tense]" ("[tense]"
("[rnd]" ("ø")) ("[high]" ("y"))
("{rnd}" ("e"))) ("{high}" ("ë")))
("{tense}" ("{tense}"
("[rnd]" ("ɛ")) ("[high]" ("i"))
("{rnd}" ("œ"))))))) ("{high}" ("e"))))))
(define syntax-tree
'("S"
("Obl")
("S'"
("NPerg"
("NP"))
("VP"
("NPdat"
("NP"))
("VP'"
("NPabs"
("NP"
("S")
("NP'"
("Adj")
("N"))))
("V'"
("Mood")
("Tense")
("V")
("Neg")))))))
(display (tree-to-dot vowels)) (display (tree-to-dot vowels))