DAP, Det with AP and its conjunction, in Eng and Scand ; not quite sure if this is possible in all languages

This commit is contained in:
aarne
2014-06-12 13:55:39 +00:00
parent 20f8f16201
commit 7265c2f07d
11 changed files with 44 additions and 2 deletions

View File

@@ -84,6 +84,7 @@ abstract Cat = Common ** {
Num ; -- number determining element e.g. "seven"
Card ; -- cardinal number e.g. "seven"
Ord ; -- ordinal number (used in Det) e.g. "seventh"
DAP ; -- determiner with adjective e.g. "three small"
--2 Numerals

View File

@@ -25,6 +25,7 @@ abstract Conjunction = Cat ** {
ConjAdV : Conj -> [AdV] -> AdV ;
ConjIAdv : Conj -> [IAdv] -> IAdv ; -- "where and with whom"
ConjCN : Conj -> [CN] -> CN ; -- "man and woman"
ConjDet : Conj -> [DAP] -> Det ; -- "his or her"
--2 Categories
@@ -39,6 +40,7 @@ abstract Conjunction = Cat ** {
[AP]{2} ;
[IAdv]{2} ;
[CN] {2} ;
[DAP] {2} ;
--2 List constructors

View File

@@ -146,4 +146,9 @@ abstract Noun = Cat ** {
CountNP : Det -> NP -> NP ; -- three of them, some of the boys
--3 Conjoinable determiners and ones with adjectives
AdjDAP : DAP -> AP -> DAP ; -- the large (one)
DetDAP : Det -> DAP ; -- this (or that)
}