1
0
forked from GitHub/gf-core

documenting Quant

This commit is contained in:
aarne
2006-02-02 15:24:13 +00:00
parent f5f3ba0e42
commit be22b7c8aa
25 changed files with 61 additions and 58 deletions

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Adjectives and adjectival phrases</H1> <P ALIGN="center"><CENTER><H1> Adjectives and adjectival phrases</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:43 2006 Last update: Thu Feb 2 16:24:06 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Adverbs and adverbial phrases</H1> <P ALIGN="center"><CENTER><H1> Adverbs and adverbial phrases</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:44 2006 Last update: Thu Feb 2 16:24:06 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> The category system</H1> <P ALIGN="center"><CENTER><H1> The category system</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:44 2006 Last update: Thu Feb 2 16:24:07 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>
@@ -134,8 +134,9 @@ as defined in <A HREF="Noun.html">Noun</A>.
Pron ; -- personal pronoun e.g. "she" Pron ; -- personal pronoun e.g. "she"
Det ; -- determiner phrase e.g. "all the seven" Det ; -- determiner phrase e.g. "all the seven"
Predet; -- predeterminer (prefixed Quant) e.g. "all" Predet; -- predeterminer (prefixed Quant) e.g. "all"
QuantSg;-- quantifier ('nucleus' of sing. Det) e.g. "this" QuantSg;-- quantifier ('nucleus' of sing. Det) e.g. "every"
QuantPl;-- quantifier ('nucleus' of plur. Det) e.g. "these" QuantPl;-- quantifier ('nucleus' of plur. Det) e.g. "many"
Quant ; -- quantifier with both sg and pl e.g. "this/these"
Num ; -- cardinal number (used with QuantPl) e.g. "seven" Num ; -- cardinal number (used with QuantPl) e.g. "seven"
Ord ; -- ordinal number (used in Det) e.g. "seventh" Ord ; -- ordinal number (used in Det) e.g. "seventh"
</PRE> </PRE>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Coordination</H1> <P ALIGN="center"><CENTER><H1> Coordination</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:44 2006 Last update: Thu Feb 2 16:24:07 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -14,7 +14,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> The Main Module of the Resource Grammar</H1> <P ALIGN="center"><CENTER><H1> The Main Module of the Resource Grammar</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:44 2006 Last update: Thu Feb 2 16:24:07 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> The Mathematics API to the Resource Grammar</H1> <P ALIGN="center"><CENTER><H1> The Mathematics API to the Resource Grammar</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -14,7 +14,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> The construction of nouns, noun phrases, and determiners</H1> <P ALIGN="center"><CENTER><H1> The construction of nouns, noun phrases, and determiners</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:07 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>
@@ -77,13 +77,20 @@ cardinal and ordinal.)
</PRE> </PRE>
<P></P> <P></P>
<P> <P>
Quantifiers that have both forms can be used in both ways.
</P>
<PRE>
SgQuant : Quant -&gt; QuantSg ; -- this
PlQuant : Quant -&gt; QuantPl ; -- these
</PRE>
<P></P>
<P>
Pronouns have possessive forms. Genitives of other kinds Pronouns have possessive forms. Genitives of other kinds
of noun phrases are not given here, since they are not possible of noun phrases are not given here, since they are not possible
in e.g. Romance languages. in e.g. Romance languages.
</P> </P>
<PRE> <PRE>
PossSg : Pron -&gt; QuantSg ; -- my (house) PossPron : Pron -&gt; Quant ; -- my (house)
PossPl : Pron -&gt; QuantPl ; -- my (houses)
</PRE> </PRE>
<P></P> <P></P>
<P> <P>
@@ -133,10 +140,8 @@ neatly distinct words (Spanish <I>un, unos ; el, los</I>) but also without
any particular word (Finnish; Swedish definites). any particular word (Finnish; Swedish definites).
</P> </P>
<PRE> <PRE>
DefSg : QuantSg ; -- the (house) DefArt : Quant ; -- the (house), the (houses)
DefPl : QuantPl ; -- the (houses) IndefArt : Quant ; -- a (house), (houses)
IndefSg : QuantSg ; -- a (house)
IndefPl : QuantPl ; -- (houses)
</PRE> </PRE>
<P></P> <P></P>
<P> <P>
@@ -145,7 +150,7 @@ not distinguish mass nouns from other common nouns, which can result
in semantically odd expressions. in semantically odd expressions.
</P> </P>
<PRE> <PRE>
MassDet : QuantSg ; -- (beer) MassDet : QuantSg ; -- (beer)
</PRE> </PRE>
<P></P> <P></P>
<P> <P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Numerals</H1> <P ALIGN="center"><CENTER><H1> Numerals</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:07 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -43,7 +43,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:09 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -41,7 +41,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:09 2006
</P> </P>
<P> <P>
Produced by Produced by
@@ -344,10 +344,11 @@ that gives the third person singular present indicative and future
<P></P> <P></P>
<P> <P>
The function <CODE>regV</CODE> gives all verbs the compound auxiliary <I>avoir</I>. The function <CODE>regV</CODE> gives all verbs the compound auxiliary <I>avoir</I>.
To change it to <I>être</I>, use the following function. To change it to <I>être</I>, use the following function. Reflexive implies <I>être</I>.
</P> </P>
<PRE> <PRE>
etreV : V -&gt; V ; etreV : V -&gt; V ;
reflV : V -&gt; V ;
</PRE> </PRE>
<P></P> <P></P>
<A NAME="toc13"></A> <A NAME="toc13"></A>

View File

@@ -35,7 +35,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:09 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -41,7 +41,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Wed Feb 1 17:52:51 2006 Last update: Thu Feb 2 16:24:09 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -43,7 +43,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:09 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -43,7 +43,7 @@
<P></P> <P></P>
<P> <P>
Author: Author:
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</P> </P>
<P> <P>
Produced by Produced by

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Phrases and utterances</H1> <P ALIGN="center"><CENTER><H1> Phrases and utterances</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> A Small Predication Library</H1> <P ALIGN="center"><CENTER><H1> A Small Predication Library</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>
@@ -48,33 +48,31 @@ API of resource grammars.
<A NAME="toc2"></A> <A NAME="toc2"></A>
<H2>The category of atomic sentences</H2> <H2>The category of atomic sentences</H2>
<P> <P>
These sentences have both a positive and a negative form We want to use sentences in positive and negative forms but do not care about
tenses.
</P> </P>
<PRE> <PRE>
cat
AS ;
fun fun
PosAS : AS -&gt; S ; PosCl : Cl -&gt; S ; -- positive sentence: "x intersects y"
NegAS : AS -&gt; S ; NegCl : Cl -&gt; S ; -- negative sentence: "x doesn't intersect y"
</PRE> </PRE>
<P></P> <P></P>
<A NAME="toc3"></A> <A NAME="toc3"></A>
<H2>Predication patterns.</H2> <H2>Predication patterns.</H2>
<PRE> <PRE>
predV : V -&gt; NP -&gt; AS ; -- one-place verb: "x converges" predV : V -&gt; NP -&gt; Cl ; -- one-place verb: "x converges"
predV2 : V2 -&gt; NP -&gt; NP -&gt; AS ; -- two-place verb: "x intersects y" predV2 : V2 -&gt; NP -&gt; NP -&gt; Cl ; -- two-place verb: "x intersects y"
predV3 : V3 -&gt; NP-&gt;NP-&gt; NP -&gt; AS; -- three-place verb: "x intersects y at z" predV3 : V3 -&gt; NP-&gt;NP-&gt; NP -&gt; Cl; -- three-place verb: "x intersects y at z"
predVColl : V -&gt; NP -&gt; NP -&gt; AS ; -- collective verb: "x and y intersect" predVColl : V -&gt; NP -&gt; NP -&gt; Cl ; -- collective verb: "x and y intersect"
predA : A -&gt; NP -&gt; AS ; -- one-place adjective: "x is even" predA : A -&gt; NP -&gt; Cl ; -- one-place adjective: "x is even"
predA2 : A2 -&gt; NP -&gt; NP -&gt; AS ; -- two-place adj: "x is divisible by y" predA2 : A2 -&gt; NP -&gt; NP -&gt; Cl ; -- two-place adj: "x is divisible by y"
predAComp : A -&gt; NP -&gt; NP -&gt; AS; -- comparative adj: "x is greater than y" predAComp : A -&gt; NP -&gt; NP -&gt; Cl; -- comparative adj: "x is greater than y"
predAColl : A -&gt; NP -&gt; NP -&gt; AS ; -- collective adj: "x and y are parallel" predAColl : A -&gt; NP -&gt; NP -&gt; Cl ; -- collective adj: "x and y are parallel"
predN : N -&gt; NP -&gt; AS ; -- one-place noun: "x is a point" predN : N -&gt; NP -&gt; Cl ; -- one-place noun: "x is a point"
predN2 : N2 -&gt; NP -&gt; NP -&gt; AS ; -- two-place noun: "x is a divisor of y" predN2 : N2 -&gt; NP -&gt; NP -&gt; Cl ; -- two-place noun: "x is a divisor of y"
predNColl : N -&gt; NP -&gt; NP -&gt; AS ; -- collective noun: "x and y are duals" predNColl : N -&gt; NP -&gt; NP -&gt; Cl ; -- collective noun: "x and y are duals"
predAdv : Adv -&gt; NP -&gt; AS ; -- adverb: "x is inside" predAdv : Adv -&gt; NP -&gt; Cl ; -- adverb: "x is inside"
predPrep : Prep -&gt; NP -&gt; NP -&gt; AS ; -- preposition: "x is outside y" predPrep : Prep -&gt; NP -&gt; NP -&gt; Cl ; -- preposition: "x is outside y"
</PRE> </PRE>
<P></P> <P></P>
<A NAME="toc4"></A> <A NAME="toc4"></A>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Questions and interrogative pronouns</H1> <P ALIGN="center"><CENTER><H1> Questions and interrogative pronouns</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Relative clauses and pronouns</H1> <P ALIGN="center"><CENTER><H1> Relative clauses and pronouns</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Sentences, clauses, imperatives, and sentential complements</H1> <P ALIGN="center"><CENTER><H1> Sentences, clauses, imperatives, and sentential complements</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> GF Resource Grammar API for Structural Words</H1> <P ALIGN="center"><CENTER><H1> GF Resource Grammar API for Structural Words</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:45 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>
@@ -106,19 +106,17 @@ This is an alphabetical list of structural words
somebody_NP : NP ; somebody_NP : NP ;
something_NP : NP ; something_NP : NP ;
somewhere_Adv : Adv ; somewhere_Adv : Adv ;
that_Quant : QuantSg ; that_Quant : Quant ;
that_NP : NP ; that_NP : NP ;
there_Adv : Adv ; there_Adv : Adv ;
there7to_Adv : Adv ; there7to_Adv : Adv ;
there7from_Adv : Adv ; there7from_Adv : Adv ;
therefore_PConj : PConj ; therefore_PConj : PConj ;
these_NP : NP ; these_NP : NP ;
these_Quant : QuantPl ;
they_Pron : Pron ; they_Pron : Pron ;
this_Quant : QuantSg ; this_Quant : Quant ;
this_NP : NP ; this_NP : NP ;
those_NP : NP ; those_NP : NP ;
those_Quant : QuantPl ;
through_Prep : Prep ; through_Prep : Prep ;
to_Prep : Prep ; to_Prep : Prep ;
too_AdA : AdA ; too_AdA : AdA ;

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Symbolic expressions</H1> <P ALIGN="center"><CENTER><H1> Symbolic expressions</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:47 2006 Last update: Thu Feb 2 16:24:10 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> Tense, Polarity, and Anteriority</H1> <P ALIGN="center"><CENTER><H1> Tense, Polarity, and Anteriority</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:08 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>

View File

@@ -7,7 +7,7 @@
<P ALIGN="center"><CENTER><H1> The construction of verb phrases</H1> <P ALIGN="center"><CENTER><H1> The construction of verb phrases</H1>
<FONT SIZE="4"> <FONT SIZE="4">
<I>Author: </I><BR> <I>Author: </I><BR>
Last update: Tue Jan 31 18:15:46 2006 Last update: Thu Feb 2 16:24:09 2006
</FONT></CENTER> </FONT></CENTER>
<P></P> <P></P>