summaryrefslogtreecommitdiff
path: root/grammars/resource/nabstract/Structural.gf
diff options
context:
space:
mode:
authoraarne <unknown>2003-11-20 15:53:22 +0000
committeraarne <unknown>2003-11-20 15:53:22 +0000
commit259eb4c86688db70b0beb76721e7df79164d4e5e (patch)
tree8ee67c14ac28d3e9cc395f9009cb653d8f5a265d /grammars/resource/nabstract/Structural.gf
parent1ca5e5398abd42fe71d4fe541e84318df0351e20 (diff)
Resource with extended API
Diffstat (limited to 'grammars/resource/nabstract/Structural.gf')
-rw-r--r--grammars/resource/nabstract/Structural.gf23
1 files changed, 17 insertions, 6 deletions
diff --git a/grammars/resource/nabstract/Structural.gf b/grammars/resource/nabstract/Structural.gf
index 536f01985..5ac998f96 100644
--- a/grammars/resource/nabstract/Structural.gf
+++ b/grammars/resource/nabstract/Structural.gf
@@ -8,16 +8,26 @@
abstract Structural = Combinations ** {
fun
- EveryDet, AllDet, WhichDet, MostDet : Det ; -- every, all, which, most
- SomeDet, SomesDet, AnyDet, AnysDet, NoDet, -- sg/pl some, any, no
- NosDet, ManyDet, MuchDet : Det ; -- many, much
- ThisDet, TheseDet, ThatDet, ThoseDet : Det ;-- (this, these, that, those) car(s)
- ThisNP, TheseNP, ThatNP, ThoseNP : NP ; -- this, these, that, those
+ EveryDet, WhichDet, AllDet, -- every, sg which, sg all
+ SomeDet, AnyDet, NoDet, -- sg some, any, no
+ MostDet, MostsDet, ManyDet, MuchDet : Det ; -- sg most, pl most, many, much
+ ThisDet, ThatDet : Det ; -- this, that
+
+-- Many plural determiners can take a numeral modifier.
+
+ AllsDet, WhichsDet, -- pl all, which (86)
+ SomesDet, AnysDet, NosDet, -- pl some, any, no
+ TheseDet, ThoseDet : Num -> Det ; -- these, those (86)
+ ThisNP, ThatNP : NP ; -- this, that
+ TheseNP, ThoseNP : Num -> NP ; -- these, those (86)
INP, ThouNP, HeNP, SheNP, ItNP : NP ; -- personal pronouns in singular
- WeNP, YeNP, TheyNP : NP ; -- personal pronouns in plural
+ WeNP, YeNP : Num -> NP ; -- these pronouns can take numeral
+ TheyNP : NP ; -- personal pronouns in plural
YouNP : NP ; -- the polite you
EverybodyNP, SomebodyNP, NobodyNP, -- everybody, somebody, nobody
EverythingNP, SomethingNP, NothingNP : NP ; -- everything, something, nothing
+--- CanVV, CanKnowVV, MustVV : VV ; -- can (pouvoir/savoir), must
+--- WantVV : VV ; -- want (to do)
WhenIAdv,WhereIAdv,WhyIAdv,HowIAdv : IAdv ; -- when, where, why, how
EverywhereNP, SomewhereNP, NowhereNP : AdV ;-- everywhere, somewhere, nowhere
AndConj, OrConj : Conj ; -- and, or
@@ -32,5 +42,6 @@ fun
InFrontPrep, BehindPrep, BetweenPrep : Prep ;
BeforePrep, DuringPrep, AfterPrep : Prep ; -- temporal relations
WithPrep, WithoutPrep, ByMeansPrep : Prep ; -- some other relations
+ PartPrep : Prep ; -- partitive "of" ("bottle of wine")
AgentPrep : Prep ; -- agent "by" in passive constructions
}