1
0
forked from GitHub/gf-core

Added missing space in Constructors.gf whose absence introduced an extra space in the library synopsis.

This commit is contained in:
bjorn
2008-08-29 08:41:38 +00:00
parent 1919fe99a6
commit 27fdc19b20
3 changed files with 9 additions and 22 deletions

View File

@@ -358,7 +358,7 @@ incomplete resource Constructors = open Grammar in {
mkNP : Art N -> NP ; -- 1. the man
mkNP : Art -> (Num) -> CN -> NP ; -- 2. the five old men
mkNP : Quant -> N -> NP ; -- 3. this men
mkNP : Quant -> (Num) -> CN -> NP; -- 4. these five old men
mkNP : Quant -> (Num) -> CN -> NP ; -- 4. these five old men
mkNP : Det -> N -> NP ; -- 5. the first man
mkNP : Det -> CN -> NP ; -- 6. the first old man
mkNP : Numeral -> N -> NP ; -- 7. twenty men

View File

@@ -1695,7 +1695,7 @@ Lexical category, constructors given in
</TR>
<TR>
<TD><CODE>mkNP</CODE></TD>
<TD><A HREF="#Art" TITLE="Art - article">Art</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
<TD><A HREF="#Art" TITLE="Art - article">Art</A> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
<TD><I>the man</I></TD>
</TR>
<TR>
@@ -1710,6 +1710,11 @@ Lexical category, constructors given in
</TR>
<TR>
<TD><CODE>mkNP</CODE></TD>
<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> (<A HREF="#Num" TITLE="Num - number determining element">Num</A>) <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
<TD><I>these five old men</I></TD>
</TR>
<TR>
<TD><CODE>mkNP</CODE></TD>
<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-&gt;</CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-&gt;</CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD>
<TD><I>the first man</I></TD>
</TR>
@@ -1825,22 +1830,6 @@ Lexical category, constructors given in
</TR>
</TABLE>
<P>
==NP;==[NP;]
</P>
<TABLE CELLPADDING="4" BORDER="1">
<TR>
<TH>Function</TH>
<TH>Type</TH>
<TH COLSPAN="2">Example</TH>
</TR>
<TR>
<TD><CODE>mkNP</CODE></TD>
<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-&gt;</CODE> (<A HREF="#Num" TITLE="Num - number determining element">Num</A>) <CODE>-&gt;</CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-&gt;</CODE> <CODE>NP;</CODE></TD>
<TD><I>these five old men</I></TD>
</TR>
</TABLE>
<A NAME="Num"></A>
<H2>Num - number determining element</H2>
<TABLE CELLPADDING="4" BORDER="1">

View File

@@ -399,9 +399,10 @@ Lexical category, constructors given in
|| Function | Type | Example ||
| ``everybody_NP`` | [NP #NP] | //everybody// |
| ``everything_NP`` | [NP #NP] | //everything// |
| ``mkNP`` | [Art #Art] ``->`` [NP #NP] | //the man// |
| ``mkNP`` | [Art #Art] [N #N] ``->`` [NP #NP] | //the man// |
| ``mkNP`` | [Art #Art] ``->`` ([Num #Num]) ``->`` [CN #CN] ``->`` [NP #NP] | //the five old men// |
| ``mkNP`` | [Quant #Quant] ``->`` [N #N] ``->`` [NP #NP] | //this men// |
| ``mkNP`` | [Quant #Quant] ``->`` ([Num #Num]) ``->`` [CN #CN] ``->`` [NP #NP] | //these five old men// |
| ``mkNP`` | [Det #Det] ``->`` [N #N] ``->`` [NP #NP] | //the first man// |
| ``mkNP`` | [Det #Det] ``->`` [CN #CN] ``->`` [NP #NP] | //the first old man// |
| ``mkNP`` | [Numeral #Numeral] ``->`` [N #N] ``->`` [NP #NP] | //twenty men// |
@@ -425,9 +426,6 @@ Lexical category, constructors given in
| ``mkNP`` | [Conj #Conj] ``->`` [ListNP #ListNP] ``->`` [NP #NP] | //John, I, and that// |
| ``somebody_NP`` | [NP #NP] | //somebody// |
| ``something_NP`` | [NP #NP] | //something// |
==NP;==[NP;]
|| Function | Type | Example ||
| ``mkNP`` | [Quant #Quant] ``->`` ([Num #Num]) ``->`` [CN #CN] ``->`` ``NP;`` | //these five old men// |
==Num - number determining element==[Num]
|| Function | Type | Example ||
| ``mkNum`` | [Numeral #Numeral] ``->`` [Num #Num] | //twenty// |