mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-15 15:59:32 -06:00
69 lines
1.5 KiB
HTML
69 lines
1.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<META NAME="generator" CONTENT="http://txt2tags.sf.net">
|
|
</HEAD><BODY BGCOLOR="white" TEXT="black">
|
|
<FONT SIZE="4">
|
|
</FONT></CENTER>
|
|
|
|
<P></P>
|
|
<HR NOSHADE SIZE=1>
|
|
<P></P>
|
|
<UL>
|
|
<LI><A HREF="#toc1">Noun phrases with symbols</A>
|
|
<LI><A HREF="#toc2">Symbol lists</A>
|
|
</UL>
|
|
|
|
<P></P>
|
|
<HR NOSHADE SIZE=1>
|
|
<P></P>
|
|
<P>
|
|
Author:
|
|
Last update: Tue Jan 17 15:24:34 2006
|
|
</P>
|
|
<P>
|
|
Produced by
|
|
gfdoc - a rudimentary GF document generator.
|
|
(c) Aarne Ranta (<A HREF="mailto:aarne@cs.chalmers.se">aarne@cs.chalmers.se</A>) 2002 under GNU GPL.
|
|
</P>
|
|
<P>
|
|
==
|
|
</P>
|
|
<PRE>
|
|
abstract Math = Cat ** {
|
|
</PRE>
|
|
<P></P>
|
|
<A NAME="toc1"></A>
|
|
<H3>Noun phrases with symbols</H3>
|
|
<PRE>
|
|
fun
|
|
|
|
SymbPN : Symb -> PN ; -- "x"
|
|
IntPN : Int -> PN ; -- "27"
|
|
CNIntNP : CN -> Int -> NP ; -- "level 53"
|
|
CNSymbNP : Det -> CN -> [Symb] -> NP ; -- "(the) (2) numbers x and y"
|
|
</PRE>
|
|
<P></P>
|
|
<A NAME="toc2"></A>
|
|
<H3>Symbol lists</H3>
|
|
<P>
|
|
A symbol list has at least two elements. The last two are separated
|
|
by a conjunction (<I>and</I> in English), the others by commas.
|
|
This produces <I>x, y and z</I>, in English.
|
|
</P>
|
|
<PRE>
|
|
cat
|
|
Symb ;
|
|
[Symb]{2} ;
|
|
|
|
fun
|
|
MkSymb : String -> Symb ;
|
|
|
|
}
|
|
</PRE>
|
|
<P></P>
|
|
|
|
<!-- html code generated by txt2tags 2.0 (http://txt2tags.sf.net) -->
|
|
<!-- cmdline: txt2tags -thtml -\-toc abstract/Math.txt -->
|
|
</BODY></HTML>
|