1
0
forked from GitHub/gf-rgl

extended DocumentationIce to V2

This commit is contained in:
Aarne Ranta
2019-08-02 18:40:51 +02:00
parent abf96c097c
commit 80854f4c44
2 changed files with 6 additions and 5 deletions

View File

@@ -3,3 +3,4 @@
gt MkDocument (NoDefinition "") (InflectionN ?) "" | l | wf -file="example-tables.html"
gt MkDocument (NoDefinition "") (InflectionA ?) "" | l | wf -append -file="example-tables.html"
gt MkDocument (NoDefinition "") (InflectionV ?) "" | l | wf -append -file="example-tables.html"
gt MkDocument (NoDefinition "") (InflectionV2 ?) "" | l | wf -append -file="example-tables.html"

View File

@@ -93,25 +93,25 @@ lin
paragraph (verbExample (S.mkCl S.she_NP v)) ;
s2 = inflVerb v
} ;
{-
InflectionV2 v = {
t = "v" ;
s1 = heading1 (heading verb_Category) ++
paragraph (verbExample (S.mkCl S.she_NP v S.something_NP)) ;
paragraph (verbExample (S.mkCl S.she_NP v S.i_NP)) ;
s2 = inflVerb v
} ;
InflectionV3 v = {
t = "v" ;
s1 = heading1 (heading verb_Category) ++
paragraph (verbExample (S.mkCl S.she_NP v S.something_NP S.something_NP)) ;
paragraph (verbExample (S.mkCl S.she_NP v S.it_NP S.i_NP)) ;
s2 = inflVerb v
} ;
{-
InflectionV2V v = {
t = "v" ;
s1 = heading1 (heading verb_Category) ++
paragraph (verbExample (S.mkCl S.she_NP (lin V2V v) S.we_NP (S.mkVP (L.sleep_V)))) ;
paragraph (verbExample (S.mkCl S.she_NP v S.we_NP (S.mkVP (L.sleep_V)))) ;
s2 = inflVerb v
} ;