mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-27 08:58:55 -06:00
simplify the documentation for verbs
This commit is contained in:
@@ -4,10 +4,6 @@ incomplete concrete DocumentationRusFunctor of Documentation = CatRus ** open
|
|||||||
Terminology, -- the interface
|
Terminology, -- the interface
|
||||||
ResRus,
|
ResRus,
|
||||||
ParadigmsRus,
|
ParadigmsRus,
|
||||||
(G = GrammarRus),
|
|
||||||
(S = SyntaxRus),
|
|
||||||
(ST = StructuralRus),
|
|
||||||
(L = LexiconRus),
|
|
||||||
Prelude,
|
Prelude,
|
||||||
HTML
|
HTML
|
||||||
in {
|
in {
|
||||||
@@ -151,85 +147,22 @@ lin
|
|||||||
})
|
})
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
InflectionV v = {
|
InflectionV, InflectionV2, InflectionV3,
|
||||||
|
InflectionV2V, InflectionV2S, InflectionV2Q,
|
||||||
|
InflectionV2A, InflectionVS, InflectionVQ,
|
||||||
|
InflectionVA = \v -> {
|
||||||
t = "гл" ;
|
t = "гл" ;
|
||||||
s1 = heading1 (heading verb_Category) ++
|
s1 = heading1 (heading verb_Category) ;
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v)) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV2 v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.something_NP)) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV3 v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.something_NP S.something_NP)) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV2V v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.we_NP (S.mkVP (L.sleep_V)))) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV2S v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.we_NP (lin S {s : Mood=>Str = \\m=>"..."}))) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV2Q v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.we_NP (lin QS {s: QForm=>Str = \\m=>"..."}))) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionV2A v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v S.we_NP L.beautiful_A)) ;
|
|
||||||
s2 = inflVerb v
|
s2 = inflVerb v
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
InflectionVV vv = {
|
InflectionVV vv = {
|
||||||
t = "гл" ;
|
t = "гл" ;
|
||||||
s1 = heading1 (heading verb_Category) ++
|
s1 = heading1 (heading verb_Category) ;
|
||||||
paragraph (verbExample (S.mkCl S.she_NP vv (S.mkVP (L.sleep_V)))) ;
|
|
||||||
s2 = inflVerb vv.v
|
s2 = inflVerb vv.v
|
||||||
} ;
|
} ;
|
||||||
|
|
||||||
InflectionVS v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v (lin S {s : Mood=>Str = \\m=>"..."}))) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionVQ v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v (lin QS {s : Mood=>Str = \\m=>"..."}))) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
InflectionVA v = {
|
|
||||||
t = "гл" ;
|
|
||||||
s1 = heading1 (heading verb_Category) ++
|
|
||||||
paragraph (verbExample (S.mkCl S.she_NP v L.beautiful_A)) ;
|
|
||||||
s2 = inflVerb v
|
|
||||||
} ;
|
|
||||||
|
|
||||||
oper
|
oper
|
||||||
verbExample : CatRus.Cl -> Str = \cl -> (S.mkUtt cl).s ;
|
|
||||||
{-
|
{-
|
||||||
-} --# notpresent
|
-} --# notpresent
|
||||||
inflVerb : CatRus.V -> Str = \v ->
|
inflVerb : CatRus.V -> Str = \v ->
|
||||||
|
|||||||
Reference in New Issue
Block a user