1
0
forked from GitHub/gf-rgl

new tutorial almost finished

This commit is contained in:
aarne
2007-07-06 15:37:32 +00:00
parent 2c17ebcebf
commit e014dfcfb0
2 changed files with 20 additions and 10 deletions

View File

@@ -76,9 +76,9 @@ abstract Cat = Common ** {
NP ; -- noun phrase (subject or object) e.g. "the red house" NP ; -- noun phrase (subject or object) e.g. "the red house"
Pron ; -- personal pronoun e.g. "she" Pron ; -- personal pronoun e.g. "she"
Det ; -- determiner phrase e.g. "those seven" Det ; -- determiner phrase e.g. "those seven"
Predet; -- predeterminer (prefixed Quant) e.g. "all" Predet ; -- predeterminer (prefixed Quant) e.g. "all"
QuantSg;-- quantifier ('nucleus' of sing. Det) e.g. "every" QuantSg ;-- quantifier ('nucleus' of sing. Det) e.g. "every"
QuantPl;-- quantifier ('nucleus' of plur. Det) e.g. "many" QuantPl ;-- quantifier ('nucleus' of plur. Det) e.g. "many"
Quant ; -- quantifier with both sg and pl e.g. "this/these" 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"

View File

@@ -40,6 +40,11 @@ to the relevant source files, which give more information. Some of the files hav
not yet been prepared so that the machine generated documentation has the right format. not yet been prepared so that the machine generated documentation has the right format.
</P> </P>
<P> <P>
Since the character encoding is UTF-8 for Russian and Latin-1 for other languages, you
may have to change the encoding preference of your browser when reading different
parts of the document.
</P>
<P>
The second-last chapter gives instructions on how to "browse" the library by The second-last chapter gives instructions on how to "browse" the library by
loading the grammars into the <CODE>gf</CODE> command editor. loading the grammars into the <CODE>gf</CODE> command editor.
</P> </P>
@@ -233,6 +238,11 @@ Source 2: <A HREF="../abstract/Cat.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF
<TD>"those seven"</TD> <TD>"those seven"</TD>
</TR> </TR>
<TR> <TR>
<TD><CODE>Predet</CODE></TD>
<TD>predeterminer (prefixed Quant)</TD>
<TD>"all"</TD>
</TR>
<TR>
<TD><CODE>Quant</CODE></TD> <TD><CODE>Quant</CODE></TD>
<TD>quantifier with both sg and pl</TD> <TD>quantifier with both sg and pl</TD>
<TD>"this/these"</TD> <TD>"this/these"</TD>