Macedonian morphology

This commit is contained in:
Krasimir Angelov
2024-10-31 09:37:41 +01:00
parent 21d1a192c8
commit a2b20dc6db
9 changed files with 11803 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
concrete CatMkd of Cat = open ResMkd in {
lincat N = Noun ;
lincat N2 = Noun ** {c2 : Compl} ;
lincat N3 = Noun ** {c2,c3 : Compl} ;
lincat V, VA, VV, VS, VQ = Verb ;
lincat V2, V2S, V2Q = Verb ** {c2 : Compl} ;
lincat V3, V2A, V2V = Verb ** {c2,c3 : Compl} ;
lincat A = Adj ;
lincat A2 = Adj ** {c2 : Compl} ;
lincat Adv, AdV, AdA, AdN = Adv ;
lincat Pron = Pron ;
lincat Prep = Compl ;
lincat Interj = {s : Str} ;
lincat Voc = {s : Str} ;
}