diff options
| author | aarne <aarne@chalmers.se> | 2009-12-09 09:47:16 +0000 |
|---|---|---|
| committer | aarne <aarne@chalmers.se> | 2009-12-09 09:47:16 +0000 |
| commit | c8ceed08efcc0bdc1fcbd89bce643d9f52f0991b (patch) | |
| tree | 5f0b314341c129eba1bc67b8b887fb8a4486fad8 /deprecated/old-lib/resource/doc | |
| parent | 101df06f6c8380328d4266adadac3ab6d1bac0b3 (diff) | |
moving a few things to deprecated
Diffstat (limited to 'deprecated/old-lib/resource/doc')
| -rw-r--r-- | deprecated/old-lib/resource/doc/MkSynopsis.hs | 240 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/categories-imagemap.html | 53 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/categories-intro.txt | 19 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/categories.dot | 149 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/categories.png | bin | 0 -> 123025 bytes | |||
| -rw-r--r-- | deprecated/old-lib/resource/doc/resdemo.html | 2606 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/synopsis-browse.txt | 34 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/synopsis-example.txt | 51 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/synopsis-intro.txt | 26 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/synopsis.html | 6108 | ||||
| -rw-r--r-- | deprecated/old-lib/resource/doc/synopsis.txt | 1544 |
11 files changed, 10830 insertions, 0 deletions
diff --git a/deprecated/old-lib/resource/doc/MkSynopsis.hs b/deprecated/old-lib/resource/doc/MkSynopsis.hs new file mode 100644 index 000000000..57f1fe31b --- /dev/null +++ b/deprecated/old-lib/resource/doc/MkSynopsis.hs @@ -0,0 +1,240 @@ +import System +import Char +import List + +type Cats = [(String,String,String)] +type Rules = [(String,String,String)] + +main = do + xx <- getArgs + let isLatex = case xx of + "-tex":_ -> True + _ -> False + cs1 <- getCats commonAPI + cs2 <- getCats catAPI + let cs = sortCats (cs1 ++ cs2) + writeFile synopsis "GF Resource Grammar Library: Synopsis" + append "B. Bringert and A. Ranta" + space + append "%!postproc(html): '(SRC=\"categories.png\")' '\\1 USEMAP=\"#categories\"'" + append "%!postproc(html): '#LParadigms' '<a name=\"RParadigms\"></a>'" + append "%!postproc(tex): '#LParadigms' ''" + delimit $ addToolTips cs + include "synopsis-intro.txt" + title "Categories" + space + link "Source 1:" commonAPI + space + link "Source 2:" catAPI + space + append "==A hierarchic view==\n" + include "categories-intro.txt" + append "==Explanations==\n" + delimit $ mkCatTable isLatex cs + space + title "Syntax Rules and Structural Words" + space + link "Source 1:" syntaxAPI + space + link "Source 2:" structuralAPI + space + rs <- getRules syntaxAPI + rs2 <- getRules structuralAPI + delimit $ mkSplitTables True isLatex cs $ rs ++ rs2 + space +-- title "Structural Words" +-- space +-- link "Source:" structuralAPI +-- space +-- rs <- rulesTable False isLatex cs structuralAPI +-- delimit rs + space + title "Lexical Paradigms" + mapM_ (putParadigms isLatex cs) paradigmFiles + space + include "synopsis-browse.txt" + space + title "An Example of Usage" + space + include "synopsis-example.txt" + space + let format = if isLatex then "tex" else "html" + system $ "txt2tags -t" ++ format ++ " --toc " ++ synopsis + if isLatex then (system $ "pdflatex synopsis.tex") >> return () else return () + +addToolTips :: Cats -> [String] +addToolTips = map f + where f (n,e,_) = "%!postproc(html): '(?i)(HREF=\"#" ++ n ++ "\")( TITLE=\"[^\"]*\")?' '\\1 TITLE=\"" ++ e' ++ "\"'" + where e' = n ++ if null e then "" else " - " ++ e + +getCats :: FilePath -> IO Cats +getCats file = do + ss <- readFile file >>= return . lines + return $ getrs [] ss + where + getrs rs ss = case ss of + ('-':'-':'.':_):_ -> reverse rs + [] -> reverse rs + ('-':'-':_):ss2 -> getrs rs ss2 + s:ss2 -> case words s of + cat:";":"--":exp -> getrs ((cat,unwords expl, unwords (tail ex)):rs) ss2 where + (expl,ex) = span (/="e.g.") exp + _ -> getrs rs ss2 + +rulesTable :: Bool -> Bool -> Cats -> FilePath -> IO [String] +rulesTable hasEx isLatex cs file = do + rs <- getRules file + return $ mkTable hasEx isLatex cs rs + + +getRules :: FilePath -> IO Rules +getRules file = do + ss <- readFile file >>= return . lines + return $ getrs [] ss + where + getrs rs ss = case ss of + ('-':'-':'.':_):_ -> reverse rs + [] -> reverse rs + ('-':'-':_):ss2 -> getrs rs ss2 + s:ss2 -> case words s of + _:_:"overload":_ -> getrs rs ss2 + _:":":_ -> getrs (rule s:rs) ss2 + _ -> getrs rs ss2 + rule s = (name, typ, ex) + where + ws = words s + name = head ws + (t,e) = span (/="--") (tail ws) + typ = unwords $ filtype (drop 1 t) + filtype = filter (/=";") + ex = if null e then "" else unwords $ unnumber $ drop 1 e + unnumber e = case e of + n:ws | last n == '.' && not (null (init n)) && all isDigit (init n) -> ws + _ -> e + +putParadigms :: Bool -> Cats -> (String, FilePath) -> IO () +putParadigms isLatex cs (lang,file) = do + stitle ("Paradigms for " ++ lang) + append "#LParadigms" + space + link "source" file + space + rs <- rulesTable False isLatex cs file + space + delimit rs + space + +inChunks :: Int -> ([a] -> [String]) -> [a] -> [String] +inChunks i f = concat . intersperse ["\n\n"] . map f . chunks i where + chunks _ [] = [] + chunks i xs = x : chunks i y where (x,y) = splitAt i xs + +-- Makes one table per result category. +-- Adds a subsection header for each table. +mkSplitTables :: Bool -> Bool -> Cats -> Rules -> [String] +mkSplitTables hasEx isLatex cs = concatMap t . addLexicalCats cs . sortRules + where t (c, xs) = [subtitle c expl] ++ tableOrLink + where + expl = case [e | (n,e,_) <- cs, n == c] of + [] -> "" + e:_ -> e + tableOrLink = if null xs then parad else mkTable hasEx isLatex cs xs + parad = [ + "Lexical category, constructors given in", + "[lexical paradigms #RParadigms]." + ] + +mkTable :: Bool -> Bool -> Cats -> Rules -> [String] +mkTable hasEx isLatex cs = inChunks chsize (\rs -> header : map (unwords . row) rs) + where + chsize = if isLatex then 40 else 1000 + header = if hasEx then "|| Function | Type | Example ||" + else "|| Function | Type ||" + row (name,typ,ex) + = if hasEx then ["|", name', "|", typ', "|", ex', "|"] + else ["|", name', "|", typ', "|"] + where + name' = ttf name + typ' = showTyp cs typ + ex' = if null ex then itf (takeWhile (/='_') name) else itf ex + +mkCatTable :: Bool -> Cats -> [String] +mkCatTable isLatex cs = inChunks chsize (\rs -> header ++ map mk1 rs) cs + where + header = ["|| Category | Explanation | Example ||"] + chsize = if isLatex then 40 else 1000 + mk1 (name,expl,ex) = unwords ["|", showCat cs name, "|", expl, "|", typo ex, "|"] + typo ex = if take 1 ex == "\"" then itf (init (tail ex)) else ex + +synopsis = "synopsis.txt" +commonAPI = "../abstract/Common.gf" +catAPI = "../abstract/Cat.gf" +syntaxAPI = "../api/Constructors.gf" +structuralAPI = "../abstract/Structural.gf" +paradigmFiles = [ + ("Bulgarian", "../bulgarian/ParadigmsBul.gf"), + ("Danish", "../danish/ParadigmsDan.gf"), + ("English", "../english/ParadigmsEng.gf"), + ("Finnish", "../finnish/ParadigmsFin.gf"), + ("French", "../french/ParadigmsFre.gf"), + ("German", "../german/ParadigmsGer.gf"), +-- ("Interlingua", "../interlingua/ParadigmsIna.gf"), + ("Italian", "../italian/ParadigmsIta.gf"), + ("Norwegian", "../norwegian/ParadigmsNor.gf"), + ("Russian", "../russian/ParadigmsRus.gf"), + ("Spanish", "../spanish/ParadigmsSpa.gf"), + ("Swedish", "../swedish/ParadigmsSwe.gf") + ] + +append s = appendFile synopsis ('\n':s) +title s = append $ "=" ++ s ++ "=" +stitle s = append $ "==" ++ s ++ "==" +include s = append $ "%!include: " ++ s +space = append "\n" +delimit ss = mapM_ append ss +link s f = append $ s ++ " [``" ++ fa ++ "`` " ++ f ++ "]" where + fa = "http://www.cs.chalmers.se/~aarne/GF/lib/resource" ++ dropWhile (=='.') f + +ttf s = "``" ++ s ++ "``" +itf s = "//" ++ s ++ "//" + +----------------- + +-- sort category synopsis by category, retain one table +sortCats :: Cats -> Cats +sortCats = sortBy compareCat + where compareCat (n1,_,_) (n2,_,_) = compare n1 n2 + +-- sort function synopsis by category, into separate tables +sortRules :: Rules -> [Rules] +sortRules = groupBy sameCat . sortBy compareRules + where sameCat r1 r2 = resultCat r1 == resultCat r2 + compareRules r1@(n1,_,_) r2@(n2,_,_) + = compare (resultCat r1,n1) (resultCat r2,n2) + +addLexicalCats :: Cats -> [Rules] -> [(String,Rules)] +addLexicalCats cs rss = + map head $ groupBy fstEq $ sortBy (\x y -> compare (fst x) (fst y)) $ + [ (resultCat r, rs) | rs@(r:_) <- rss] ++ [(n,[]) | (n,_,_) <- cs] + where fstEq p1 p2 = fst p1 == fst p2 + +resultCat :: (String,String,String) -> String +resultCat (_,t,_) = last (words t) + + +subtitle cat expl = "==" ++ cat ++ e ++ "==" ++ "[" ++ cat ++ "]" + where e = if null expl then "" else " - " ++ expl + +showCat :: Cats -> String -> String +showCat cs cat = "[" ++ cat ++ " #" ++ cat ++ "]" + +showTyp :: Cats -> String -> String +showTyp cs = unwords . map f . words + where f s | head s == '(' && last s == ')' && isCat c + = "(" ++ showCat cs c ++ ")" + | isCat s = showCat cs s + | otherwise = ttf s + where c = init (tail s) + isCat cat = cat `notElem` ["Str","Int"] + && all (\c -> isAlphaNum c || c == '\'') cat + && isUpper (head cat) diff --git a/deprecated/old-lib/resource/doc/categories-imagemap.html b/deprecated/old-lib/resource/doc/categories-imagemap.html new file mode 100644 index 000000000..31f01eef5 --- /dev/null +++ b/deprecated/old-lib/resource/doc/categories-imagemap.html @@ -0,0 +1,53 @@ +<map id="categories" name="categories"> +<area shape="poly" href="#Text" title="Text" alt="" coords="690,23 688,17 685,12 679,8 672,5 664,4 656,5 649,8 643,12 640,17 638,23 640,29 643,34 649,38 656,41 664,42 672,41 679,38 685,34 688,29"/> +<area shape="poly" href="#Punct" title="Punct" alt="" coords="657,95 656,89 652,84 646,80 638,77 629,76 620,77 612,80 606,84 602,89 600,95 602,101 606,106 612,110 620,113 629,114 638,113 646,110 652,106 656,101"/> +<area shape="poly" href="#Phr" title="Phr" alt="" coords="726,95 725,89 721,84 715,80 708,77 700,76 692,77 685,80 679,84 676,89 675,95 676,101 679,106 685,110 692,113 700,114 708,113 715,110 721,106 725,101"/> +<area shape="poly" href="#PConj" title="PConj" alt="" coords="658,167 656,162 652,156 645,152 637,150 628,149 619,150 610,152 604,156 600,162 598,167 600,173 604,179 610,183 619,185 628,186 637,185 645,183 652,179 656,173"/> +<area shape="poly" href="#Utt" title="Utt" alt="" coords="726,167 725,162 721,156 715,152 708,150 700,149 692,150 685,152 679,156 676,162 675,167 676,173 679,179 685,183 692,185 700,186 708,185 715,183 721,179 725,173"/> +<area shape="poly" href="#Voc" title="Voc" alt="" coords="794,167 793,162 789,156 784,152 777,150 769,149 761,150 754,152 748,156 744,162 743,167 744,173 748,179 754,183 761,185 769,186 777,185 784,183 789,179 793,173"/> +<area shape="poly" href="#Imp" title="Imp" alt="" coords="657,240 656,234 652,229 647,225 640,222 632,221 624,222 617,225 611,229 607,234 606,240 607,246 611,251 617,255 624,258 632,259 640,258 647,255 652,251 656,246"/> +<area shape="poly" href="#S" title="S" alt="" coords="726,240 725,234 721,229 715,225 708,223 700,222 692,223 685,225 679,229 676,234 675,240 676,245 679,250 685,254 692,257 700,258 708,257 715,254 721,250 725,245"/> +<area shape="poly" href="#QS" title="QS" alt="" coords="870,240 868,234 865,229 859,225 852,222 844,221 836,222 829,225 823,229 819,234 818,240 819,246 823,251 829,255 836,258 844,259 852,258 859,255 865,251 868,246"/> +<area shape="poly" href="#Tense" title="Tense" alt="" coords="521,312 519,306 515,301 509,297 501,294 492,293 483,294 475,297 469,301 464,306 463,312 464,318 469,323 475,327 483,330 492,331 501,330 509,327 515,323 519,318"/> +<area shape="poly" href="#Ant" title="Ant" alt="" coords="589,312 588,306 584,301 578,297 571,294 563,293 555,294 548,297 542,301 539,306 538,312 539,318 542,323 548,327 555,330 563,331 571,330 578,327 584,323 588,318"/> +<area shape="poly" href="#Pol" title="Pol" alt="" coords="657,312 656,306 652,301 647,297 640,294 632,293 624,294 617,297 611,301 607,306 606,312 607,318 611,323 617,327 624,330 632,331 640,330 647,327 652,323 656,318"/> +<area shape="poly" href="#Cl" title="Cl" alt="" coords="726,312 725,306 721,301 715,297 708,294 700,293 692,294 685,297 679,301 676,306 675,312 676,318 679,323 685,327 692,330 700,331 708,330 715,327 721,323 725,318"/> +<area shape="poly" href="#ListS" title="ListS" alt="" coords="798,312 797,306 793,301 787,297 779,294 771,293 762,294 754,297 748,301 745,306 743,312 745,318 748,323 754,327 762,330 771,331 779,330 787,327 793,323 797,318"/> +<area shape="poly" href="#Conj" title="Conj" alt="" coords="867,312 866,306 862,301 856,297 849,294 841,293 833,294 826,297 820,301 816,306 815,312 816,318 820,323 826,327 833,330 841,331 849,330 856,327 862,323 866,318"/> +<area shape="poly" href="#QCl" title="QCl" alt="" coords="945,312 943,306 940,301 934,297 927,294 919,293 911,294 904,297 898,301 895,306 893,312 895,318 898,323 904,327 911,330 919,331 927,330 934,327 940,323 943,318"/> +<area shape="poly" href="#NP" title="NP" alt="" coords="270,384 269,379 265,373 260,369 252,366 244,366 237,366 229,369 224,373 220,379 219,384 220,390 224,395 229,400 237,402 244,403 252,402 260,400 265,395 269,390"/> +<area shape="poly" href="#VP" title="VP" alt="" coords="636,384 634,379 631,373 625,369 618,366 610,366 602,366 595,369 589,373 585,379 584,384 585,390 589,395 595,400 602,402 610,403 618,402 625,400 631,395 634,390"/> +<area shape="rect" href="#Adv" title="Adv" alt="" coords="702,367,753,401"/> +<area shape="poly" href="#Predet" title="Predet" alt="" coords="65,457 63,451 59,446 52,441 44,439 34,438 25,439 16,441 10,446 5,451 4,457 5,462 10,468 16,472 25,475 34,475 44,475 52,472 59,468 63,462"/> +<area shape="poly" href="#Pron" title="Pron" alt="" coords="133,457 132,451 129,446 123,441 116,439 108,438 99,439 92,441 86,446 83,451 82,457 83,462 86,468 92,472 99,475 108,475 116,475 123,472 129,468 132,462"/> +<area shape="rect" href="#PN" title="PN" alt="" coords="150,440,202,474"/> +<area shape="poly" href="#Det" title="Det" alt="" coords="270,457 269,451 265,446 260,441 252,439 244,438 237,439 229,441 224,446 220,451 219,457 220,462 224,468 229,472 237,475 244,475 252,475 260,472 265,468 269,462"/> +<area shape="poly" href="#CN" title="CN" alt="" coords="339,457 337,451 334,446 328,441 321,439 313,438 305,439 298,441 292,446 289,451 287,457 289,462 292,468 298,472 305,475 313,475 321,475 328,472 334,468 337,462"/> +<area shape="poly" href="#ListNP" title="ListNP" alt="" coords="420,457 419,451 414,446 407,441 398,439 388,438 378,439 369,441 362,446 358,451 356,457 358,462 362,468 369,472 378,475 388,475 398,475 407,472 414,468 419,462"/> +<area shape="poly" href="#AdV" title="AdV" alt="" coords="489,457 488,451 484,446 479,441 471,439 463,438 455,439 448,441 442,446 439,451 437,457 439,462 442,468 448,472 455,475 463,475 471,475 479,472 484,468 488,462"/> +<area shape="rect" href="#V" title="V,V2,V3,V*,V2*" alt="" coords="506,440,616,474"/> +<area shape="poly" href="#AP" title="AP" alt="" coords="685,457 684,451 680,446 674,441 667,439 659,438 651,439 644,441 639,446 635,451 634,457 635,462 639,468 644,472 651,475 659,475 667,475 674,472 680,468 684,462"/> +<area shape="poly" href="#Subj" title="Subj" alt="" coords="753,457 752,451 749,446 743,441 736,439 728,438 720,439 713,441 707,446 703,451 702,457 703,462 707,468 713,472 720,475 728,475 736,475 743,472 749,468 752,462"/> +<area shape="poly" href="#ListAdj" title="ListAdj" alt="" coords="837,457 836,451 831,446 824,441 814,439 804,438 794,439 784,441 777,446 772,451 770,457 772,462 777,468 784,472 794,475 804,475 814,475 824,472 831,468 836,462"/> +<area shape="poly" href="#Art" title="Art" alt="" coords="90,529 89,523 85,518 80,514 73,511 65,510 57,511 50,514 44,518 40,523 39,529 40,535 44,540 50,544 57,547 65,548 73,547 80,544 85,540 89,535"/> +<area shape="poly" href="#Quant" title="Quant" alt="" coords="166,529 165,523 161,518 154,514 146,511 137,510 128,511 120,514 113,518 109,523 108,529 109,535 113,540 120,544 128,547 137,548 146,547 154,544 161,540 165,535"/> +<area shape="poly" href="#Num" title="Num" alt="" coords="237,529 235,523 232,518 226,514 218,511 210,510 202,511 195,514 189,518 185,523 184,529 185,535 189,540 195,544 202,547 210,548 218,547 226,544 232,540 235,535"/> +<area shape="poly" href="#Ord" title="Ord" alt="" coords="305,529 304,523 300,518 295,514 288,511 280,510 272,511 265,514 259,518 255,523 254,529 255,535 259,540 265,544 272,547 280,548 288,547 295,544 300,540 304,535"/> +<area shape="rect" href="#N" title="N,N2,N3" alt="" coords="323,512,387,546"/> +<area shape="poly" href="#RS" title="RS" alt="" coords="456,529 454,523 451,518 445,514 438,511 430,510 422,511 415,514 409,518 406,523 404,529 406,535 409,540 415,544 422,547 430,548 438,547 445,544 451,540 454,535"/> +<area shape="poly" href="#Card" title="Card" alt="" coords="236,601 235,595 231,590 226,586 218,583 210,582 202,583 195,586 189,590 186,595 184,601 186,607 189,612 195,616 202,619 210,620 218,619 226,616 231,612 235,607"/> +<area shape="poly" href="#Numeral" title="Numeral,Digits" alt="" coords="216,674 214,668 206,662 194,658 179,656 162,655 145,656 130,658 118,662 110,668 107,674 110,679 118,685 130,689 145,691 162,692 179,691 194,689 206,685 214,679"/> +<area shape="poly" href="#AdN" title="AdN" alt="" coords="285,674 283,668 280,662 274,658 267,656 259,655 251,656 244,658 238,662 234,668 233,674 234,679 238,685 244,689 251,691 259,692 267,691 274,689 280,685 283,679"/> +<area shape="poly" href="#CAdv" title="CAdv" alt="" coords="288,746 286,740 282,735 276,731 268,728 259,727 250,728 242,731 235,735 231,740 230,746 231,752 235,757 242,761 250,764 259,765 268,764 276,761 282,757 286,752"/> +<area shape="poly" href="#RCl" title="RCl" alt="" coords="456,601 454,595 451,590 445,586 438,583 430,582 422,583 415,586 409,590 406,595 404,601 406,607 409,612 415,616 422,619 430,620 438,619 445,616 451,612 454,607"/> +<area shape="poly" href="#AdA" title="AdA" alt="" coords="617,529 615,523 612,518 606,514 599,511 591,510 583,511 576,514 570,518 566,523 565,529 566,535 570,540 576,544 583,547 591,548 599,547 606,544 612,540 615,535"/> +<area shape="rect" href="#A" title="A, A2" alt="" coords="634,512,685,546"/> +<area shape="poly" href="#ListAP" title="ListAP" alt="" coords="767,529 765,523 760,518 753,514 744,511 734,510 725,511 716,514 708,518 704,523 702,529 704,535 708,540 716,544 725,547 734,548 744,547 753,544 760,540 765,535"/> +<area shape="poly" href="#IP" title="IP" alt="" coords="895,384 894,379 890,373 885,369 877,366 870,366 862,366 854,369 849,373 845,379 844,384 845,390 849,395 854,400 862,402 870,403 877,402 885,400 890,395 894,390"/> +<area shape="poly" href="#IAdv" title="IAdv" alt="" coords="966,384 965,379 961,373 955,369 947,366 939,366 931,366 923,369 917,373 913,379 912,384 913,390 917,395 923,400 931,402 939,403 947,402 955,400 961,395 965,390"/> +<area shape="poly" href="#ClSlash" title="ClSlash" alt="" coords="1050,384 1048,379 1043,373 1036,369 1026,366 1016,366 1006,366 996,369 989,373 984,379 982,384 984,390 989,395 996,400 1006,402 1016,403 1026,402 1036,400 1043,395 1048,390"/> +<area shape="poly" href="#IDet" title="IDet" alt="" coords="906,457 904,451 901,446 895,441 888,439 880,438 872,439 865,441 859,446 856,451 854,457 856,462 859,468 865,472 872,475 880,475 888,475 895,472 901,468 904,462"/> +<area shape="poly" href="#VPSlash" title="VPSlash" alt="" coords="1052,457 1050,451 1045,446 1037,441 1027,439 1016,438 1005,439 995,441 987,446 982,451 980,457 982,462 987,468 995,472 1005,475 1016,475 1027,475 1037,472 1045,468 1050,462"/> +<area shape="poly" href="#IQuant" title="IQuant" alt="" coords="912,529 910,523 906,518 899,514 890,511 880,510 870,511 861,514 854,518 850,523 848,529 850,535 854,540 861,544 870,547 880,548 890,547 899,544 906,540 910,535"/> +<area shape="poly" href="#RP" title="RP" alt="" coords="456,674 454,668 451,662 445,658 438,656 430,655 422,656 415,658 409,662 406,668 404,674 406,679 409,685 415,689 422,691 430,692 438,691 445,689 451,685 454,679"/> +</map> diff --git a/deprecated/old-lib/resource/doc/categories-intro.txt b/deprecated/old-lib/resource/doc/categories-intro.txt new file mode 100644 index 000000000..f5498fcfe --- /dev/null +++ b/deprecated/old-lib/resource/doc/categories-intro.txt @@ -0,0 +1,19 @@ + + +The chart below shows the categories in a hierarchical top-down order. +The edges do not define the complete dependency structure; if they did, +the graph would have many many more edges, and also many cycles. The precise +meaning of a directed edge from //C// to //D// is: there is a constructor +of //C// that takes //D// as an argument. What the constructors exactly are, +and what other arguments they take, is described by separate tables for +each category. + + | [categories.png] | + +%!include(html): ''categories-imagemap.html'' + + +The rectangular boxes mark open lexical categories, which have constructors +also in the ``Paradigms`` modules. + + diff --git a/deprecated/old-lib/resource/doc/categories.dot b/deprecated/old-lib/resource/doc/categories.dot new file mode 100644 index 000000000..69cf67e74 --- /dev/null +++ b/deprecated/old-lib/resource/doc/categories.dot @@ -0,0 +1,149 @@ + +digraph categories { + +size = "11,11" ; +node [href="#\N"]; + +Text [style = "solid", shape = "ellipse"]; +Text -> Punct [style = "solid"]; +Text -> Phr [style = "solid"]; + +Punct [style = "solid", shape = "ellipse"]; + +Phr [style = "solid", shape = "ellipse"]; +Phr -> PConj [style = "solid"]; +Phr -> Utt [style = "solid"]; +Phr -> Voc [style = "solid"]; + +PConj [style = "solid", shape = "ellipse"]; +Voc [style = "solid", shape = "ellipse"]; + +Utt [style = "solid", shape = "ellipse"]; +Utt -> Imp [style = "solid"]; +Utt -> S [style = "solid"]; +Utt -> QS [style = "solid"]; + +Imp [style = "solid", shape = "ellipse"]; + +S [style = "solid", shape = "ellipse"]; +S -> Tense [style = "solid"]; +S -> Ant [style = "solid"]; +S -> Pol [style = "solid"]; +S -> Cl [style = "solid"]; +S -> ListS [style = "solid"]; +S -> Conjs [style = "solid"]; + +Conjs [label = "Conj", href="#Conj", style = "solid", shape = "ellipse"]; + +Tense [style = "solid", shape = "ellipse"]; +Ant [style = "solid", shape = "ellipse"]; +Pol [style = "solid", shape = "ellipse"]; + +Cl [style = "solid", shape = "ellipse"]; +Cl -> NP [style = "solid"]; +Cl -> VP [style = "solid"]; +Cl -> Adv [style = "solid"]; + +Adv [style = "solid", shape = "rectangle"]; +Adv -> Subj [style = "solid"]; +Adv -> ListAdj [style = "solid"]; + + +NP [style = "solid", shape = "ellipse"]; +NP -> Predet [style = "solid"]; +NP -> Pron [style = "solid"]; +NP -> PN [style = "solid"]; +NP -> Det [style = "solid"]; +NP -> CN [style = "solid"]; +NP -> ListNP [style = "solid"]; + +Predet [style = "solid", shape = "ellipse"]; + +Pron [style = "solid", shape = "ellipse"]; +PN [style = "solid", shape = "rectangle"]; + +Det [style = "solid", shape = "ellipse"]; +Det -> Art [style = "solid"]; +Det -> Quant [style = "solid"]; +Det -> Num [style = "solid"]; +Det -> Ord [style = "solid"]; + + +Art [label = "Art", style = "solid", shape = "ellipse"]; +Quant [label = "Quant", style = "solid", shape = "ellipse"]; + + +Num [style = "solid", shape = "ellipse"]; +Num -> Card [style = "solid"]; + +Card [style = "solid", shape = "ellipse"]; +Card -> Numerals [style = "solid"]; +Card -> AdN [style = "solid"]; + +AdN [style = "solid", shape = "ellipse"]; +AdN -> CAdv [style = "solid"]; + +Numerals [label = "Numeral,Digits", href="#Numeral", style = "solid", shape = "ellipse"]; + + +Ord [style = "solid", shape = "ellipse"]; + +CN [style = "solid", shape = "ellipse"]; +CN -> Ns [style = "solid"]; +CN -> RS [style = "solid"]; + +Ns [label = "N,N2,N3", href="#N", style = "solid", shape = "rectangle"]; + + +VP [style = "solid", shape = "ellipse"]; +VP -> AdV [style = "solid"]; +VP -> Vs [style = "solid"]; +VP -> AP [style = "solid"]; + +AdV [style = "solid", shape = "ellipse"]; + +Vs [label = "V,V2,V3,V*,V2*", href="#V", style = "solid", shape = "rectangle"]; + +AP [style = "solid", shape = "ellipse"]; +AP -> AdA [style = "solid"]; +AP -> As [style = "solid"]; +AP -> ListAP [style = "solid"]; + +As [label = "A, A2", href="#A", style = "solid", shape = "rectangle"]; + + + + +QS [style = "solid", shape = "ellipse"]; +QS -> QCl [style = "solid"]; + +QCl [style = "solid", shape = "ellipse"]; +QCl -> IP [style = "solid"]; +QCl -> IAdv [style = "solid"]; +QCl -> ClSlash [style = "solid"]; + +IP [style = "solid", shape = "ellipse"]; +IP -> IDet [style = "solid"]; + +IDet [style = "solid", shape = "ellipse"]; +IDet -> IQuant [style = "solid"]; + +IQuant [style = "solid", shape = "ellipse"]; + +IAdv [style = "solid", shape = "ellipse"]; + +ClSlash [style = "solid", shape = "ellipse"]; +ClSlash -> VPSlash [style = "solid"]; + +VPSlash [style = "solid", shape = "ellipse"]; + +RS [style = "solid", shape = "ellipse"]; +RS -> RCl [style = "solid"]; + +RCl [style = "solid", shape = "ellipse"]; +RCl -> RP [style = "solid"]; + +RP [style = "solid", shape = "ellipse"]; + + +} diff --git a/deprecated/old-lib/resource/doc/categories.png b/deprecated/old-lib/resource/doc/categories.png Binary files differnew file mode 100644 index 000000000..590540fc5 --- /dev/null +++ b/deprecated/old-lib/resource/doc/categories.png diff --git a/deprecated/old-lib/resource/doc/resdemo.html b/deprecated/old-lib/resource/doc/resdemo.html new file mode 100644 index 000000000..6cbd91aa6 --- /dev/null +++ b/deprecated/old-lib/resource/doc/resdemo.html @@ -0,0 +1,2606 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +</head> +<body> +Demo: UseCl TPres AAnter PPos (PredV2 (AdvNP (UsePron i_Pron) everywhere_Adv) wipe_V2 (UsePN paris_PN)) +<br> +DemoBul: аз навсякъде съм бърсал Париж +<br> +DemoCat: a tot arreu he eixugat Paris +<br> +DemoDan: jeg overalt har visket Paris +<br> +DemoEng: I everywhere have wiped Paris +<br> +DemoFin: minä kaikkialla olen pyyhkinyt Pariisin +<br> +DemoFre: je partout ai essuyé Paris +<br> +DemoGer: ich überall habe Paris gewischt +<br> +DemoIta: dappertutto ho asciugato Parigi +<br> +DemoNor: jeg overalt har tørka Paris +<br> +DemoRus: я везде вытираю Париж +<br> +DemoSpa: en todas partes he secado Paris +<br> +DemoSwe: jag överallt har torkat Paris +<br> + Demo: UseCl TPres AAnter PNeg (PredAdv somebody_NP (ComparAdvAdjS more_CAdv blue_A (UseCl TCond ASimul PNeg (PredAdv (AdvNP (DetArtSg IndefArt (ComplN2 brother_N2 (DetArtPl DefArt (UseN2 father_N2)))) here7to_Adv) (AdAdv so_AdA here7from_Adv))))) +<br> +DemoBul: някой не е бил по - синьо от колкото брат на бащите до тук не би бил толкова от тук +<br> +DemoCat: algú no ha estat més blavament que un germà dels pares cap aquí no seria tan d'aquí +<br> +DemoDan: nogen har ikke været mer blått end en broder til fædrene hit ikke ville være så herfra +<br> +DemoEng: somebody hasn't been more bluely than a brother of the fathers to here wouldn't be so from here +<br> +DemoFin: joku ei ole ollut enemmän sinisesti kuin isien veli tänne ei olisi niin täältä +<br> +DemoFre: quelqu'un n' a pas été plus bleuement qu' un frère des pères ici ne serait pas si d'ici +<br> +DemoGer: jemand ist nicht mehr blau als ein Bruder von den Vätern hierher nicht so hieraus sein würde gewesen +<br> +DemoIta: qualcuno non è stato più blumente che un fratello dei padri quì non sarebbe così da quì +<br> +DemoNor: noen har ikke vært mer blått enn en bror til fedrene hit ikke ville være så herfra +<br> +DemoRus: кто-то не более голубо чем брат отцов сюда не +<br> +DemoSpa: algún no ha sido mas azulmente que un hermano de los padres para acá no sería tanto de acá +<br> +DemoSwe: någon har inte varit mer blått än en bror till fäderna hit inte skulle vara så härifrån +<br> + Demo: UseCl TFut AAnter PPos (PredV (UsePron we_Pron) live_V) +<br> +DemoBul: ние ще сме живeли +<br> +DemoCat: haurem viscut +<br> +DemoDan: vi vil have levet +<br> +DemoEng: we will have lived +<br> +DemoFin: me olemme eläneet +<br> +DemoFre: nous aurons vécu +<br> +DemoGer: wir werden gelebt haben +<br> +DemoIta: avremo vissuto +<br> +DemoNor: vi vil ha levd +<br> +DemoRus: мы будем жить +<br> +DemoSpa: habremos vivido +<br> +DemoSwe: vi ska ha levt +<br> + Demo: UseCl TCond ASimul PNeg (PredAdv (UsePN paris_PN) far_Adv) +<br> +DemoBul: Париж не би бил далече +<br> +DemoCat: Paris no seria lluny +<br> +DemoDan: Paris ville ikke være fjern +<br> +DemoEng: Paris wouldn't be far +<br> +DemoFin: Pariisi ei olisi kaukana +<br> +DemoFre: Paris ne serait pas loin +<br> +DemoGer: Paris würde nicht weit sein +<br> +DemoIta: Parigi non sarebbe lontano +<br> +DemoNor: Paris ville ikke være fjern +<br> +DemoRus: Париж не +<br> +DemoSpa: Paris no sería lejos +<br> +DemoSwe: Paris skulle inte vara långt +<br> + Demo: UseCl TFut ASimul PNeg (PredAdv (UsePron it_Pron) (PositAdvAdj full_A)) +<br> +DemoBul: то няма да е пълно +<br> +DemoCat: no serà pleament +<br> +DemoDan: det vil ikke være fuldt +<br> +DemoEng: it won't be fully +<br> +DemoFin: se ei ole täydesti +<br> +DemoFre: il ne sera pas pleinement +<br> +DemoGer: es wird nicht voll sein +<br> +DemoIta: non sarà pienamente +<br> +DemoNor: det vil ikke være fullt +<br> +DemoRus: оно не будет полно +<br> +DemoSpa: no será llenamente +<br> +DemoSwe: det ska inte vara fullt +<br> + Demo: UseCl TPast AAnter PPos (PredAdv (UsePron they_Pron) (PositAdvAdj dull_A)) +<br> +DemoBul: те бяха били тъпо +<br> +DemoCat: havien estat balbament +<br> +DemoDan: de havde været sløvt +<br> +DemoEng: they had been dully +<br> +DemoFin: he olivat olleet tylsästi +<br> +DemoFre: ils avaient été émoussément +<br> +DemoGer: sie waren stumpf gewesen +<br> +DemoIta: erano stati noiosamente +<br> +DemoNor: de hadde vært sløvt +<br> +DemoRus: они были скучно +<br> +DemoSpa: habían sido desafiladamente +<br> +DemoSwe: de hade varit slött +<br> + Demo: UseCl TPres AAnter PPos (PredAdv (UsePron he_Pron) here_Adv) +<br> +DemoBul: той е бил тук +<br> +DemoCat: ha estat aquí +<br> +DemoDan: han har været her +<br> +DemoEng: he has been here +<br> +DemoFin: hän on ollut täällä +<br> +DemoFre: il a été ici +<br> +DemoGer: er ist hier gewesen +<br> +DemoIta: è stato quì +<br> +DemoNor: han har vært her +<br> +DemoRus: он здесь +<br> +DemoSpa: ha sido aquí +<br> +DemoSwe: han har varit här +<br> + Demo: UseCl TPast ASimul PPos (PredV2 (DetArtSg DefArt (UseN car_N)) kill_V2 (UsePN paris_PN)) +<br> +DemoBul: колата уби Париж +<br> +DemoCat: el cotxe matava Paris +<br> +DemoDan: bilen dræbede Paris +<br> +DemoEng: the car killed Paris +<br> +DemoFin: auto tappoi Pariisin +<br> +DemoFre: la voiture tuait Paris +<br> +DemoGer: der Wagen tötete Paris +<br> +DemoIta: la macchina uccideva Parigi +<br> +DemoNor: bilen drepte Paris +<br> +DemoRus: машина убивала Париж +<br> +DemoSpa: el auto mataba Paris +<br> +DemoSwe: bilen dödade Paris +<br> + Demo: UseCl TFut AAnter PNeg (PredV2 (UsePN paris_PN) watch_V2 (UsePN paris_PN)) +<br> +DemoBul: Париж няма да е гледал Париж +<br> +DemoCat: Paris no haurà mirat Paris +<br> +DemoDan: Paris vil ikke have set på Paris +<br> +DemoEng: Paris won't have watched Paris +<br> +DemoFin: Pariisi ei ole katsellut Pariisia +<br> +DemoFre: Paris n' aura pas regardé Paris +<br> +DemoGer: Paris wird an Paris nicht geschaut haben +<br> +DemoIta: Parigi non avrà guardato Parigi +<br> +DemoNor: Paris vil ikke ha sett på Paris +<br> +DemoRus: Париж не будет смотреть Париж +<br> +DemoSpa: Paris no habrá mirado Paris +<br> +DemoSwe: Paris ska inte ha tittat på Paris +<br> + Demo: UseCl TPast AAnter PNeg (PredV (DetCN (DetArtCard IndefArt (AdNum almost_AdN (NumNumeral (num (pot2as3 (pot1as2 (pot1to19 n8))))))) (ComplN2 mother_N2 (DetCN every_Det (AdjCN (ComparA narrow_A (DetArtSg IndefArt (ComplN2 brother_N2 (DetArtSg IndefArt (UseN2 father_N2))))) (ComplN2 brother_N2 (UsePron i_Pron)))))) sew_V) +<br> +DemoBul: почти осемнадесет майки на всеки по - тесен от брат на баща брат ми не бяха шили +<br> +DemoCat: quasi divuit mares cada germà de mi más estret que un germà d' un pare no havien cosit +<br> +DemoDan: næsten atten mødre til hver broder til mig smalere end en broder til en far havde ikke syet +<br> +DemoEng: almost eighteen mothers of every brother of I narrower than a brother of a father hadn't sewed +<br> +DemoFin: melkein kahdeksan toista jokaisen isän veljenä kapeamman minun veljen äitiä eivät olleet kylväneet +<br> +DemoFre: presque dix-huit mères chaque frère de moi plus étroit qu' un frère d' un père n' avaient pas cousu +<br> +DemoGer: fast achzehn Mütter von jedem schmaleren als ein Bruder von einem Vater Bruder von mir hatten nicht genäht +<br> +DemoIta: quasi ottanta madri ogni fratello di me più stretto che un fratello di un padre non avevano cucito +<br> +DemoNor: nesten atten mødre til hver bror til meg smalere enn en bror til en far hadde ikke sydd +<br> +DemoRus: почти восемнадцать матери каждого уже брата отца моего брата не шили +<br> +DemoSpa: casi ochenta madres cada hermano de mí más estrecho que un hermano de un padre no habían cosido +<br> +DemoSwe: nästan arton mödrar till varje bror till mig smalare än en bror till en far hade inte sytt +<br> + Demo: UseCl TPast ASimul PNeg (PredAP (UsePN paris_PN) (ComparA wide_A (DetArtPl IndefArt (ComplN2 (ComplN3 distance_N3 (DetArtSg IndefArt (AdjCN (ComparA hot_A (UsePN paris_PN)) (ComplN2 (ComplN3 distance_N3 (UsePN john_PN)) (UsePron it_Pron))))) (DetArtSg IndefArt (AdjCN (AdAP too_AdA (ComplA2 easy_A2V somebody_NP)) (UseN2 father_N2))))))) +<br> +DemoBul: Париж не беше по - широк от разстояния от по - горещо от Париж разстояние от Джон до него до прекалено лесен за някой баща +<br> +DemoCat: Paris no era más extens que unes distàncies d' una distància de Joan a ell más calenta que Paris a un pare massa fácil a algú +<br> +DemoDan: Paris var ikke bredere end afstander fra en afstand fra John til det hedere end Paris til en far for nem for nogen +<br> +DemoEng: Paris wasn't wider than distances from a distance from John to it hotter than Paris to a father too easy for somebody +<br> +DemoFin: Pariisi ei ollut leveämpi kuin etäisyyksiä Pariisia kuumemmasta etäisyydestä Jussista siihen liian jollevulle helppoon isään +<br> +DemoFre: Paris n' était pas plus large que des distances d' une distance de Jean à lui plus chaude que Paris à un père trop facile à quelqu'un +<br> +DemoGer: Paris war nicht breiter als Entfernungen von einer heißeren als Paris Entfernung von Johann zu ihm zu einem zu leichten für jemanden Vater +<br> +DemoIta: Parigi non era più largo che distanze di una distanza di Giovanni a lui più calda che Parigi ad un padre troppo facile a qualcuno +<br> +DemoNor: Paris var ikke bredere enn avstander fra en avstand fra John til det heitere enn Paris til en far for grei for noen +<br> +DemoRus: Париж не был шире расстояний от горячее Парижа его расстояния от Ивана к слишком лёгкому для кого-то отцу +<br> +DemoSpa: Paris no era más ancho que unas distancias de una distancia de Juan a él más caliente que Paris a un padre demasiado fácil a algún +<br> +DemoSwe: Paris var inte bredare än avstånd från ett avstånd från Johan till det hetare än Paris till en far för lätt för någon +<br> + Demo: UseCl TPast ASimul PNeg (PredAP (AdvNP somebody_NP now_Adv) (ComplA2 married_A2 (DetCN few_Det (UseN2 mother_N2)))) +<br> +DemoBul: някой сега не беше женен за няколко майки +<br> +DemoCat: algú ara no era casat a poques mares +<br> +DemoDan: nogen nu var ikke gift med få mødre +<br> +DemoEng: somebody now wasn't married to few mothers +<br> +DemoFin: joku nyt ei ollut avioitunut harvan äidin kanssa +<br> +DemoFre: quelqu'un maintenant n' était pas marié à peu de mères +<br> +DemoGer: jemand jetzt war nicht verheiratet mit wenigen Müttern +<br> +DemoIta: qualcuno adesso non era sposato a poche madri +<br> +DemoNor: noen nå var ikke gift med få mødre +<br> +DemoRus: кто-то сейчас не был замужем за немногом матерью +<br> +DemoSpa: algún ahora no era casado a pocas madres +<br> +DemoSwe: någon nu var inte gift med få mödrar +<br> + Demo: UseCl TFut ASimul PPos (PredAP (UsePron it_Pron) (PositA round_A)) +<br> +DemoBul: то ще е кръгло +<br> +DemoCat: serà rodó +<br> +DemoDan: det vil være rundt +<br> +DemoEng: it will be round +<br> +DemoFin: se on pyöreä +<br> +DemoFre: il sera rond +<br> +DemoGer: es wird rund sein +<br> +DemoIta: sarà rotondo +<br> +DemoNor: det vil være rundt +<br> +DemoRus: оно будет круглое +<br> +DemoSpa: será redondo +<br> +DemoSwe: det ska vara runt +<br> + Demo: UseCl TCond ASimul PPos (PredAdv (DetArtPl IndefArt (UseN song_N)) far_Adv) +<br> +DemoBul: песни биха били далече +<br> +DemoCat: unes cançons serien lluny +<br> +DemoDan: sanger ville være fjern +<br> +DemoEng: songs would be far +<br> +DemoFin: lauluja olisi kaukana +<br> +DemoFre: des chansons seraient loin +<br> +DemoGer: Lieder würden weit sein +<br> +DemoIta: canzoni sarebbero lontano +<br> +DemoNor: sanger ville være fjern +<br> +DemoRus: песни +<br> +DemoSpa: unas canciones serían lejos +<br> +DemoSwe: sånger skulle vara långt +<br> + Demo: UseCl TPres ASimul PPos (PredV (DetArtSg DefArt (UseN2 father_N2)) spit_V) +<br> +DemoBul: бащата плюе +<br> +DemoCat: el pare escup +<br> +DemoDan: fadren spytter +<br> +DemoEng: the father spits +<br> +DemoFin: isä sylkee +<br> +DemoFre: le père crache +<br> +DemoGer: der Vater spuckt +<br> +DemoIta: il padre sputa +<br> +DemoNor: faren spytter +<br> +DemoRus: отец плюёт +<br> +DemoSpa: el padre escupe +<br> +DemoSwe: fadern spottar +<br> + Demo: UseCl TFut ASimul PPos (PredV2 (UsePron she_Pron) put_V2 (DetArtSg IndefArt (UseN salt_N))) +<br> +DemoBul: тя ще сложи сол +<br> +DemoCat: posarà una sal +<br> +DemoDan: hun vil sætte et salt +<br> +DemoEng: she will put a salt +<br> +DemoFin: hän panee suolan +<br> +DemoFre: elle mettra un sel +<br> +DemoGer: sie wird einen Salz setzen +<br> +DemoIta: metterà un sale +<br> +DemoNor: hun vil sette et salt +<br> +DemoRus: она будет класть соль +<br> +DemoSpa: pondrá una sal +<br> +DemoSwe: hon ska sätta ett salt +<br> + Demo: UseCl TPast AAnter PNeg (PredV2 somebody_NP do_V2 (UsePN john_PN)) +<br> +DemoBul: някой не беше направил Джон +<br> +DemoCat: algú no havia fet Joan +<br> +DemoDan: nogen havde ikke gjort John +<br> +DemoEng: somebody hadn't done John +<br> +DemoFin: joku ei ollut tehnyt Jussia +<br> +DemoFre: quelqu'un n' avait pas fait Jean +<br> +DemoGer: jemand hatte Johann nicht getan +<br> +DemoIta: qualcuno non aveva fatto Giovanni +<br> +DemoNor: noen hadde ikke gjort John +<br> +DemoRus: кто-то не делал Ивана +<br> +DemoSpa: algún no había hecho Juan +<br> +DemoSwe: någon hade inte gjort Johan +<br> + Demo: UseCl TCond ASimul PPos (PredAP (DetArtSg DefArt (UseN louse_N)) (ComparA round_A (DetCN every_Det (UseN2 father_N2)))) +<br> +DemoBul: въшката би билa по - кръгла от всеки баща +<br> +DemoCat: el poll seria más rodó que cada pare +<br> +DemoDan: lusen ville være rundere end hver far +<br> +DemoEng: the louse would be rounder than every father +<br> +DemoFin: lude olisi pyöreämpi kuin jokainen isä +<br> +DemoFre: le pou serait plus rond que chaque père +<br> +DemoGer: die Laus würde runder als jeder Vater sein +<br> +DemoIta: il pidocchio sarebbe più rotondo che ogni padre +<br> +DemoNor: lusa ville være rundere enn hver far +<br> +DemoRus: вошь +<br> +DemoSpa: el piojo sería más redondo que cada padre +<br> +DemoSwe: lusen skulle vara rundare än varje far +<br> + Demo: UseCl TCond ASimul PPos (PredAP (AdvNP (DetArtSg DefArt (AdjCN (ComparA dull_A (UsePN paris_PN)) (UseN2 mother_N2))) now_Adv) (ComparA black_A (UsePron it_Pron))) +<br> +DemoBul: по - тъпата от Париж майка сега би билa по - черна от него +<br> +DemoCat: la mare más balba que Paris ara seria más negra que ell +<br> +DemoDan: den moder sløvere end Paris nu ville være sortere end det +<br> +DemoEng: the mother duller than Paris now would be blacker than it +<br> +DemoFin: Pariisia tylsempi äiti nyt olisi mustempi kuin se +<br> +DemoFre: la mère plus émoussée que Paris maintenant serait plus noire que lui +<br> +DemoGer: die stumpfere als Paris Mutter jetzt würde schwarzer als es sein +<br> +DemoIta: la madre più noiosa che Parigi adesso sarebbe più nera che lui +<br> +DemoNor: den moren sløvere enn Paris nå ville være svartere enn det +<br> +DemoRus: скучнее Парижа мать сейчас +<br> +DemoSpa: la madre más desafilada que Paris ahora sería más negra que el +<br> +DemoSwe: den modern slöare än Paris nu skulle vara svartare än det +<br> + Demo: UseCl TPast AAnter PNeg (PredAP (UsePron it_Pron) (AdAP almost_AdA (ComparA green_A (UsePron it_Pron)))) +<br> +DemoBul: то не беше било почти по - зелено от него +<br> +DemoCat: no havia estat quasi más verd que ell +<br> +DemoDan: det havde ikke været næsten grønnere end det +<br> +DemoEng: it hadn't been almost greener than it +<br> +DemoFin: se ei ollut ollut melkein vihreämpi kuin se +<br> +DemoFre: il n' avait pas été presque plus vert que lui +<br> +DemoGer: es war nicht fast grüner als es gewesen +<br> +DemoIta: non era stato quasi più verde che lui +<br> +DemoNor: det hadde ikke vært nesten grønnere enn det +<br> +DemoRus: оно не был почти зелёнее него +<br> +DemoSpa: no había sido casi más verde que el +<br> +DemoSwe: det hade inte varit nästan grönare än det +<br> + Demo: UseCl TPres AAnter PPos (PredAP (UsePron youSg_Pron) (PositA beautiful_A)) +<br> +DemoBul: ти си бил красив +<br> +DemoCat: has estat bella +<br> +DemoDan: du har været smuk +<br> +DemoEng: you have been beautiful +<br> +DemoFin: sinä olet ollut kaunis +<br> +DemoFre: tu as été joli +<br> +DemoGer: du bist schön gewesen +<br> +DemoIta: sei stato bello +<br> +DemoNor: du har vært vakker +<br> +DemoRus: ты красивый +<br> +DemoSpa: has sido bello +<br> +DemoSwe: du har varit vacker +<br> + Demo: UseCl TCond ASimul PNeg (PredAdv (DetArtPl DefArt (AdjCN (ComparA long_A (AdvNP (UsePron i_Pron) there7from_Adv)) (UseN leaf_N))) there_Adv) +<br> +DemoBul: по - дългите от мен от там листа не биха били там +<br> +DemoCat: les fulles más llarges que jo d'allà no serien allà +<br> +DemoDan: de løv længere end jeg derfra ville ikke være der +<br> +DemoEng: the leaves longer than I from there wouldn't be there +<br> +DemoFin: minua sieltä pitemmät lehdet eivät olisi siellä +<br> +DemoFre: les feuilles plus longues que moi de là ne seraient pas là +<br> +DemoGer: die längeren als ich daher Blätter würden nicht da sein +<br> +DemoIta: le foglie più lunghe che io di là non sarebbero là +<br> +DemoNor: de løva lengre enn jeg derfra ville ikke være der +<br> +DemoRus: длиннее меня оттуда листы не +<br> +DemoSpa: las hojas más largas que yo de allá no serían allí +<br> +DemoSwe: de löven längre än jag därifrån skulle inte vara där +<br> + Demo: UseCl TPres ASimul PNeg (PredV (AdvNP (DetArtSg IndefArt (UseN2 brother_N2)) far_Adv) die_V) +<br> +DemoBul: брат далече не умира +<br> +DemoCat: un germà lluny no mor +<br> +DemoDan: en broder fjern dør ikke +<br> +DemoEng: a brother far doesn't die +<br> +DemoFin: veli kaukana ei kuole +<br> +DemoFre: un frère loin ne meurt pas +<br> +DemoGer: ein Bruder weit stirbt nicht +<br> +DemoIta: un fratello lontano non muore +<br> +DemoNor: en bror fjern dør ikke +<br> +DemoRus: брат далеко не умирает +<br> +DemoSpa: un hermano lejos no muere +<br> +DemoSwe: en bror långt dör inte +<br> + Demo: UseCl TPast ASimul PNeg (PredV (DetArtPl IndefArt (ComplN2 brother_N2 somebody_NP)) go_V) +<br> +DemoBul: братя на някой не отидоха +<br> +DemoCat: uns germàs de algú no anaven +<br> +DemoDan: brødre til nogen gik ikke +<br> +DemoEng: brothers of somebody didn't go +<br> +DemoFin: jonkun veljissä ei mennyt +<br> +DemoFre: des frères de quelqu'un n' allaient pas +<br> +DemoGer: Brüder von jemandem gingen nicht +<br> +DemoIta: fratelli di qualcuno non andavano +<br> +DemoNor: brødre til noen gikk ikke +<br> +DemoRus: браты кого-то не ходили +<br> +DemoSpa: unos hermanos de algún no iban +<br> +DemoSwe: bröder till någon gick inte +<br> + Demo: UseCl TFut ASimul PPos (PredV (DetCN (DetArtOrd DefArt NumSg left_Ord) (AdjCN (PositA important_A) (ComplN2 brother_N2 (DetCN (DetQuant this_Quant NumPl) (UseN2 mother_N2))))) blow_V) +<br> +DemoBul: левият важен брат на тези майки ще духа +<br> +DemoCat: l' esquerra germà de aquestes mares important bufarà +<br> +DemoDan: den venstre vigtige broder til disse mødre vil blæse +<br> +DemoEng: the left important brother of these mothers will blow +<br> +DemoFin: vasenet tärkeä näiden äitien veli puhaltaa +<br> +DemoFre: le gauche frère ces mères important soufflera +<br> +DemoGer: der linke wichtige Bruder von diesen Müttern wird blasen +<br> +DemoIta: il sinistro fratello di queste madri importante soffierà +<br> +DemoNor: den venstre viktige broren til disse mødrene vil blåse +<br> +DemoRus: левый важный брат этих матерей будет дуть +<br> +DemoSpa: el izquierda hermano de estas madres importante soplará +<br> +DemoSwe: den vänstra viktiga brodern till de här mödrarna ska blåsa +<br> + Demo: UseCl TPast AAnter PNeg (PredV (DetCN few_Det (ComplN2 father_N2 (DetCN much_Det (UseN song_N)))) go_V) +<br> +DemoBul: няколко бащи на много песен не бяха отишли +<br> +DemoCat: pocs pares de molta cançó no havien anat +<br> +DemoDan: få fædre til meget sanger var ikke gået +<br> +DemoEng: few fathers of much song hadn't gone +<br> +DemoFin: harva paljon laulun isä ei ollut mennyt +<br> +DemoFre: peu de pères de beaucoup de chansons n' étaient pas allés +<br> +DemoGer: wenige Väter von vielem Lied waren nicht gegangen +<br> +DemoIta: pochi padri di molta canzone non erano andati +<br> +DemoNor: få fedre til mye sanger var ikke gått +<br> +DemoRus: немного отец многа песни не ходил +<br> +DemoSpa: pocos padres de mucha canción no habían ido +<br> +DemoSwe: få fäder till mycket sånger hade inte gått +<br> + Demo: UseCl TPast AAnter PNeg (PredAdv (DetArtSg DefArt (UseN bird_N)) now_Adv) +<br> +DemoBul: птицата не беше билa сега +<br> +DemoCat: l' ocell no havia estat ara +<br> +DemoDan: fuglen havde ikke været nu +<br> +DemoEng: the bird hadn't been now +<br> +DemoFin: lintu ei ollut ollut nyt +<br> +DemoFre: l' oiseau n' avait pas été maintenant +<br> +DemoGer: der Vogel war nicht jetzt gewesen +<br> +DemoIta: l' uccello non era stato adesso +<br> +DemoNor: fuglen hadde ikke vært nå +<br> +DemoRus: птица не была сейчас +<br> +DemoSpa: el pájaro no había sido ahora +<br> +DemoSwe: fågeln hade inte varit nu +<br> + Demo: UseCl TPast ASimul PNeg (PredV (UsePron we_Pron) sew_V) +<br> +DemoBul: ние не шихме +<br> +DemoCat: no cosíem +<br> +DemoDan: vi syede ikke +<br> +DemoEng: we didn't sew +<br> +DemoFin: me emme kylväneet +<br> +DemoFre: nous ne cousions pas +<br> +DemoGer: wir nähten nicht +<br> +DemoIta: non cucivamo +<br> +DemoNor: vi sydde ikke +<br> +DemoRus: мы не шили +<br> +DemoSpa: no cosíamos +<br> +DemoSwe: vi sydde inte +<br> + Demo: UseCl TPast AAnter PNeg (PredV2 (DetArtPl IndefArt (UseN2 father_N2)) leave_V2 (DetArtPl DefArt (AdjCN (AdAP too_AdA (ComparA dull_A (DetCN every_Det (AdjCN (AdAP so_AdA (PositA ugly_A)) (UseN2 brother_N2))))) (UseN book_N)))) +<br> +DemoBul: бащи не бяха оставили прекалено по - тъпите от всеки толкова глупав брат книги +<br> +DemoCat: uns pares no havien partit els llibres massa más balbs que cada germà tan lleig +<br> +DemoDan: fædre havde ikke forladet de bøger for sløvere end hver så grimme broder +<br> +DemoEng: fathers hadn't left the books too duller than every so ugly brother +<br> +DemoFin: isiä ei ollut jättänyt liian jokaista niin rumaa veljenä tylsempiä kirjoja +<br> +DemoFre: des pères n' avaient pas quitté les livres trop plus émoussés que chaque frère si laide +<br> +DemoGer: Väter hatten die zu stumpferen als jeder so häßliche Bruder Bücher nicht verlassen +<br> +DemoIta: padri non avevano lasciato i libri troppo più noiosi che ogni fratello così brutto +<br> +DemoNor: fedre hadde ikke forlatt de bøkene for sløvere enn hver så stygge bror +<br> +DemoRus: отцы не уходили слишком скучнее каждого так некрасивого брата книги +<br> +DemoSpa: unos padres no habían partido los libros demasiado más desafilados que cada hermano tanto feo +<br> +DemoSwe: fäder hade inte lämnat de böckerna för slöare än varje så ful bror +<br> + Demo: UseCl TCond ASimul PPos (PredAP (DetCN much_Det (UseN skin_N)) (PositA thick_A)) +<br> +DemoBul: много кожа би билa дебела +<br> +DemoCat: molta pell seria gruixuda +<br> +DemoDan: meget skind ville være tykke +<br> +DemoEng: much skin would be thick +<br> +DemoFin: paljon nahka olisi paksu +<br> +DemoFre: beaucoup de peaux seraient épais +<br> +DemoGer: vieler Haut würde dick sein +<br> +DemoIta: molta pelle sarebbe grossa +<br> +DemoNor: mye skinn ville være tykke +<br> +DemoRus: много кожи +<br> +DemoSpa: mucha piel sería gruesa +<br> +DemoSwe: mycket skinn skulle vara tjocka +<br> + Demo: UseCl TPast AAnter PPos (PredAdv (UsePron he_Pron) far_Adv) +<br> +DemoBul: той беше бил далече +<br> +DemoCat: havia estat lluny +<br> +DemoDan: han havde været fjern +<br> +DemoEng: he had been far +<br> +DemoFin: hän oli ollut kaukana +<br> +DemoFre: il avait été loin +<br> +DemoGer: er war weit gewesen +<br> +DemoIta: era stato lontano +<br> +DemoNor: han hadde vært fjern +<br> +DemoRus: он был далеко +<br> +DemoSpa: había sido lejos +<br> +DemoSwe: han hade varit långt +<br> + Demo: UseCl TPres ASimul PNeg (PredV2 (UsePron he_Pron) break_V2 (DetArtPl DefArt (AdjCN (ComparA rotten_A (DetArtPl IndefArt (UseN2 brother_N2))) (ComplN2 (ComplN3 distance_N3 (DetArtSg IndefArt (AdjCN (PositA green_A) (ComplN2 mother_N2 (UsePron she_Pron))))) (DetArtSg IndefArt (UseN2 brother_N2)))))) +<br> +DemoBul: той не чупи по - прогнилите от братя разстояния от зелена майка и до брат +<br> +DemoCat: no trenca les distàncies d' una mare de ella verda a un germà más podrites que uns germàs +<br> +DemoDan: han knuser ikke de afstander fra en grøn moder til hende til en broder rådnere end brødre +<br> +DemoEng: he doesn't break the distances from a green mother of she to a brother rottener than brothers +<br> +DemoFin: hän ei riko veljissä mädämpiä etäisyyksiä vihreästä hänen äidistä veljeen +<br> +DemoFre: il ne casse pas les distances d' une mère d' elle verte à un frère plus pourries que des frères +<br> +DemoGer: er zerschlägt die verdorbeneren als Brüder Entfernungen von einer grünen Mutter von ihr zu einem Bruder nicht +<br> +DemoIta: non rompe le distanze di una madre di lei verde ad un fratello più marcie che fratelli +<br> +DemoNor: han knuser ikke de avstandene fra en grønn mor til henne til en bror råttenere enn brødre +<br> +DemoRus: он не прерывает гнилее братов расстояния от зелёной её матери к брату +<br> +DemoSpa: no rompe las distancias de una madre de ella verde a un hermano más podridas que unos hermanos +<br> +DemoSwe: han slår inte sönder de avstånden från en grön mor till henne till en bror ruttnare än bröder +<br> + Demo: UseCl TPast ASimul PNeg (PredAP (UsePron we_Pron) (ComplA2 married_A2 (DetCN few_Det (UseN planet_N)))) +<br> +DemoBul: ние не бяхме женени за няколко планети +<br> +DemoCat: no érem casates a poques planetes +<br> +DemoDan: vi var ikke gifte med få planeter +<br> +DemoEng: we weren't married to few planets +<br> +DemoFin: me emme olleet avioituneita harvan planeetan kanssa +<br> +DemoFre: nous n' étions pas mariés à peu de planètes +<br> +DemoGer: wir waren nicht verheiratet mit wenigen Planeten +<br> +DemoIta: non eravamo sposati a poche pianete +<br> +DemoNor: vi var ikke gifte med få planeter +<br> +DemoRus: мы не были замужем за немногом планетой +<br> +DemoSpa: no éramos casados a pocos planetas +<br> +DemoSwe: vi var inte gifta med få planeter +<br> + Demo: UseCl TCond AAnter PNeg (PredV (DetCN many_Det (AdjCN (ComplA2 married_A2 (DetCN somePl_Det (UseN bird_N))) (ComplN2 brother_N2 (DetArtPl DefArt (UseN2 (ComplN3 distance_N3 (DetArtSg DefArt (AdjCN (ComplA2 married_A2 (UsePN paris_PN)) (ComplN2 father_N2 (DetCN (DetArtOrd DefArt NumSg (OrdNumeral (num (pot3plus (pot1as2 (pot1 n9)) (pot1as2 (pot0as1 pot01)))))) (UseN person_N))))))))))) spit_V) +<br> +DemoBul: много женени за някои птици братя на разстоянита от женения за Париж баща на деветдесет хиляди и първия човек не биха плюли +<br> +DemoCat: molts germàs dels distàncies del pare de la norantena mil primera persona casat a Paris casats a alguns ocells no haurien escopit +<br> +DemoDan: mange brødre til afstanderne fra den far til halvfems tusind og første personen gifte med Paris gifte med nogle fugler ville ikke have spyttet +<br> +DemoEng: many brothers of the distances from the father of the ninety thousand first person married to Paris married to some birds wouldn't have spit +<br> +DemoFin: moni joidenkuiden lintujen kanssa avioitunut etäisyyksien Pariisin kanssa avioituneesta yhdeksänsinä kymmenensinä tuhannensina yhdensinä henkilön isästä veli ei olisi sylkenyt +<br> +DemoFre: plusieurs frères des distances du père de la quatre-vingt-dix mille unième personne marié à Paris mariés à quelques oiseaux n' auraient pas craché +<br> +DemoGer: viele verheirateten mit einigen Vögeln Brüder von den Entfernungen von dem verheirateten mit Paris Vater von dem neunzig tausend ersten Person würden nicht gespuckt haben +<br> +DemoIta: molti fratelli delle distanze del padre della novanta mila prima persona sposato a Parigi sposati a qualche uccelli non avrebbero sputato +<br> +DemoNor: mange brødre til avstandene fra den faren til nitti tusen og første personen gifte med Paris gifte med noen fugler ville ikke ha spytta +<br> +DemoRus: +<br> +DemoSpa: muchos hermanos de las distancias del padre de la noventa milésima primera persona casado a Paris casados a algunos pájaros no habrían escupido +<br> +DemoSwe: många bröder till avstånden från den fadern till nittio tusen första personen gifta med Paris gifta med några fåglar skulle inte ha spottat +<br> + Demo: UseCl TCond AAnter PNeg (PredV (DetCN much_Det (UseN cheese_N)) walk_V) +<br> +DemoBul: много сирене не би ходило +<br> +DemoCat: molt formatge no hauria caminat +<br> +DemoDan: meget oster ville ikke være gået +<br> +DemoEng: much cheese wouldn't have walked +<br> +DemoFin: paljon juusto ei olisi kävellyt +<br> +DemoFre: beaucoup de fromages n' auraient pas marché +<br> +DemoGer: viele Käse würde nicht gegangen sein +<br> +DemoIta: molto formaggio non avrebbe camminato +<br> +DemoNor: mye oster ville ikke være gått +<br> +DemoRus: много сыра не гуляло бы +<br> +DemoSpa: mucho queso no habría caminado +<br> +DemoSwe: mycket ostar skulle inte ha gått +<br> + Demo: UseCl TCond ASimul PPos (PredV2 (DetArtPl IndefArt (UseN ear_N)) bite_V2 (DetArtSg DefArt (UseN2 (ComplN3 distance_N3 (UsePN john_PN))))) +<br> +DemoBul: уши биха хапали разстоянието от Джон +<br> +DemoCat: unes orelles mossegarien la distància de Joan +<br> +DemoDan: ører ville bite afstanden fra John +<br> +DemoEng: ears would bite the distance from John +<br> +DemoFin: korvia purisi etäisyyden Jussista +<br> +DemoFre: des oreilles mordraient la distance de Jean +<br> +DemoGer: Ohre würden die Entfernung von Johann beißen +<br> +DemoIta: orecchi morderebbero la distanza di Giovanni +<br> +DemoNor: ører ville bite avstanden fra John +<br> +DemoRus: уха кусали бы расстояние от Ивана +<br> +DemoSpa: unas orejas moorderían la distancia de Juan +<br> +DemoSwe: öron skulle bita avståndet från Johan +<br> + Demo: UseCl TPres ASimul PNeg (PredV2 (DetCN much_Det (ComplN2 mother_N2 (UsePron we_Pron))) fear_V2 somebody_NP) +<br> +DemoBul: много майка ни не се страхува някой +<br> +DemoCat: molta mare de nosaltres no tem algú +<br> +DemoDan: meget mødre til os frygter ikke nogen +<br> +DemoEng: much mother of we doesn't fear somebody +<br> +DemoFin: paljon meidän äiti ei pelkää jotakua +<br> +DemoFre: beaucoup de mères de nous ne craignent pas quelqu'un +<br> +DemoGer: viele Mutter von uns fürchtet jemanden nicht +<br> +DemoIta: molta madre di noi non teme qualcuno +<br> +DemoNor: mye mødre til oss frykter ikke noen +<br> +DemoRus: много нашей матери не боет кого-то +<br> +DemoSpa: mucha madre de nosotros no teme algún +<br> +DemoSwe: mycket mödrar till oss fruktar inte någon +<br> + Demo: UseCl TPast AAnter PPos (PredV (DetArtSg IndefArt (AdjCN (AdAP almost_AdA (PositA hot_A)) (UseN head_N))) sleep_V) +<br> +DemoBul: почти гореща глава беше спалa +<br> +DemoCat: un cap quasi calent havia dormit +<br> +DemoDan: et næsten hedt hoved havde sovet +<br> +DemoEng: an almost hot head had slept +<br> +DemoFin: melkein kuuma pää oli nukkunut +<br> +DemoFre: une tête presque chaude avait dormi +<br> +DemoGer: ein fast heißer Kopf hatte geschlafen +<br> +DemoIta: una testa quasi calda aveva dormito +<br> +DemoNor: et nesten heitt hode hadde sovet +<br> +DemoRus: почти горячая голова спала +<br> +DemoSpa: una cabeza casi caliente había dormido +<br> +DemoSwe: ett nästan hett huvud hade sovit +<br> + Demo: UseCl TCond AAnter PNeg (PredAdv (DetCN someSg_Det (ComplN2 father_N2 (DetArtPl DefArt (AdjCN (PositA ugly_A) (ComplN2 mother_N2 (UsePron youPl_Pron)))))) there7to_Adv) +<br> +DemoBul: някой баща на глупавите майки ви не би бил до там +<br> +DemoCat: algun pare dels mares de vosaltres lletges no hauria estat cap a allà +<br> +DemoDan: nogen far til de grimme mødre til jer ville ikke have været dit +<br> +DemoEng: some father of the ugly mothers of you wouldn't have been there +<br> +DemoFin: joku rumien teidän äitien isä ei olisi ollut sinne +<br> +DemoFre: quelque père des mères de vous laides n' aurait pas été là +<br> +DemoGer: ein Vater von den häßlichen Müttern von euch würde nicht dahin gewesen sein +<br> +DemoIta: qualche padre delle madri di voi brutte non sarebbe stato là +<br> +DemoNor: noen far til de stygge mødrene til dere ville ikke ha vært dit +<br> +DemoRus: некоторый отец некрасивых ваших матерей не +<br> +DemoSpa: algun padre de las madres de vosotros feas no habría sido para allá +<br> +DemoSwe: någon far till de fula mödrarna till er skulle inte ha varit dit +<br> + Demo: UseCl TPast AAnter PPos (PredV2 (DetCN (DetArtCard DefArt (AdNum almost_AdN (AdNum almost_AdN (NumNumeral (num (pot2as3 (pot2 pot01))))))) (UseN number_N)) wait_V2 (DetCN somePl_Det (ComplN2 mother_N2 (UsePN john_PN)))) +<br> +DemoBul: почти почти стоте числа бяха чакали за някои майки на Джон +<br> +DemoCat: els quasi quasi cent números havien esperat a algunes mares de Joan +<br> +DemoDan: de næsten næsten et hundrede nummerene havde ventet på nogle mødre til John +<br> +DemoEng: the almost almost one hundred numbers had waited for some mothers of John +<br> +DemoFin: melkein melkein sata numerota olivat odottaneet joitakuita Jussin äitejä +<br> +DemoFre: les presque presque cent nombres avaient attendu à quelques mères de Jean +<br> +DemoGer: die fast fast ein hundert Zahlen hatten auf einige Mütter von Johann gewartet +<br> +DemoIta: i quasi quasi cento numeri avevano aspettato a qualche madri di Giovanni +<br> +DemoNor: de nesten nesten ett hundre nummera hadde venta på noen mødre til John +<br> +DemoRus: почти почти сто числа ждали некоторых матерей Ивана +<br> +DemoSpa: los casi casi cien números habían esperado a algunas madres de Juan +<br> +DemoSwe: de nästan nästan ett hundra numren hade väntat på några mödrar till Johan +<br> + Demo: UseCl TPast AAnter PNeg (PredV (DetArtPl IndefArt (ComplN2 (ComplN3 distance_N3 (DetArtPl IndefArt (AdjCN (AdAP almost_AdA (ComplA2 easy_A2V somebody_NP)) (ComplN2 brother_N2 (DetArtPl IndefArt (UseN2 (ComplN3 distance_N3 (DetArtPl DefArt (AdjCN (AdAP so_AdA (PositA dirty_A)) (ComplN2 father_N2 (AdvNP (AdvNP (UsePron i_Pron) far_Adv) here7from_Adv))))))))))) (DetArtPl IndefArt (UseN2 mother_N2)))) come_V) +<br> +DemoBul: разстояния от почти лесни за някой братя на разстояния от толкова мръсните бащи ми далече от тук до майки не бяха дошли +<br> +DemoCat: unes distàncies d' uns germàs d' unes distàncies dels pares de mi lluny d'aquí tan bruts quasi fácils a algú a unes mares no havien vingut +<br> +DemoDan: afstander fra brødre til afstander fra de så smudsige fædre til mig fjern herfra næsten neme for nogen til mødre var ikke kommet +<br> +DemoEng: distances from brothers of distances from the so dirty fathers of I far from here almost easy for somebody to mothers hadn't come +<br> +DemoFin: etäisyyksiä melkein jollevulle helpoista etäisyyksien niin likaisista minun kaukana täältä isistä velstä äiteihin ei ollut tullut +<br> +DemoFre: des distances de frères de distances des pères de moi loin d'ici si sales presque faciles à quelqu'un à des mères n' étaient pas venues +<br> +DemoGer: Entfernungen von fast leichten für jemanden Brüdern von Entfernungen von den so schmutzigen Vätern von mir weit hieraus zu Müttern waren nicht gekommen +<br> +DemoIta: distanze di fratelli di distanze dei padri di me lontano da quì così sporchi quasi facili a qualcuno a madri non erano venute +<br> +DemoNor: avstander fra brødre til avstander fra de så skitne fedrene til meg fjern herfra nesten greie for noen til mødre var ikke kommet +<br> +DemoRus: расстояния от почти лёгких для кого-то братов расстояний от так грязных моих далеко отсюда отцов к матерям не приходили +<br> +DemoSpa: unas distancias de unos hermanos de unas distancias de los padres de mí lejos de acá tanto sucios casi fáciles a algún a unas madres no habían venido +<br> +DemoSwe: avstånd från bröder till avstånd från de så smutsiga fäderna till mig långt härifrån nästan lätta för någon till mödrar hade inte kommit +<br> + Demo: UseCl TCond AAnter PNeg (PredAP (DetArtSg DefArt (AdjCN (PositA warm_A) (UseN neck_N))) (AdAP quite_Adv (AdAP too_AdA (ComplA2 easy_A2V (UsePN paris_PN))))) +<br> +DemoBul: топлият гръб не би бил доста прекалено лесен за Париж +<br> +DemoCat: el coll tebi no hauria estat bastant massa fácil a Paris +<br> +DemoDan: den varme hals ville ikke have været temmelig for nem for Paris +<br> +DemoEng: the warm neck wouldn't have been quite too easy for Paris +<br> +DemoFin: lämmin niska ei olisi ollut melko liian helppo Pariisille +<br> +DemoFre: le cou chaud n' aurait pas été assez trop facile à Paris +<br> +DemoGer: der warme Nacken würde nicht ziemlich zu leicht für Paris gewesen sein +<br> +DemoIta: il collo caldo non sarebbe stato assai troppo facile a Parigi +<br> +DemoNor: den varme nakken ville ikke ha vært temmelig for grei for Paris +<br> +DemoRus: тёплая шея не +<br> +DemoSpa: el cuello tibio no habría sido bastante demasiado fácil a Paris +<br> +DemoSwe: den varma nacken skulle inte ha varit ganska för lätt för Paris +<br> + Demo: UseCl TPres ASimul PPos (PredAP (DetArtSg IndefArt (ComplN2 mother_N2 (UsePron they_Pron))) (ComparA good_A (UsePN paris_PN))) +<br> +DemoBul: майка им е по - добра от Париж +<br> +DemoCat: una mare de elles és millora que Paris +<br> +DemoDan: en moder til dem er bedre end Paris +<br> +DemoEng: a mother of they is better than Paris +<br> +DemoFin: heidän äiti on parempi kuin Pariisi +<br> +DemoFre: une mère d' eux est meilleure que Paris +<br> +DemoGer: eine Mutter von ihnen ist besser als Paris +<br> +DemoIta: una madre di loro è migliore che Parigi +<br> +DemoNor: en mor til dem er bedre enn Paris +<br> +DemoRus: их мать лучше Парижа +<br> +DemoSpa: una madre de ellos es mejor que Paris +<br> +DemoSwe: en mor till dem är bättre än Paris +<br> + Demo: UseCl TPres AAnter PPos (PredV (DetCN (DetArtOrd DefArt NumPl (OrdDigits (IIDig D_4 (IDig D_2)))) (UseN2 brother_N2)) vomit_V) +<br> +DemoBul: 4 2рите братя са повърнали +<br> +DemoCat: els 4 2:o germàs han vomitat +<br> +DemoDan: 4 2:e brødrene har kastet op +<br> +DemoEng: the 4 2nd brothers have vomited +<br> +DemoFin: 4 2. veljet ovat oksentaneet +<br> +DemoFre: les 4 2ème frères ont vomi +<br> +DemoGer: die 4 2e Brüder haben gekotzt +<br> +DemoIta: i 4 2:o fratelli hanno vomitato +<br> +DemoNor: 4 2:e brødrene har kasta opp +<br> +DemoRus: +<br> +DemoSpa: los 4 2:o hermanos han vomitado +<br> +DemoSwe: 4 2:a bröderna har spytt +<br> + Demo: UseCl TCond ASimul PPos (PredAP somebody_NP (ComparA yellow_A somebody_NP)) +<br> +DemoBul: някой би бил по - жълт от някой +<br> +DemoCat: algú seria más groc que algú +<br> +DemoDan: nogen ville være gulere end nogen +<br> +DemoEng: somebody would be yellower than somebody +<br> +DemoFin: joku olisi keltaisempi kuin joku +<br> +DemoFre: quelqu'un serait plus jaune que quelqu'un +<br> +DemoGer: jemand würde gelber als jemand sein +<br> +DemoIta: qualcuno sarebbe più giallo che qualcuno +<br> +DemoNor: noen ville være gulere enn noen +<br> +DemoRus: кто-то +<br> +DemoSpa: algún sería más amarillo que algún +<br> +DemoSwe: någon skulle vara gulare än någon +<br> + Demo: UseCl TCond AAnter PPos (PredAdv (AdvNP (UsePN paris_PN) already_Adv) (SubjS if_Subj (UseCl TPast AAnter PNeg (PredV (UsePN john_PN) lie_V)))) +<br> +DemoBul: Париж вече би бил ако Джон не беше лежал +<br> +DemoCat: Paris ja hauria estat si Joan no se havia jagut +<br> +DemoDan: Paris allerede ville have været hvis John ikke havde ligget +<br> +DemoEng: Paris already would have been if John hadn't lain +<br> +DemoFin: Pariisi jo olisi ollut jos Jussi ei ollut maannut +<br> +DemoFre: Paris déjà aurait été si Jean ne s' était pas étendu +<br> +DemoGer: Paris schon würde wenn Johann nicht gelügt hatte gewesen sein +<br> +DemoIta: Parigi già sarebbe stato se Giovanni non aveva giaciuto +<br> +DemoNor: Paris allerede ville ha vært hvis John ikke hadde ligget +<br> +DemoRus: Париж уже +<br> +DemoSpa: Paris ya habría sido si Juan no se había acostado +<br> +DemoSwe: Paris redan skulle ha varit om Johan inte hade legat +<br> + Demo: UseCl TFut ASimul PNeg (PredAP somebody_NP (ComplA2 married_A2 (UsePron youSg_Pron))) +<br> +DemoBul: някой няма да е женен за теб +<br> +DemoCat: algú no serà casat a tu +<br> +DemoDan: nogen vil ikke være gift med dig +<br> +DemoEng: somebody won't be married to you +<br> +DemoFin: joku ei ole avioitunut sinun kanssa +<br> +DemoFre: quelqu'un ne sera pas marié à toi +<br> +DemoGer: jemand wird nicht verheiratet mit dir sein +<br> +DemoIta: qualcuno non sarà sposato a te +<br> +DemoNor: noen vil ikke være gift med deg +<br> +DemoRus: кто-то не будет замужем за тобой +<br> +DemoSpa: algún no será casado a tí +<br> +DemoSwe: någon ska inte vara gift med dig +<br> + Demo: UseCl TFut ASimul PPos (PredV2 (DetCN (DetArtOrd DefArt (NumCard (NumNumeral (num (pot3plus (pot1as2 (pot1to19 n2)) (pot1as2 pot111))))) (OrdNumeral (num (pot3 (pot2 (pot0 n9)))))) (UseN king_N)) open_V2 (DetArtSg DefArt (AdjCN (ComparA wet_A (UsePN john_PN)) (UseN breast_N)))) +<br> +DemoBul: дванадесет хиляди и единадесетимата деветстотин хиляден царе ще отворят по - мократа от Джон гърда +<br> +DemoCat: els dotze mil onze novens -cents mil reis riran la sina más molla que Joan +<br> +DemoDan: de tolv tusind og elleve ni hundrede tusinde kongerne vil åbne det bryst vådere end John +<br> +DemoEng: the twelve thousand eleven nine hundred thousandth kings will open the breast weter than John +<br> +DemoFin: kaksi toista tuhatta yksi toista yhdeksännet sadannet tuhannennet kuningasta avaavat Jussia märemmän rinnan +<br> +DemoFre: les douze mille onze neuf cent millième rois ouvriront le sein plus mouillé que Jean +<br> +DemoGer: die zwölf tausend elf neun hundert tausendten Könige werden die naßere als Johann Brust öffnen +<br> +DemoIta: i venti mila undici nove cento millesimi ré apriranno il seno più bagnato che Giovanni +<br> +DemoNor: de tolv tusen og elve ni hundre tusende kongene vil åpne det brystet våtere enn John +<br> +DemoRus: +<br> +DemoSpa: los veinte mil once novecientos milésimos reyes abrirán el seno más mojado que Juan +<br> +DemoSwe: de tolv tusen elva nio hundra tusende kungarna ska öppna det bröstet våtare än Johan +<br> + Demo: UseCl TPast AAnter PPos (PredAP (AdvNP (UsePron he_Pron) (ComparAdvAdj more_CAdv short_A (AdvNP (UsePN john_PN) everywhere_Adv))) (AdAP almost_AdA (PositA blue_A))) +<br> +DemoBul: той по - късо от Джон навсякъде беше бил почти син +<br> +DemoCat: més curtament que Joan a tot arreu havia estat quasi blau +<br> +DemoDan: han mer kort end John overalt havde været næsten blå +<br> +DemoEng: he more shortly than John everywhere had been almost blue +<br> +DemoFin: hän enemmän lyhyesti kuin Jussi kaikkialla oli ollut melkein sininen +<br> +DemoFre: il plus courtement que Jean partout avait été presque bleu +<br> +DemoGer: er mehr kurz als Johann überall war fast blau gewesen +<br> +DemoIta: più cortamente che Giovanni dappertutto era stato quasi blù +<br> +DemoNor: han mer kortt enn John overalt hadde vært nesten blå +<br> +DemoRus: он более коротко чем Иван везде был почти голубой +<br> +DemoSpa: mas cortamente que Juan en todas partes había sido casi azul +<br> +DemoSwe: han mer kortt än Johan överallt hade varit nästan blå +<br> + Demo: UseCl TFut ASimul PPos (PredAdv (UsePron i_Pron) here7from_Adv) +<br> +DemoBul: аз ще съм от тук +<br> +DemoCat: seré d'aquí +<br> +DemoDan: jeg vil være herfra +<br> +DemoEng: I will be from here +<br> +DemoFin: minä olen täältä +<br> +DemoFre: je serai d'ici +<br> +DemoGer: ich werde hieraus sein +<br> +DemoIta: sarò da quì +<br> +DemoNor: jeg vil være herfra +<br> +DemoRus: я будет отсюда +<br> +DemoSpa: seré de acá +<br> +DemoSwe: jag ska vara härifrån +<br> + Demo: UseCl TCond AAnter PNeg (PredV (AdvNP somebody_NP there7from_Adv) flow_V) +<br> +DemoBul: някой от там не би текъл +<br> +DemoCat: algú d'allà no hauria fluït +<br> +DemoDan: nogen derfra ville ikke have strømmet +<br> +DemoEng: somebody from there wouldn't have flowed +<br> +DemoFin: joku sieltä ei olisi virrannut +<br> +DemoFre: quelqu'un de là n' aurait pas coulé +<br> +DemoGer: jemand daher würde nicht gefließt haben +<br> +DemoIta: qualcuno di là non avrebbe fluito +<br> +DemoNor: noen derfra ville ikke ha rent +<br> +DemoRus: кто-то оттуда не тёк бы +<br> +DemoSpa: algún de allá no habría fluido +<br> +DemoSwe: någon därifrån skulle inte ha runnit +<br> + Demo: UseCl TPast ASimul PNeg (PredV (DetCN (DetQuantOrd (PossPron youSg_Pron) (NumCard (NumNumeral (num (pot2as3 (pot2plus pot01 pot111))))) right_Ord) (UseN wife_N)) blow_V) +<br> +DemoBul: твоите сто и единадесет десни съпруги не духаха +<br> +DemoCat: les teves cent onze dretaes esposes no bufaven +<br> +DemoDan: dine et hundrede og elleve højre koner blæste ikke +<br> +DemoEng: your one hundred and eleven right wives didn't blow +<br> +DemoFin: sinun sata yksi toista oikeat vaimoa &+ si eivät puhaltaneet +<br> +DemoFre: tes cent onze droites femmes ne soufflaient pas +<br> +DemoGer: deine ein hundert elf rechte Ehefraue blasten nicht +<br> +DemoIta: le tue cento undici destre donne non soffiavano +<br> +DemoNor: dine ett hundre og elve høyre koner blåste ikke +<br> +DemoRus: твои сто одиннадцать правые жены не дули +<br> +DemoSpa: tus ciento once derechaes esposas no soplaban +<br> +DemoSwe: dina ett hundra elva högra fruar blåste inte +<br> + Demo: UseCl TPast ASimul PPos (PredAdv (DetArtSg DefArt (UseN2 mother_N2)) somewhere_Adv) +<br> +DemoBul: майката беше някъде +<br> +DemoCat: la mare era a algun lloc +<br> +DemoDan: moderen var et eller annet sted +<br> +DemoEng: the mother was somewhere +<br> +DemoFin: äiti oli jossain +<br> +DemoFre: la mère était quelque part +<br> +DemoGer: die Mutter war irgendwo +<br> +DemoIta: la madre era qualche parte +<br> +DemoNor: moren var et eller annet sted +<br> +DemoRus: мать была где-нибудь +<br> +DemoSpa: la madre era en ninguna parte +<br> +DemoSwe: modern var någonstans +<br> + Demo: UseCl TCond AAnter PNeg (PredV2 (UsePN john_PN) open_V2 (DetCN (DetArtOrd IndefArt NumPl (OrdSuperl fun_AV)) (UseN2 mother_N2))) +<br> +DemoBul: Джон не би отворил най - забавни майки +<br> +DemoCat: Joan no hauria ert unes más divertites mares +<br> +DemoDan: John ville ikke have åbnet morsommeste mødre +<br> +DemoEng: John wouldn't have opened funest mothers +<br> +DemoFin: Jussi ei olisi avannut hauskimpia äitejä +<br> +DemoFre: Jean n' aurait pas ouvert des plus marrantes mères +<br> +DemoGer: Johann würde tolleste Mütter nicht geöffnet haben +<br> +DemoIta: Giovanni non avrebbe aperto più divertenti madri +<br> +DemoNor: John ville ikke ha åpna morsomeste mødre +<br> +DemoRus: Иван не открывал бы весёлых матерей +<br> +DemoSpa: Juan no habría abierto unas más divertidas madres +<br> +DemoSwe: Johan skulle inte ha öppnat roligaste mödrar +<br> + Demo: UseCl TFut ASimul PPos (PredAdv (UsePron it_Pron) here7from_Adv) +<br> +DemoBul: то ще е от тук +<br> +DemoCat: serà d'aquí +<br> +DemoDan: det vil være herfra +<br> +DemoEng: it will be from here +<br> +DemoFin: se on täältä +<br> +DemoFre: il sera d'ici +<br> +DemoGer: es wird hieraus sein +<br> +DemoIta: sarà da quì +<br> +DemoNor: det vil være herfra +<br> +DemoRus: оно будет отсюда +<br> +DemoSpa: será de acá +<br> +DemoSwe: det ska vara härifrån +<br> + Demo: UseCl TPast AAnter PPos (PredAP (DetArtPl DefArt (AdjCN (AdAP so_AdA (PositA black_A)) (UseN meat_N))) (ComparA thick_A (UsePron youSg_Pron))) +<br> +DemoBul: толкова черните меса бяха били по - дебели от теб +<br> +DemoCat: les carns tan negres havien estat más gruixudes que tu +<br> +DemoDan: de så sorte kød havde været tykkere end du +<br> +DemoEng: the so black meats had been thicker than you +<br> +DemoFin: niin mustat lihat olivat olleet paksumpia kuin sinä +<br> +DemoFre: les viandes si noires avaient été plus épaisses que toi +<br> +DemoGer: die so schwarzen Fleische waren dicker als du gewesen +<br> +DemoIta: le carni così nere erano state più grosse che tu +<br> +DemoNor: de så svarte kjøtta hadde vært tykkere enn du +<br> +DemoRus: так чёрные мяса были толще тебя +<br> +DemoSpa: las carnes tanto negras habían sido más gruesas que tu +<br> +DemoSwe: de så svarta kötten hade varit tjockare än du +<br> + Demo: UseCl TPast ASimul PNeg (PredAdv somebody_NP (PositAdvAdj narrow_A)) +<br> +DemoBul: някой не беше тясно +<br> +DemoCat: algú no era estretament +<br> +DemoDan: nogen var ikke smalt +<br> +DemoEng: somebody wasn't narrowly +<br> +DemoFin: joku ei ollut kapeasti +<br> +DemoFre: quelqu'un n' était pas étroitement +<br> +DemoGer: jemand war nicht schmal +<br> +DemoIta: qualcuno non era strettamente +<br> +DemoNor: noen var ikke smalt +<br> +DemoRus: кто-то не был узко +<br> +DemoSpa: algún no era estrechamente +<br> +DemoSwe: någon var inte smalt +<br> + Demo: UseCl TPres AAnter PPos (PredAP (AdvNP (DetCN (DetArtCard IndefArt (AdNum (AdnCAdv more_CAdv) (NumDigits (IDig D_5)))) (UseN2 (ComplN3 distance_N3 (UsePron i_Pron)))) (PrepNP after_Prep (DetArtPl IndefArt (ComplN2 mother_N2 (AdvNP somebody_NP (ComparAdvAdjS more_CAdv stupid_A (UseCl TCond AAnter PPos (PredV (DetArtSg IndefArt (UseN language_N)) sleep_V)))))))) (ComparA wide_A (AdvNP somebody_NP everywhere_Adv))) +<br> +DemoBul: повече от 5 разстояния от мен след майки на някой по - глупаво от колкото език би спал са били по - широки от някой навсякъде +<br> +DemoCat: més que 5 distàncies de mi després d' unes mares de algú més estúpidament que una llengua hauria dormit han estat más extenses que algú a tot arreu +<br> +DemoDan: mer end 5 afstander fra mig efter mødre til nogen mer dumt end et sprog ville have sovet har været bredere end nogen overalt +<br> +DemoEng: more than 5 distances from I after mothers of somebody more stupidly than a language would have slept have been wider than somebody everywhere +<br> +DemoFin: enemmän kuin 5 etäisyyttä minusta jonkun enemmän tyhmästi kuin kieli olisi nukkunut äitien jälkeen ovat olleet leveämpiä kuin joku kaikkialla +<br> +DemoFre: plus que 5 distances de moi après des mères de quelqu'un plus stupidement qu' une langue aurait dormi ont été plus larges que quelqu'un partout +<br> +DemoGer: mehr als 5 Entfernungen von mir nach Müttern von jemandem mehr dumm als eine Sprache geschlafen haben würde sind breiter als jemand überall gewesen +<br> +DemoIta: più che 5 distanze di me dopo madri di qualcuno più stupidamente che una lingua avrebbe dormito sono state più larghe che qualcuno dappertutto +<br> +DemoNor: mer enn 5 avstander fra meg etter mødre til noen mer dumt enn et språk ville ha sovet har vært bredere enn noen overalt +<br> +DemoRus: более чем 5 расстояния от меня после матерей кого-то более тупо чем язык спал бы шире кого-то везде +<br> +DemoSpa: mas que 5 distancias de mí despues de unas madres de algún mas estúpidamente que una lengua habría dormido han sido más anchas que algún en todas partes +<br> +DemoSwe: mer än 5 avstånd från mig efter mödrar till någon mer dumt än ett språk skulle ha sovit har varit bredare än någon överallt +<br> + Demo: UseCl TPres AAnter PPos (PredV2 (DetArtPl DefArt (UseN2 father_N2)) know_V2 (UsePron youPl_Pron)) +<br> +DemoBul: бащите са знаeли вас +<br> +DemoCat: els pares us han sabut +<br> +DemoDan: fædrene har vidst jer +<br> +DemoEng: the fathers have known you +<br> +DemoFin: isät ovat tietäneet teidät +<br> +DemoFre: les pères vous ont connus +<br> +DemoGer: die Väter haben euch gewußt +<br> +DemoIta: i padri vi hanno conosciuti +<br> +DemoNor: fedrene har visst dere +<br> +DemoRus: отцы знают вас +<br> +DemoSpa: los padres vos han sabido +<br> +DemoSwe: fäderna har vetat er +<br> + Demo: UseCl TCond ASimul PPos (PredAdv (UsePron youPol_Pron) already_Adv) +<br> +DemoBul: вие бихте били вече +<br> +DemoCat: seríeu ja +<br> +DemoDan: Dere ville være allerede +<br> +DemoEng: you would be already +<br> +DemoFin: te olisitte jo +<br> +DemoFre: vous seriez déjà +<br> +DemoGer: Sie würden schon sein +<br> +DemoIta: sarebbe già +<br> +DemoNor: Dere ville være allerede +<br> +DemoRus: вы +<br> +DemoSpa: sería ya +<br> +DemoSwe: ni skulle vara redan +<br> + Demo: UseCl TPres ASimul PPos (PredV2 (DetArtPl DefArt (ComplN2 mother_N2 (UsePron youPol_Pron))) fear_V2 (DetArtPl IndefArt (UseN dog_N))) +<br> +DemoBul: майките ви се страхуват кучета +<br> +DemoCat: les mares de vosté temen uns goss +<br> +DemoDan: mødrene til Dere frygter hunder +<br> +DemoEng: the mothers of you fear dogs +<br> +DemoFin: teidän äidit pelkäävät koiria +<br> +DemoFre: les mères de vous craignent des chiens +<br> +DemoGer: die Mütter von Ihnen fürchten Hunde +<br> +DemoIta: le madri di Lei temono cani +<br> +DemoNor: mødrene til Dere frykter hunder +<br> +DemoRus: ваши матери боют собак +<br> +DemoSpa: las madres de usted temen unos perros +<br> +DemoSwe: mödrarna till er fruktar hundar +<br> + Demo: UseCl TCond AAnter PPos (PredV2 somebody_NP leave_V2 (UsePron we_Pron)) +<br> +DemoBul: някой би оставил нас +<br> +DemoCat: algú ens hauria partit +<br> +DemoDan: nogen ville have forladet os +<br> +DemoEng: somebody would have left us +<br> +DemoFin: joku olisi jättänyt meidät +<br> +DemoFre: quelqu'un nous aurait quittés +<br> +DemoGer: jemand würde uns verlassen haben +<br> +DemoIta: qualcuno ci avrebbe lasciati +<br> +DemoNor: noen ville ha forlatt oss +<br> +DemoRus: кто-то уходил бы нас +<br> +DemoSpa: algún nos habría partido +<br> +DemoSwe: någon skulle ha lämnat oss +<br> + Demo: UseCl TPast AAnter PPos (PredAP (UsePN paris_PN) (PositA fun_AV)) +<br> +DemoBul: Париж беше бил забавен +<br> +DemoCat: Paris havia estat divertit +<br> +DemoDan: Paris havde været morsomt +<br> +DemoEng: Paris had been fun +<br> +DemoFin: Pariisi oli ollut hauska +<br> +DemoFre: Paris avait été marrant +<br> +DemoGer: Paris war toll gewesen +<br> +DemoIta: Parigi era stato divertente +<br> +DemoNor: Paris hadde vært morsomt +<br> +DemoRus: Париж был весёлый +<br> +DemoSpa: Paris había sido divertido +<br> +DemoSwe: Paris hade varit roligt +<br> + Demo: UseCl TFut ASimul PNeg (PredV2 (DetArtPl DefArt (ComplN2 (ComplN3 distance_N3 (AdvNP (UsePron youSg_Pron) there7from_Adv)) somebody_NP)) kill_V2 (DetArtPl IndefArt (ComplN2 brother_N2 (DetArtSg DefArt (ComplN2 brother_N2 (UsePN paris_PN)))))) +<br> +DemoBul: разстоянита от теб от там до някой няма да убият братя на брата на Париж +<br> +DemoCat: les distàncies de tu d'allà a algú no mataran uns germàs del germà de Paris +<br> +DemoDan: afstanderne fra dig derfra til nogen vil ikke dræbe brødre til brodren til Paris +<br> +DemoEng: the distances from you from there to somebody won't kill brothers of the brother of Paris +<br> +DemoFin: etäisyydet sinusta sieltä johonkuun eivät tapa Pariisin veljen veljissä +<br> +DemoFre: les distances de toi de là à quelqu'un ne tueront pas des frères du frère de Paris +<br> +DemoGer: die Entfernungen von dir daher zu jemandem werden Brüder von dem Bruder von Paris nicht töten +<br> +DemoIta: le distanze di te di là a qualcuno non uccideranno fratelli del fratello di Parigi +<br> +DemoNor: avstandene fra deg derfra til noen vil ikke drepe brødre til broren til Paris +<br> +DemoRus: расстояния от тебя оттуда к кому-то не будут убивать братов брата Парижа +<br> +DemoSpa: las distancias de tí de allá a algún no matarán unos hermanos del hermano de Paris +<br> +DemoSwe: avstånden från dig därifrån till någon ska inte döda bröder till brodern till Paris +<br> + Demo: UseCl TPres AAnter PPos (PredV2 (UsePron it_Pron) drink_V2 (UsePron it_Pron)) +<br> +DemoBul: то е пило него +<br> +DemoCat: el ha begut +<br> +DemoDan: det har drukket det +<br> +DemoEng: it has drunk it +<br> +DemoFin: se on juonut sen +<br> +DemoFre: il l' a bu +<br> +DemoGer: es hat es getrunken +<br> +DemoIta: lo ha bevuto +<br> +DemoNor: det har drukket det +<br> +DemoRus: оно пьёт его +<br> +DemoSpa: lo ha tomado +<br> +DemoSwe: det har druckit det +<br> + Demo: UseCl TFut AAnter PPos (PredAdv (AdvNP (AdvNP (UsePron youPl_Pron) (AdAdv almost_AdA (ComparAdvAdjS less_CAdv new_A (UseCl TPres ASimul PPos (PredAdv (DetArtSg IndefArt (AdjCN (ComparA empty_A (UsePN paris_PN)) (ComplN2 father_N2 (UsePN paris_PN)))) there7from_Adv))))) there7to_Adv) now_Adv) +<br> +DemoBul: вие почти не по - ново от колкото по - празен от Париж баща на Париж е от там до там ще сте били сега +<br> +DemoCat: quasi menys novament que un pare de Paris más buit que Paris sigui d'allà cap a allà haureu estat ara +<br> +DemoDan: i næsten mindre nytt end en far til Paris tømmere end Paris er derfra dit vil have været nu +<br> +DemoEng: you almost less newly than a father of Paris emptier than Paris is from there there will have been now +<br> +DemoFin: te melkein vähemmän uudesti kuin Pariisia tyhjempi Pariisin isä on sieltä sinne olette olleet nyt +<br> +DemoFre: vous presque moins nouvellement qu' un père de Paris plus vide que Paris soit de là là aurez été maintenant +<br> +DemoGer: ihr fast weniger neu als ein lererer als Paris Vater von Paris daher ist dahin werdet jetzt gewesen sein +<br> +DemoIta: quasi meno nuovamente che un padre di Parigi più vuoto che Parigi sia di là là sarete stati adesso +<br> +DemoNor: dere nesten mindre nytt enn en far til Paris tommere enn Paris er derfra dit vil ha vært nå +<br> +DemoRus: вы почти менее ново чем пустее Парижа отец Парижа оттуда туда будут сейчас +<br> +DemoSpa: casi meno nuevamente que un padre de Paris más vacío que Paris sea de allá para allá habréis sido ahora +<br> +DemoSwe: ni nästan mindre nytt än en far till Paris tommare än Paris är därifrån dit ska ha varit nu +<br> + Demo: UseCl TCond ASimul PNeg (PredV2 (UsePron he_Pron) close_V2 (DetCN (DetQuantOrd (PossPron she_Pron) (NumCard (AdNum (AdnCAdv less_CAdv) (NumDigits (IDig D_7)))) left_Ord) (AdjCN (PositA full_A) (AdjCN (ComparA green_A (DetArtSg IndefArt (AdjCN (ComplA2 married_A2 (UsePN john_PN)) (ComplN2 father_N2 (DetArtPl DefArt (UseN woman_N)))))) (UseN neck_N))))) +<br> +DemoBul: той не би затворил нейните по-малко от 7 леви пълни по - зелени от женен за Джон баща на жените гърба +<br> +DemoCat: no tancaria els seus menys que 7 esquerras colls más verds que un pare dels dones casat a Joan ples +<br> +DemoDan: han ville ikke lukke hendes mindre end 7 venstre fulde halser grønnere end en far til kvinderne gift med John +<br> +DemoEng: he wouldn't close her less than 7 left full necks greener than a father of the women married to John +<br> +DemoFin: hän ei sulkisi hänen vähemmän kuin 7 vasenia täyttä Jussin kanssa avioitunutta naisten isää vihreämpää niskaa &+ nsa +<br> +DemoFre: il ne fermerait pas ses moins que 7 gauches cous plus verts qu' un père des femmes marié à Jean pleins +<br> +DemoGer: er würde ihre weniger als 7 linke volle grünere als ein verheirateter mit Johann Vater von den Frauen Nacken nicht schließen +<br> +DemoIta: non chiuderebbe i suoi meno che 7 sinistri colli più verdi che un padre delle donne sposato a Giovanni pieni +<br> +DemoNor: han ville ikke lukke hennes mindre enn 7 venstre fulle nakker grønnere enn en far til kvinnene gift med John +<br> +DemoRus: он не закрывал бы её менее чем 7 левые полные зелёнее замужем за Иваном отца женщин шеи +<br> +DemoSpa: no cerraría sus meno que 7 izquierdaes cuellos más verdes que un padre de las mujeres casado a Juan llenos +<br> +DemoSwe: han skulle inte stänga hennes mindre än 7 vänstra fulla nackar grönare än en far till kvinnorna gift med Johan +<br> + Demo: UseCl TCond ASimul PNeg (PredAP (DetCN many_Det (UseN oil_N)) (ComplA2 married_A2 (DetArtSg IndefArt (AdjCN (PositA stupid_A) (ComplN2 father_N2 (DetArtSg IndefArt (UseN2 mother_N2))))))) +<br> +DemoBul: много олиота не биха били женени за глупав баща на майка +<br> +DemoCat: molts olis no serien casats a un pare d' una mare estúpid +<br> +DemoDan: mange olier ville ikke være gifte med en dum far til en moder +<br> +DemoEng: many oils wouldn't be married to a stupid father of a mother +<br> +DemoFin: moni öljy ei olisi avioitunut tyhmän äidin isän kanssa +<br> +DemoFre: plusieurs huiles ne seraient pas mariées à un père d' une mère stupide +<br> +DemoGer: viele Öle würden nicht verheiratet mit einem dummen Vater von einer Mutter sein +<br> +DemoIta: molti oli non sarebbero sposati ad un padre di una madre stupido +<br> +DemoNor: mange oljer ville ikke være gifte med en dum far til en mor +<br> +DemoRus: много нефти не +<br> +DemoSpa: muchos aceites no serían casados a un padre de una madre estúpido +<br> +DemoSwe: många oljor skulle inte vara gifta med en dum far till en mor +<br> + Demo: UseCl TFut ASimul PNeg (PredAP (DetArtSg IndefArt (UseN2 (ComplN3 distance_N3 (DetArtSg IndefArt (UseN2 mother_N2))))) (ComparA narrow_A (DetArtPl IndefArt (ComplN2 (ComplN3 distance_N3 (DetArtPl IndefArt (UseN egg_N))) (AdvNP (DetArtSg DefArt (AdjCN (ComparA cold_A (DetCN someSg_Det (AdjCN (ComparA beautiful_A (DetArtSg DefArt (UseN day_N))) (UseN2 mother_N2)))) (UseN country_N))) there7from_Adv))))) +<br> +DemoBul: разстояние от майка няма да е по - тясно от разстояния от яйца до по - студената от някоя по - красива от деня майка държава от там +<br> +DemoCat: una distància d' una mare no serà más estreta que unes distàncies d' uns ous al país más fred que alguna mare más bella que la dia d'allà +<br> +DemoDan: en afstand fra en moder vil ikke være smalere end afstander fra æg til det land koldere end nogen moder smukkere end dagen derfra +<br> +DemoEng: a distance from a mother won't be narrower than distances from eggs to the country colder than some mother more beautiful than the day from there +<br> +DemoFin: etäisyys äidistä ei ole kapeampi kuin etäisyyksiä munista jotakua päivää kauniimpaa äitiä kylmempään maahan sieltä +<br> +DemoFre: une distance d' une mère ne sera pas plus étroite que des distances d' oeufs au pays plus froid que quelque mère plus jolie que le jour de là +<br> +DemoGer: eine Entfernung von einer Mutter wird nicht schmaler als Entfernungen von Eien zu dem kalteren als eine schönere als der Tag Mutter Land daher sein +<br> +DemoIta: una distanza di una madre non sarà più stretta che distanze di uova al paese più freddo che qualche madre più bella che il giorno di là +<br> +DemoNor: en avstand fra en mor vil ikke være smalere enn avstander fra egg til det landet kaldere enn noen mor vakkerere enn dagen derfra +<br> +DemoRus: расстояние от матери не будет уже расстояний от яйц к холоднее некоторой красивее дня матери стране оттуда +<br> +DemoSpa: una distancia de una madre no será más estrecha que unas distancias de unos huevos al país más frío que alguna madre más bella que el día de allá +<br> +DemoSwe: ett avstånd från en mor ska inte vara smalare än avstånd från ägg till det landet kallare än någon mor vackrare än dagen därifrån +<br> + Demo: UseCl TPres AAnter PPos (PredAP (UsePron she_Pron) (PositA short_A)) +<br> +DemoBul: тя е билa къса +<br> +DemoCat: ha estat curta +<br> +DemoDan: hun har været kort +<br> +DemoEng: she has been short +<br> +DemoFin: hän on ollut lyhyt +<br> +DemoFre: elle a été courte +<br> +DemoGer: sie ist kurz gewesen +<br> +DemoIta: è stata corta +<br> +DemoNor: hun har vært kort +<br> +DemoRus: она короткая +<br> +DemoSpa: ha sido corta +<br> +DemoSwe: hon har varit kort +<br> + Demo: UseCl TFut AAnter PPos (PredV (DetArtSg DefArt (UseN pen_N)) die_V) +<br> +DemoBul: писалката ще е умрялa +<br> +DemoCat: el llapis haurà mort +<br> +DemoDan: penen vil være død +<br> +DemoEng: the pen will have died +<br> +DemoFin: kynä on kuollut +<br> +DemoFre: le stylo sera mort +<br> +DemoGer: der Bleistift wird gestorben sein +<br> +DemoIta: la penna avrà morto +<br> +DemoNor: pennen vil være dødd +<br> +DemoRus: ручка будет умирать +<br> +DemoSpa: la lapicera habrá morido +<br> +DemoSwe: pennan ska ha dött +<br> + Demo: UseCl TPast ASimul PNeg (PredAdv (DetCN (DetQuant (PossPron youPol_Pron) (NumCard (NumDigits (IIDig D_4 (IDig D_1))))) (UseN2 brother_N2)) somewhere_Adv) +<br> +DemoBul: вашите 4 1 братя не бяха някъде +<br> +DemoCat: els seus 4 1 germàs no eren a algun lloc +<br> +DemoDan: Deres 4 1 brødre var ikke et eller annet sted +<br> +DemoEng: your 4 1 brothers weren't somewhere +<br> +DemoFin: teidän 4 1 veljenä &+ nne eivät olleet jossain +<br> +DemoFre: vos 4 1 frères n' étaient pas quelque part +<br> +DemoGer: Ihre 4 1 Brüder waren nicht irgendwo +<br> +DemoIta: i Suoi 4 1 fratelli non erano qualche parte +<br> +DemoNor: Deres 4 1 brødre var ikke et eller annet sted +<br> +DemoRus: ваши 4 1 браты не были где-нибудь +<br> +DemoSpa: sus 4 1 hermanos no eran en ninguna parte +<br> +DemoSwe: era 4 1 bröder var inte någonstans +<br> + Demo: UseCl TCond ASimul PPos (PredV2 (UsePN paris_PN) watch_V2 (DetArtPl IndefArt (ComplN2 brother_N2 (UsePN paris_PN)))) +<br> +DemoBul: Париж би гледал братя на Париж +<br> +DemoCat: Paris miraria uns germàs de Paris +<br> +DemoDan: Paris ville se på brødre til Paris +<br> +DemoEng: Paris would watch brothers of Paris +<br> +DemoFin: Pariisi katselisi Pariisin veljissä +<br> +DemoFre: Paris regarderait des frères de Paris +<br> +DemoGer: Paris würde an Brüder von Paris schauen +<br> +DemoIta: Parigi guarderebbe fratelli di Parigi +<br> +DemoNor: Paris ville se på brødre til Paris +<br> +DemoRus: Париж смотрел бы братов Парижа +<br> +DemoSpa: Paris miraría unos hermanos de Paris +<br> +DemoSwe: Paris skulle titta på bröder till Paris +<br> + Demo: UseCl TPast ASimul PNeg (PredV (UsePron youPl_Pron) smell_V) +<br> +DemoBul: вие не мирисахте +<br> +DemoCat: no ensumàveu +<br> +DemoDan: i lugtede ikke +<br> +DemoEng: you didn't smell +<br> +DemoFin: te ette haistaneet +<br> +DemoFre: vous ne sentiez pas +<br> +DemoGer: ihr riechtet nicht +<br> +DemoIta: non sentivate +<br> +DemoNor: dere lukta ikke +<br> +DemoRus: вы не пахнули +<br> +DemoSpa: no olíais +<br> +DemoSwe: ni luktade inte +<br> + Demo: UseCl TPast AAnter PPos (PredV somebody_NP sit_V) +<br> +DemoBul: някой беше седял +<br> +DemoCat: algú se havia segut +<br> +DemoDan: nogen havde siddet +<br> +DemoEng: somebody had sat +<br> +DemoFin: joku oli istunut +<br> +DemoFre: quelqu'un s' était assis +<br> +DemoGer: jemand hatte gesessen +<br> +DemoIta: qualcuno si era seduto +<br> +DemoNor: noen hadde sittet +<br> +DemoRus: кто-то сидел +<br> +DemoSpa: algún se había sentado +<br> +DemoSwe: någon hade suttit +<br> + Demo: UseCl TPast AAnter PPos (PredV (DetCN many_Det (ComplN2 (ComplN3 distance_N3 (UsePron youSg_Pron)) (UsePN paris_PN))) smell_V) +<br> +DemoBul: много разстояния от теб до Париж бяха мирисали +<br> +DemoCat: moltes distàncies de tu a Paris havien ensumat +<br> +DemoDan: mange afstander fra dig til Paris havde lugtet +<br> +DemoEng: many distances from you to Paris had smelled +<br> +DemoFin: moni etäisyys sinusta Pariisiin oli haistanut +<br> +DemoFre: plusieurs distances de toi à Paris avaient senti +<br> +DemoGer: viele Entfernungen von dir zu Paris hatten geriecht +<br> +DemoIta: molte distanze di te a Parigi avevano sentito +<br> +DemoNor: mange avstander fra deg til Paris hadde lukta +<br> +DemoRus: много расстояния от тебя к Парижу пахнуло +<br> +DemoSpa: muchas distancias de tí a Paris habían olido +<br> +DemoSwe: många avstånd från dig till Paris hade luktat +<br> + Demo: UseCl TPast AAnter PNeg (PredV2 somebody_NP forget_V2 (DetCN (DetArtOrd IndefArt NumPl (OrdSuperl white_A)) (UseN snow_N))) +<br> +DemoBul: някой не беше забравил най - бели снегове +<br> +DemoCat: algú no havia oblidat unes más blanques neus +<br> +DemoDan: nogen havde ikke glemt hvideste snøer +<br> +DemoEng: somebody hadn't forgotten whitest snows +<br> +DemoFin: joku ei ollut unohtanut valkoisimpia lumia +<br> +DemoFre: quelqu'un n' avait pas oublié des plus blanches neiges +<br> +DemoGer: jemand hatte weißeste Schneen nicht vergessen +<br> +DemoIta: qualcuno non aveva dimenticato più bianche nevi +<br> +DemoNor: noen hadde ikke glemt hviteste snøer +<br> +DemoRus: кто-то не забывал белые снеги +<br> +DemoSpa: algún no había olvidado unas más blancas nieves +<br> +DemoSwe: någon hade inte glömt vitaste snöer +<br> + Demo: UseCl TPres ASimul PNeg (PredAdv (DetArtSg DefArt (UseN2 mother_N2)) (ComparAdvAdj more_CAdv rotten_A (AdvNP (DetArtPl IndefArt (UseN stick_N)) (PositAdvAdj brown_A)))) +<br> +DemoBul: майката не е по - прогнило от пръчки кафяво +<br> +DemoCat: la mare no és més podritament que uns bastós marronament +<br> +DemoDan: moderen er ikke mer råddent end pinder brunt +<br> +DemoEng: the mother isn't more rottenly than sticks brownly +<br> +DemoFin: äiti ei ole enemmän mädästi kuin keppejä ruskeasti +<br> +DemoFre: la mère n' est pas plus pourriment que des bâtons brunement +<br> +DemoGer: die Mutter ist nicht mehr verdorben als Stocke braun +<br> +DemoIta: la madre non è più marciamente che bastoni marronemente +<br> +DemoNor: moren er ikke mer råttent enn pinner brunt +<br> +DemoRus: мать не более гнило чем палки коричнево +<br> +DemoSpa: la madre no es mas podridamente que unos bastones marrónmente +<br> +DemoSwe: modern är inte mer ruttet än pinnar brunt +<br> + Demo: UseCl TCond ASimul PPos (PredAP (UsePN john_PN) (PositA broad_A)) +<br> +DemoBul: Джон би бил обширен +<br> +DemoCat: Joan seria ample +<br> +DemoDan: John ville være bred +<br> +DemoEng: John would be broad +<br> +DemoFin: Jussi olisi leveä +<br> +DemoFre: Jean serait large +<br> +DemoGer: Johann würde breit sein +<br> +DemoIta: Giovanni sarebbe largo +<br> +DemoNor: John ville være bred +<br> +DemoRus: Иван +<br> +DemoSpa: Juan sería ancho +<br> +DemoSwe: Johan skulle vara bred +<br> + Demo: UseCl TPast ASimul PNeg (PredV2 somebody_NP watch_V2 (DetArtPl DefArt (UseN iron_N))) +<br> +DemoBul: някой не гледа железата +<br> +DemoCat: algú no mirava els ferros +<br> +DemoDan: nogen så ikke på jernene +<br> +DemoEng: somebody didn't watch the irons +<br> +DemoFin: joku ei katsellut rautoja +<br> +DemoFre: quelqu'un ne regardait pas les fers +<br> +DemoGer: jemand schaute an die Eisen nicht +<br> +DemoIta: qualcuno non guardava i ferri +<br> +DemoNor: noen så ikke på jerna +<br> +DemoRus: кто-то не смотрел железа +<br> +DemoSpa: algún no miraba los fierros +<br> +DemoSwe: någon tittade inte på järnen +<br> + Demo: UseCl TCond ASimul PPos (PredAdv (AdvNP (UsePN paris_PN) (AdAdv quite_Adv there7from_Adv)) there7from_Adv) +<br> +DemoBul: Париж доста от там би бил от там +<br> +DemoCat: Paris bastant d'allà seria d'allà +<br> +DemoDan: Paris temmelig derfra ville være derfra +<br> +DemoEng: Paris quite from there would be from there +<br> +DemoFin: Pariisi melko sieltä olisi sieltä +<br> +DemoFre: Paris assez de là serait de là +<br> +DemoGer: Paris ziemlich daher würde daher sein +<br> +DemoIta: Parigi assai di là sarebbe di là +<br> +DemoNor: Paris temmelig derfra ville være derfra +<br> +DemoRus: Париж довольно оттуда +<br> +DemoSpa: Paris bastante de allá sería de allá +<br> +DemoSwe: Paris ganska därifrån skulle vara därifrån +<br> + Demo: UseCl TCond ASimul PNeg (PredV (AdvNP (UsePN paris_PN) (SubjS when_Subj (UseCl TPast AAnter PNeg (PredAdv somebody_NP there7from_Adv)))) dig_V) +<br> +DemoBul: Париж когато някой не беше бил от там не би копал +<br> +DemoCat: Paris quan algú no havia estat d'allà no cavaria +<br> +DemoDan: Paris når nogen ikke havde været derfra ville ikke grave +<br> +DemoEng: Paris when somebody hadn't been from there wouldn't dig +<br> +DemoFin: Pariisi kun joku ei ollut ollut sieltä ei kaivaisi +<br> +DemoFre: Paris quand quelqu'un n' avait pas été de là ne creuserait pas +<br> +DemoGer: Paris wenn jemand nicht daher gewesen war würde nicht graben +<br> +DemoIta: Parigi quando qualcuno non era stato di là non scaverebbe +<br> +DemoNor: Paris når noen ikke hadde vært derfra ville ikke grave +<br> +DemoRus: Париж когда кто-то не был оттуда не копал бы +<br> +DemoSpa: Paris cuando algún no había sido de allá no escarbaría +<br> +DemoSwe: Paris när någon inte hade varit därifrån skulle inte gräva +<br> + Demo: UseCl TCond ASimul PPos (PredAdv (AdvNP somebody_NP there7to_Adv) far_Adv) +<br> +DemoBul: някой до там би бил далече +<br> +DemoCat: algú cap a allà seria lluny +<br> +DemoDan: nogen dit ville være fjern +<br> +DemoEng: somebody there would be far +<br> +DemoFin: joku sinne olisi kaukana +<br> +DemoFre: quelqu'un là serait loin +<br> +DemoGer: jemand dahin würde weit sein +<br> +DemoIta: qualcuno là sarebbe lontano +<br> +DemoNor: noen dit ville være fjern +<br> +DemoRus: кто-то туда +<br> +DemoSpa: algún para allá sería lejos +<br> +DemoSwe: någon dit skulle vara långt +<br> + Demo: UseCl TFut AAnter PNeg (PredAdv somebody_NP here7from_Adv) +<br> +DemoBul: някой няма да е бил от тук +<br> +DemoCat: algú no haurà estat d'aquí +<br> +DemoDan: nogen vil ikke have været herfra +<br> +DemoEng: somebody won't have been from here +<br> +DemoFin: joku ei ole ollut täältä +<br> +DemoFre: quelqu'un n' aura pas été d'ici +<br> +DemoGer: jemand wird nicht hieraus gewesen sein +<br> +DemoIta: qualcuno non sarà stato da quì +<br> +DemoNor: noen vil ikke ha vært herfra +<br> +DemoRus: кто-то не будет отсюда +<br> +DemoSpa: algún no habrá sido de acá +<br> +DemoSwe: någon ska inte ha varit härifrån +<br> + Demo: UseCl TPast AAnter PPos (PredAdv (DetArtSg DefArt (AdjCN (PositA long_A) (AdjCN (PositA ugly_A) (ComplN2 brother_N2 (DetArtPl DefArt (ComplN2 mother_N2 (UsePN john_PN))))))) now_Adv) +<br> +DemoBul: дългият глупав брат на майките на Джон беше бил сега +<br> +DemoCat: el germà dels mares de Joan lleig llarg havia estat ara +<br> +DemoDan: den lange grimme broder til mødrene til John havde været nu +<br> +DemoEng: the long ugly brother of the mothers of John had been now +<br> +DemoFin: pitkä ruma Jussin äitien veli oli ollut nyt +<br> +DemoFre: le frère des mères de Jean laide long avait été maintenant +<br> +DemoGer: der lange häßliche Bruder von den Müttern von Johann war jetzt gewesen +<br> +DemoIta: il fratello delle madri di Giovanni brutto lungo era stato adesso +<br> +DemoNor: den lange stygge broren til mødrene til John hadde vært nå +<br> +DemoRus: длинный некрасивый брат матерей Ивана был сейчас +<br> +DemoSpa: el hermano de las madres de Juan feo largo había sido ahora +<br> +DemoSwe: den långa fula brodern till mödrarna till Johan hade varit nu +<br> + Demo: UseCl TPast AAnter PNeg (PredAP (UsePron i_Pron) (ComplA2 married_A2 (AdvNP (UsePron she_Pron) already_Adv))) +<br> +DemoBul: аз не бях бил женен за нея вече +<br> +DemoCat: no havia estat casata a ella ja +<br> +DemoDan: jeg havde ikke været gift med hende allerede +<br> +DemoEng: I hadn't been married to her already +<br> +DemoFin: minä en ollut ollut avioitunut hänen jo kanssa +<br> +DemoFre: je n' avais pas été marié à elle déjà +<br> +DemoGer: ich war nicht verheiratet mit ihr schon gewesen +<br> +DemoIta: non ero stato sposato a lei già +<br> +DemoNor: jeg hadde ikke vært gift med henne allerede +<br> +DemoRus: я не был замужем за ей уже +<br> +DemoSpa: no había sido casado a ella ya +<br> +DemoSwe: jag hade inte varit gift med henne redan +<br> + Demo: UseCl TPres ASimul PNeg (PredAP (UsePN john_PN) (ComplA2 married_A2 (UsePN paris_PN))) +<br> +DemoBul: Джон не е женен за Париж +<br> +DemoCat: Joan no és casat a Paris +<br> +DemoDan: John er ikke gift med Paris +<br> +DemoEng: John isn't married to Paris +<br> +DemoFin: Jussi ei ole avioitunut Pariisin kanssa +<br> +DemoFre: Jean n' est pas marié à Paris +<br> +DemoGer: Johann ist nicht verheiratet mit Paris +<br> +DemoIta: Giovanni non è sposato a Parigi +<br> +DemoNor: John er ikke gift med Paris +<br> +DemoRus: Иван не замужем за Парижом +<br> +DemoSpa: Juan no es casado a Paris +<br> +DemoSwe: Johan är inte gift med Paris +<br> + Demo: UseCl TCond ASimul PNeg (PredAP somebody_NP (AdAP very_AdA (PositA brown_A))) +<br> +DemoBul: някой не би бил много кафяв +<br> +DemoCat: algú no seria molt marró +<br> +DemoDan: nogen ville ikke være meget brun +<br> +DemoEng: somebody wouldn't be very brown +<br> +DemoFin: joku ei olisi erittäin ruskea +<br> +DemoFre: quelqu'un ne serait pas très brun +<br> +DemoGer: jemand würde nicht sehr braun sein +<br> +DemoIta: qualcuno non sarebbe molto marrone +<br> +DemoNor: noen ville ikke være mye brun +<br> +DemoRus: кто-то не +<br> +DemoSpa: algún no sería muy marrón +<br> +DemoSwe: någon skulle inte vara mycket brun +<br> + Demo: UseCl TPres ASimul PPos (PredV2 somebody_NP eat_V2 somebody_NP) +<br> +DemoBul: някой яде някой +<br> +DemoCat: algú menja algú +<br> +DemoDan: nogen spiser nogen +<br> +DemoEng: somebody eats somebody +<br> +DemoFin: joku syö jonkun +<br> +DemoFre: quelqu'un mange quelqu'un +<br> +DemoGer: jemand ißt jemanden +<br> +DemoIta: qualcuno mangia qualcuno +<br> +DemoNor: noen spiser noen +<br> +DemoRus: кто-то кушает кого-то +<br> +DemoSpa: algún come algún +<br> +DemoSwe: någon äter någon +<br> + Demo: UseCl TPast ASimul PPos (PredAdv somebody_NP everywhere_Adv) +<br> +DemoBul: някой беше навсякъде +<br> +DemoCat: algú era a tot arreu +<br> +DemoDan: nogen var overalt +<br> +DemoEng: somebody was everywhere +<br> +DemoFin: joku oli kaikkialla +<br> +DemoFre: quelqu'un était partout +<br> +DemoGer: jemand war überall +<br> +DemoIta: qualcuno era dappertutto +<br> +DemoNor: noen var overalt +<br> +DemoRus: кто-то был везде +<br> +DemoSpa: algún era en todas partes +<br> +DemoSwe: någon var överallt +<br> + Demo: UseCl TFut AAnter PNeg (PredV (AdvNP (DetCN (DetArtOrd IndefArt NumSg (OrdSuperl small_A)) (AdjCN (ComparA fun_AV (AdvNP (UsePron she_Pron) there7from_Adv)) (UseN fridge_N))) (AdAdv so_AdA there7from_Adv)) walk_V) +<br> +DemoBul: най - малък по - забавен от нея от там фризер толкова от там няма да е ходил +<br> +DemoCat: una más petita nevera más divertita que ella d'allà tan d'allà no haurà caminat +<br> +DemoDan: et mindste køleskab morsommere end hun derfra så derfra vil ikke være gået +<br> +DemoEng: a smallest fridge funer than she from there so from there won't have walked +<br> +DemoFin: pienimmät häntä sieltä hauskempi jääkaappi niin sieltä ei ole kävellyt +<br> +DemoFre: un plus petit frigo plus marrant qu' elle de là si de là n' aura pas marché +<br> +DemoGer: ein kleinester tollerer als sie daher Kühlschrank so daher wird nicht gegangen sein +<br> +DemoIta: un più piccolo frigorifero più divertente che lei di là così di là non avrà camminato +<br> +DemoNor: et minste kjøleskap morsomere enn hun derfra så derfra vil ikke være gått +<br> +DemoRus: маленький весёлее неё оттуда холодильник так оттуда не будет гулять +<br> +DemoSpa: una más pequeña heladera más divertida que ella de allá tanto de allá no habrá caminado +<br> +DemoSwe: ett minsta kylskåp roligare än hon därifrån så därifrån ska inte ha gått +<br> + Demo: UseCl TPast ASimul PPos (PredV2 (DetArtPl IndefArt (UseN religion_N)) count_V2 (AdvNP (DetArtSg IndefArt (ComplN2 (ComplN3 distance_N3 (DetArtSg DefArt (UseN apple_N))) (DetCN someSg_Det (UseN2 brother_N2)))) there7to_Adv)) +<br> +DemoBul: религии броиха разстояние от ябълката до някой брат до там +<br> +DemoCat: unes religions comptaven una distància de la poma a algun germà cap a allà +<br> +DemoDan: religioner talte en afstand fra æblet til nogen broder dit +<br> +DemoEng: religions counted a distance from the apple to some brother there +<br> +DemoFin: uskontoja laski etäisyyden omenasta johonkuun veljeen sinne +<br> +DemoFre: des religions contaient une distance de la pomme à quelque frère là +<br> +DemoGer: Religionen zählten eine Entfernung von dem Apfel zu einem Bruder dahin +<br> +DemoIta: religioni contavano una distanza della mela a qualche fratello là +<br> +DemoNor: religioner regna en avstand fra eplet til noen bror dit +<br> +DemoRus: религии считали расстояние от яблока к некоторому брату туда +<br> +DemoSpa: unas religiones contaban una distancia de la manzana a algun hermano para allá +<br> +DemoSwe: religioner räknade ett avstånd från äpplet till någon bror dit +<br> + Demo: UseCl TFut AAnter PPos (PredV (UsePron youPol_Pron) swim_V) +<br> +DemoBul: вие ще сте плували +<br> +DemoCat: haureu nedat +<br> +DemoDan: Dere vil have svømmet +<br> +DemoEng: you will have swum +<br> +DemoFin: te olette uineet +<br> +DemoFre: vous aurez nagé +<br> +DemoGer: Sie werden geschwimmt haben +<br> +DemoIta: avrà nuotato +<br> +DemoNor: Dere vil ha simma +<br> +DemoRus: вы будете плавать +<br> +DemoSpa: habrá nadado +<br> +DemoSwe: ni ska ha simmat +<br> + Demo: UseCl TPres ASimul PPos (PredV2 (UsePron i_Pron) hit_V2 (UsePron he_Pron)) +<br> +DemoBul: аз удрям него +<br> +DemoCat: el pico +<br> +DemoDan: jeg slår ham +<br> +DemoEng: I hit him +<br> +DemoFin: minä lyön häntä +<br> +DemoFre: je le frappe +<br> +DemoGer: ich schlage ihn +<br> +DemoIta: lo colpisco +<br> +DemoNor: jeg slår ham +<br> +DemoRus: я ударяю его +<br> +DemoSpa: lo golpeo +<br> +DemoSwe: jag slår honom +<br> + Demo: UseCl TPast ASimul PPos (PredV2 somebody_NP teach_V2 (UsePron i_Pron)) +<br> +DemoBul: някой преподаде мен +<br> +DemoCat: algú em ensenyava +<br> +DemoDan: nogen underviste mig +<br> +DemoEng: somebody taught me +<br> +DemoFin: joku opetti minut +<br> +DemoFre: quelqu'un m' enseignait +<br> +DemoGer: jemand unterrichtete mich +<br> +DemoIta: qualcuno mi insegnava +<br> +DemoNor: noen underviste meg +<br> +DemoRus: кто-то учил меня +<br> +DemoSpa: algún me enseñaba +<br> +DemoSwe: någon undervisade mig +<br> + Demo: UseCl TPast ASimul PNeg (PredAdv (UsePron they_Pron) already_Adv) +<br> +DemoBul: те не бяха вече +<br> +DemoCat: no eren ja +<br> +DemoDan: de var ikke allerede +<br> +DemoEng: they weren't already +<br> +DemoFin: he eivät olleet jo +<br> +DemoFre: ils n' étaient pas déjà +<br> +DemoGer: sie waren nicht schon +<br> +DemoIta: non erano già +<br> +DemoNor: de var ikke allerede +<br> +DemoRus: они не были уже +<br> +DemoSpa: no eran ya +<br> +DemoSwe: de var inte redan +<br> + Demo: UseCl TCond AAnter PNeg (PredAP (AdvNP (AdvNP somebody_NP there7from_Adv) there_Adv) (ComparA bad_A (DetArtSg DefArt (UseN oil_N)))) +<br> +DemoBul: някой от там там не би бил по - лош от олиото +<br> +DemoCat: algú d'allà allà no hauria estat pitjor que l' oli +<br> +DemoDan: nogen derfra der ville ikke have været dårligere end olien +<br> +DemoEng: somebody from there there wouldn't have been worse than the oil +<br> +DemoFin: joku sieltä siellä ei olisi ollut pahempi kuin öljy +<br> +DemoFre: quelqu'un de là là n' aurait pas été pire que l' huile +<br> +DemoGer: jemand daher da würde nicht schlechter als das Öl gewesen sein +<br> +DemoIta: qualcuno di là là non sarebbe stato peggio che l' olio +<br> +DemoNor: noen derfra der ville ikke ha vært dårligere enn oljen +<br> +DemoRus: кто-то оттуда там не +<br> +DemoSpa: algún de allá allí no habría sido peor que el aceite +<br> +DemoSwe: någon därifrån där skulle inte ha varit sämre än oljan +<br> + Demo: UseCl TFut AAnter PPos (PredAP (AdvNP (DetArtSg DefArt (UseN meat_N)) there7from_Adv) (ComplA2 married_A2 (UsePron youPl_Pron))) +<br> +DemoBul: месото от там ще е било женено за вас +<br> +DemoCat: la carn d'allà haurà estat casata a vosaltres +<br> +DemoDan: kødet derfra vil have været gift med jer +<br> +DemoEng: the meat from there will have been married to you +<br> +DemoFin: liha sieltä on ollut avioitunut teidän kanssa +<br> +DemoFre: la viande de là aura été mariée à vous +<br> +DemoGer: das Fleisch daher wird verheiratet mit euch gewesen sein +<br> +DemoIta: la carne di là sarà stata sposata a voi +<br> +DemoNor: kjøttet derfra vil ha vært gift med dere +<br> +DemoRus: мясо оттуда будет замужем за вами +<br> +DemoSpa: la carne de allá habrá sido casada a vosotros +<br> +DemoSwe: köttet därifrån ska ha varit gift med er +<br> + Demo: UseCl TCond AAnter PNeg (PredV2 (DetArtPl DefArt (UseN2 father_N2)) suck_V2 (AdvNP (UsePron youPol_Pron) somewhere_Adv)) +<br> +DemoBul: бащите не биха сукали вас някъде +<br> +DemoCat: els pares no haurien xuclat vosté a algun lloc +<br> +DemoDan: fædrene ville ikke have suttet Dere et eller annet sted +<br> +DemoEng: the fathers wouldn't have sucked you somewhere +<br> +DemoFin: isät eivät olisi imeneet teitä jossain +<br> +DemoFre: les pères n' auraient pas sucé vous quelque part +<br> +DemoGer: die Väter würden Sie irgendwo nicht gesaugt haben +<br> +DemoIta: i padri non avrebbero succhiato Lei qualche parte +<br> +DemoNor: fedrene ville ikke ha sugd Dere et eller annet sted +<br> +DemoRus: отцы не сосали бы вас где-нибудь +<br> +DemoSpa: los padres no habrían chupado usted en ninguna parte +<br> +DemoSwe: fäderna skulle inte ha sugit er någonstans +<br> + Demo: UseCl TFut AAnter PNeg (PredAdv (DetArtPl IndefArt (UseN hat_N)) there7from_Adv) +<br> +DemoBul: шапки няма да са били от там +<br> +DemoCat: uns barrets no hauran estat d'allà +<br> +DemoDan: hatte vil ikke have været derfra +<br> +DemoEng: hats won't have been from there +<br> +DemoFin: hattuja ei ole ollut sieltä +<br> +DemoFre: des chapeaux n' auront pas été de là +<br> +DemoGer: Hüte werden nicht daher gewesen sein +<br> +DemoIta: capelli non saranno stati di là +<br> +DemoNor: hatter vil ikke ha vært derfra +<br> +DemoRus: шляпы не будут оттуда +<br> +DemoSpa: unos sombreros no habrán sido de allá +<br> +DemoSwe: hattar ska inte ha varit därifrån +</body> +</html> diff --git a/deprecated/old-lib/resource/doc/synopsis-browse.txt b/deprecated/old-lib/resource/doc/synopsis-browse.txt new file mode 100644 index 000000000..4d26fc600 --- /dev/null +++ b/deprecated/old-lib/resource/doc/synopsis-browse.txt @@ -0,0 +1,34 @@ + + + + +=Browsing the libraries with GF commands= + +**New**: Browsing by syntax editor +[directly on the web ../../../demos/resource-api/editor.html]. + +All of the following assume +``` + cd $GF_LIB_PATH +``` +To try out inflection paradigms: +``` + > i -path=alltenses -retain alltenses/ParadigmsGer.gfo + > cc mkN "Farbe" +``` +To try out overloaded syntax, test lexicon, and inflection paradigms: +``` + > i -path=alltenses -retain alltenses/TryGer.gfo + > cc mkCl (mkNP this_Quant (mkN "Farbe")) (mkA "dunkel") +``` +% To look for a syntax tree in the overload API by parsing: +% ``` +% > i -path=alltenses alltenses/OverLangEng.gf +% > p -cat=S -overload "this grammar is too big" +% ``` +% To view linearizations in all languages by parsing from English: +% ``` +% > i alltenses/langs.gfcm +% > p -cat=S -lang=LangEng "this grammar is too big" | tb +% ``` + diff --git a/deprecated/old-lib/resource/doc/synopsis-example.txt b/deprecated/old-lib/resource/doc/synopsis-example.txt new file mode 100644 index 000000000..8c992339e --- /dev/null +++ b/deprecated/old-lib/resource/doc/synopsis-example.txt @@ -0,0 +1,51 @@ + +The standard way of building an application has the following modules. + +An abstract syntax: +``` + abstract Music = { + cat + Kind, + Property ; + fun + PropKind : Kind -> Property -> Kind ; + Song : Kind ; + American : Property ; + } +``` +A domain lexicon interface: +``` + interface LexMusic = open Cat in { + oper + song_N : N ; + american_A : A ; + } +``` +A functor on ``Syntax`` and the domain lexicon interface: +``` + incomplete concrete MusicI of Music = open Syntax, MusicLex in { + lincat + Kind = CN ; + Property = AP ; + lin + PropKind k p = mkCN p k ; + Song = mkCN song_N ; + American = mkAP american_A ; + } +``` +For each language, an instance of the domain lexicon: +``` + instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in { + oper + song_N = mkN "Lied" "Lieder" neuter ; + american_A = mkA "amerikanisch" ; + } +``` +For each language, an instantiation of the functor: +``` + --# -path=.:present:prelude + + concrete MusicGer of Music = MusicI with + (Syntax = SyntaxGer), + (LexMusic = LexMusicGer) ; +``` diff --git a/deprecated/old-lib/resource/doc/synopsis-intro.txt b/deprecated/old-lib/resource/doc/synopsis-intro.txt new file mode 100644 index 000000000..5a473d241 --- /dev/null +++ b/deprecated/old-lib/resource/doc/synopsis-intro.txt @@ -0,0 +1,26 @@ + + + +=Introduction= + +This document contains the most important parts of the GF Resource Grammar API. +It has been machine-generated from the source files; each chapter gives a link +to the relevant source files, which give more information. Some of the files have +not yet been prepared so that the machine generated documentation has the right +format. + +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. + +The second-last chapter gives instructions on how to "browse" the library by +loading the grammars into the ``gf`` command editor. + +**New**: Browsing by syntax editor +[directly on the web ../../../demos/resource-api/editor.html]. + +The last chapter contains a brief example of how application grammars can +import resource modules. At the same time, it illustrates a "design pattern" for +using the resource API to build functor-based applications + diff --git a/deprecated/old-lib/resource/doc/synopsis.html b/deprecated/old-lib/resource/doc/synopsis.html new file mode 100644 index 000000000..0dd6c7b73 --- /dev/null +++ b/deprecated/old-lib/resource/doc/synopsis.html @@ -0,0 +1,6108 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<HTML> +<HEAD> +<META NAME="generator" CONTENT="http://txt2tags.sf.net"> +<TITLE>GF Resource Grammar Library: Synopsis</TITLE> +</HEAD><BODY BGCOLOR="white" TEXT="black"> +<P ALIGN="center"><CENTER><H1>GF Resource Grammar Library: Synopsis</H1> +<FONT SIZE="4"> +<I>B. Bringert and A. Ranta</I><BR> +</FONT></CENTER> + +<P></P> +<HR NOSHADE SIZE=1> +<P></P> + <UL> + <LI><A HREF="#toc1">Introduction</A> + <LI><A HREF="#toc2">Categories</A> + <UL> + <LI><A HREF="#toc3">A hierarchic view</A> + <LI><A HREF="#toc4">Explanations</A> + </UL> + <LI><A HREF="#toc5">Syntax Rules and Structural Words</A> + <UL> + <LI><A HREF="#A" TITLE="A - one-place adjective">A - one-place adjective</A> + <LI><A HREF="#A2" TITLE="A2 - two-place adjective">A2 - two-place adjective</A> + <LI><A HREF="#AP" TITLE="AP - adjectival phrase">AP - adjectival phrase</A> + <LI><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA - adjective-modifying adverb</A> + <LI><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN - numeral-modifying adverb</A> + <LI><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV - adverb directly attached to verb</A> + <LI><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv - verb-phrase-modifying adverb</A> + <LI><A HREF="#Ant" TITLE="Ant - anteriority">Ant - anteriority</A> + <LI><A HREF="#Art" TITLE="Art - article">Art - article</A> + <LI><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv - comparative adverb</A> + <LI><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN - common noun (without determiner)</A> + <LI><A HREF="#Card" TITLE="Card - cardinal number">Card - cardinal number</A> + <LI><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl - declarative clause, with all tenses</A> + <LI><A HREF="#ClSlash">ClSlash</A> + <LI><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp - complement of copula, such as AP</A> + <LI><A HREF="#Conj" TITLE="Conj - conjunction">Conj - conjunction</A> + <LI><A HREF="#Det" TITLE="Det - determiner phrase">Det - determiner phrase</A> + <LI><A HREF="#Dig">Dig</A> + <LI><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits - cardinal or ordinal in digits</A> + <LI><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv - interrogative adverb</A> + <LI><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp - interrogative complement of copula</A> + <LI><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet - interrogative determiner</A> + <LI><A HREF="#IP" TITLE="IP - interrogative pronoun">IP - interrogative pronoun</A> + <LI><A HREF="#IQuant">IQuant</A> + <LI><A HREF="#Imp" TITLE="Imp - imperative">Imp - imperative</A> + <LI><A HREF="#ImpForm">ImpForm</A> + <LI><A HREF="#ListAP">ListAP</A> + <LI><A HREF="#ListAdv">ListAdv</A> + <LI><A HREF="#ListNP">ListNP</A> + <LI><A HREF="#ListS">ListS</A> + <LI><A HREF="#N" TITLE="N - common noun">N - common noun</A> + <LI><A HREF="#N2" TITLE="N2 - relational noun">N2 - relational noun</A> + <LI><A HREF="#N3" TITLE="N3 - three-place relational noun">N3 - three-place relational noun</A> + <LI><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP - noun phrase (subject or object)</A> + <LI><A HREF="#Num" TITLE="Num - number determining element">Num - number determining element</A> + <LI><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral - cardinal or ordinal in words</A> + <LI><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord - ordinal number (used in Det)</A> + <LI><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj - phrase-beginning conjunction</A> + <LI><A HREF="#PN" TITLE="PN - proper name">PN - proper name</A> + <LI><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr - phrase in a text</A> + <LI><A HREF="#Pol" TITLE="Pol - polarity">Pol - polarity</A> + <LI><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet - predeterminer (prefixed Quant)</A> + <LI><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep - preposition, or just case</A> + <LI><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron - personal pronoun</A> + <LI><A HREF="#Punct">Punct</A> + <LI><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl - question clause, with all tenses</A> + <LI><A HREF="#QS" TITLE="QS - question">QS - question</A> + <LI><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant - quantifier ('nucleus' of Det)</A> + <LI><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl - relative clause, with all tenses</A> + <LI><A HREF="#RP" TITLE="RP - relative pronoun">RP - relative pronoun</A> + <LI><A HREF="#RS" TITLE="RS - relative">RS - relative</A> + <LI><A HREF="#S" TITLE="S - declarative sentence">S - declarative sentence</A> + <LI><A HREF="#SC" TITLE="SC - embedded sentence or question">SC - embedded sentence or question</A> + <LI><A HREF="#Subj" TITLE="Subj - subjunction">Subj - subjunction</A> + <LI><A HREF="#Tense" TITLE="Tense - tense">Tense - tense</A> + <LI><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text - text consisting of several phrases</A> + <LI><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt - sentence, question, word...</A> + <LI><A HREF="#V" TITLE="V - one-place verb">V - one-place verb</A> + <LI><A HREF="#V2" TITLE="V2 - two-place verb">V2 - two-place verb</A> + <LI><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A - verb with NP and AP complement</A> + <LI><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q - verb with NP and Q complement</A> + <LI><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S - verb with NP and S complement</A> + <LI><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V - verb with NP and V complement</A> + <LI><A HREF="#V3" TITLE="V3 - three-place verb">V3 - three-place verb</A> + <LI><A HREF="#VA" TITLE="VA - adjective-complement verb">VA - adjective-complement verb</A> + <LI><A HREF="#VP" TITLE="VP - verb phrase">VP - verb phrase</A> + <LI><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash - verb phrase missing complement</A> + <LI><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ - question-complement verb</A> + <LI><A HREF="#VS" TITLE="VS - sentence-complement verb">VS - sentence-complement verb</A> + <LI><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV - verb-phrase-complement verb</A> + <LI><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc - vocative or "please"</A> + </UL> + <LI><A HREF="#toc77">Lexical Paradigms</A> + <UL> + <LI><A HREF="#toc78">Paradigms for Bulgarian</A> + <LI><A HREF="#toc79">Paradigms for Danish</A> + <LI><A HREF="#toc80">Paradigms for English</A> + <LI><A HREF="#toc81">Paradigms for Finnish</A> + <LI><A HREF="#toc82">Paradigms for French</A> + <LI><A HREF="#toc83">Paradigms for German</A> + <LI><A HREF="#toc84">Paradigms for Italian</A> + <LI><A HREF="#toc85">Paradigms for Norwegian</A> + <LI><A HREF="#toc86">Paradigms for Russian</A> + <LI><A HREF="#toc87">Paradigms for Spanish</A> + <LI><A HREF="#toc88">Paradigms for Swedish</A> + </UL> + <LI><A HREF="#toc89">Browsing the libraries with GF commands</A> + <LI><A HREF="#toc90">An Example of Usage</A> + </UL> + +<P></P> +<HR NOSHADE SIZE=1> +<P></P> +<A NAME="toc1"></A> +<H1>Introduction</H1> +<P> +This document contains the most important parts of the GF Resource Grammar API. +It has been machine-generated from the source files; each chapter gives a link +to the relevant source files, which give more information. Some of the files have +not yet been prepared so that the machine generated documentation has the right +format. +</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 +loading the grammars into the <CODE>gf</CODE> command editor. +</P> +<P> +<B>New</B>: Browsing by syntax editor +<A HREF="../../../demos/resource-api/editor.html">directly on the web</A>. +</P> +<P> +The last chapter contains a brief example of how application grammars can +import resource modules. At the same time, it illustrates a "design pattern" for +using the resource API to build functor-based applications +</P> +<A NAME="toc2"></A> +<H1>Categories</H1> +<P> +Source 1: <A HREF="../abstract/Common.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Common.gf</CODE></A> +</P> +<P> +Source 2: <A HREF="../abstract/Cat.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Cat.gf</CODE></A> +</P> +<A NAME="toc3"></A> +<H2>A hierarchic view</H2> +<P> +The chart below shows the categories in a hierarchical top-down order. +The edges do not define the complete dependency structure; if they did, +the graph would have many many more edges, and also many cycles. The precise +meaning of a directed edge from <I>C</I> to <I>D</I> is: there is a constructor +of <I>C</I> that takes <I>D</I> as an argument. What the constructors exactly are, +and what other arguments they take, is described by separate tables for +each category. +</P> +<TABLE ALIGN="center" CELLPADDING="4" BORDER="1"> +<TR> +<TD ALIGN="right"><center><IMG ALIGN="middle" SRC="categories.png" USEMAP="#categories" BORDER="0" ALT=""></center></TD> +</TR> +</TABLE> + +<map id="categories" name="categories"> +<area shape="poly" href="#Text" TITLE="Text - text consisting of several phrases" alt="" coords="690,23 688,17 685,12 679,8 672,5 664,4 656,5 649,8 643,12 640,17 638,23 640,29 643,34 649,38 656,41 664,42 672,41 679,38 685,34 688,29"/> +<area shape="poly" href="#Punct" title="Punct" alt="" coords="657,95 656,89 652,84 646,80 638,77 629,76 620,77 612,80 606,84 602,89 600,95 602,101 606,106 612,110 620,113 629,114 638,113 646,110 652,106 656,101"/> +<area shape="poly" href="#Phr" TITLE="Phr - phrase in a text" alt="" coords="726,95 725,89 721,84 715,80 708,77 700,76 692,77 685,80 679,84 676,89 675,95 676,101 679,106 685,110 692,113 700,114 708,113 715,110 721,106 725,101"/> +<area shape="poly" href="#PConj" TITLE="PConj - phrase-beginning conjunction" alt="" coords="658,167 656,162 652,156 645,152 637,150 628,149 619,150 610,152 604,156 600,162 598,167 600,173 604,179 610,183 619,185 628,186 637,185 645,183 652,179 656,173"/> +<area shape="poly" href="#Utt" TITLE="Utt - sentence, question, word..." alt="" coords="726,167 725,162 721,156 715,152 708,150 700,149 692,150 685,152 679,156 676,162 675,167 676,173 679,179 685,183 692,185 700,186 708,185 715,183 721,179 725,173"/> +<area shape="poly" href="#Voc" TITLE="Voc - vocative or "please"" alt="" coords="794,167 793,162 789,156 784,152 777,150 769,149 761,150 754,152 748,156 744,162 743,167 744,173 748,179 754,183 761,185 769,186 777,185 784,183 789,179 793,173"/> +<area shape="poly" href="#Imp" TITLE="Imp - imperative" alt="" coords="657,240 656,234 652,229 647,225 640,222 632,221 624,222 617,225 611,229 607,234 606,240 607,246 611,251 617,255 624,258 632,259 640,258 647,255 652,251 656,246"/> +<area shape="poly" href="#S" TITLE="S - declarative sentence" alt="" coords="726,240 725,234 721,229 715,225 708,223 700,222 692,223 685,225 679,229 676,234 675,240 676,245 679,250 685,254 692,257 700,258 708,257 715,254 721,250 725,245"/> +<area shape="poly" href="#QS" TITLE="QS - question" alt="" coords="870,240 868,234 865,229 859,225 852,222 844,221 836,222 829,225 823,229 819,234 818,240 819,246 823,251 829,255 836,258 844,259 852,258 859,255 865,251 868,246"/> +<area shape="poly" href="#Tense" TITLE="Tense - tense" alt="" coords="521,312 519,306 515,301 509,297 501,294 492,293 483,294 475,297 469,301 464,306 463,312 464,318 469,323 475,327 483,330 492,331 501,330 509,327 515,323 519,318"/> +<area shape="poly" href="#Ant" TITLE="Ant - anteriority" alt="" coords="589,312 588,306 584,301 578,297 571,294 563,293 555,294 548,297 542,301 539,306 538,312 539,318 542,323 548,327 555,330 563,331 571,330 578,327 584,323 588,318"/> +<area shape="poly" href="#Pol" TITLE="Pol - polarity" alt="" coords="657,312 656,306 652,301 647,297 640,294 632,293 624,294 617,297 611,301 607,306 606,312 607,318 611,323 617,327 624,330 632,331 640,330 647,327 652,323 656,318"/> +<area shape="poly" href="#Cl" TITLE="Cl - declarative clause, with all tenses" alt="" coords="726,312 725,306 721,301 715,297 708,294 700,293 692,294 685,297 679,301 676,306 675,312 676,318 679,323 685,327 692,330 700,331 708,330 715,327 721,323 725,318"/> +<area shape="poly" href="#ListS" title="ListS" alt="" coords="798,312 797,306 793,301 787,297 779,294 771,293 762,294 754,297 748,301 745,306 743,312 745,318 748,323 754,327 762,330 771,331 779,330 787,327 793,323 797,318"/> +<area shape="poly" href="#Conj" TITLE="Conj - conjunction" alt="" coords="867,312 866,306 862,301 856,297 849,294 841,293 833,294 826,297 820,301 816,306 815,312 816,318 820,323 826,327 833,330 841,331 849,330 856,327 862,323 866,318"/> +<area shape="poly" href="#QCl" TITLE="QCl - question clause, with all tenses" alt="" coords="945,312 943,306 940,301 934,297 927,294 919,293 911,294 904,297 898,301 895,306 893,312 895,318 898,323 904,327 911,330 919,331 927,330 934,327 940,323 943,318"/> +<area shape="poly" href="#NP" TITLE="NP - noun phrase (subject or object)" alt="" coords="270,384 269,379 265,373 260,369 252,366 244,366 237,366 229,369 224,373 220,379 219,384 220,390 224,395 229,400 237,402 244,403 252,402 260,400 265,395 269,390"/> +<area shape="poly" href="#VP" TITLE="VP - verb phrase" alt="" coords="636,384 634,379 631,373 625,369 618,366 610,366 602,366 595,369 589,373 585,379 584,384 585,390 589,395 595,400 602,402 610,403 618,402 625,400 631,395 634,390"/> +<area shape="rect" href="#Adv" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="702,367,753,401"/> +<area shape="poly" href="#Predet" TITLE="Predet - predeterminer (prefixed Quant)" alt="" coords="65,457 63,451 59,446 52,441 44,439 34,438 25,439 16,441 10,446 5,451 4,457 5,462 10,468 16,472 25,475 34,475 44,475 52,472 59,468 63,462"/> +<area shape="poly" href="#Pron" TITLE="Pron - personal pronoun" alt="" coords="133,457 132,451 129,446 123,441 116,439 108,438 99,439 92,441 86,446 83,451 82,457 83,462 86,468 92,472 99,475 108,475 116,475 123,472 129,468 132,462"/> +<area shape="rect" href="#PN" TITLE="PN - proper name" alt="" coords="150,440,202,474"/> +<area shape="poly" href="#Det" TITLE="Det - determiner phrase" alt="" coords="270,457 269,451 265,446 260,441 252,439 244,438 237,439 229,441 224,446 220,451 219,457 220,462 224,468 229,472 237,475 244,475 252,475 260,472 265,468 269,462"/> +<area shape="poly" href="#CN" TITLE="CN - common noun (without determiner)" alt="" coords="339,457 337,451 334,446 328,441 321,439 313,438 305,439 298,441 292,446 289,451 287,457 289,462 292,468 298,472 305,475 313,475 321,475 328,472 334,468 337,462"/> +<area shape="poly" href="#ListNP" title="ListNP" alt="" coords="420,457 419,451 414,446 407,441 398,439 388,438 378,439 369,441 362,446 358,451 356,457 358,462 362,468 369,472 378,475 388,475 398,475 407,472 414,468 419,462"/> +<area shape="poly" href="#AdV" TITLE="Adv - verb-phrase-modifying adverb" alt="" coords="489,457 488,451 484,446 479,441 471,439 463,438 455,439 448,441 442,446 439,451 437,457 439,462 442,468 448,472 455,475 463,475 471,475 479,472 484,468 488,462"/> +<area shape="rect" href="#V" TITLE="V - one-place verb" alt="" coords="506,440,616,474"/> +<area shape="poly" href="#AP" TITLE="AP - adjectival phrase" alt="" coords="685,457 684,451 680,446 674,441 667,439 659,438 651,439 644,441 639,446 635,451 634,457 635,462 639,468 644,472 651,475 659,475 667,475 674,472 680,468 684,462"/> +<area shape="poly" href="#Subj" TITLE="Subj - subjunction" alt="" coords="753,457 752,451 749,446 743,441 736,439 728,438 720,439 713,441 707,446 703,451 702,457 703,462 707,468 713,472 720,475 728,475 736,475 743,472 749,468 752,462"/> +<area shape="poly" href="#ListAdj" title="ListAdj" alt="" coords="837,457 836,451 831,446 824,441 814,439 804,438 794,439 784,441 777,446 772,451 770,457 772,462 777,468 784,472 794,475 804,475 814,475 824,472 831,468 836,462"/> +<area shape="poly" href="#Art" TITLE="Art - article" alt="" coords="90,529 89,523 85,518 80,514 73,511 65,510 57,511 50,514 44,518 40,523 39,529 40,535 44,540 50,544 57,547 65,548 73,547 80,544 85,540 89,535"/> +<area shape="poly" 'href="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"' alt="" coords="166,529 165,523 161,518 154,514 146,511 137,510 128,511 120,514 113,518 109,523 108,529 109,535 113,540 120,544 128,547 137,548 146,547 154,544 161,540 165,535"/> +<area shape="poly" href="#Num" TITLE="Num - number determining element" alt="" coords="237,529 235,523 232,518 226,514 218,511 210,510 202,511 195,514 189,518 185,523 184,529 185,535 189,540 195,544 202,547 210,548 218,547 226,544 232,540 235,535"/> +<area shape="poly" href="#Ord" TITLE="Ord - ordinal number (used in Det)" alt="" coords="305,529 304,523 300,518 295,514 288,511 280,510 272,511 265,514 259,518 255,523 254,529 255,535 259,540 265,544 272,547 280,548 288,547 295,544 300,540 304,535"/> +<area shape="rect" href="#N" TITLE="N - common noun" alt="" coords="323,512,387,546"/> +<area shape="poly" href="#RS" TITLE="RS - relative" alt="" coords="456,529 454,523 451,518 445,514 438,511 430,510 422,511 415,514 409,518 406,523 404,529 406,535 409,540 415,544 422,547 430,548 438,547 445,544 451,540 454,535"/> +<area shape="poly" href="#Card" TITLE="Card - cardinal number" alt="" coords="236,601 235,595 231,590 226,586 218,583 210,582 202,583 195,586 189,590 186,595 184,601 186,607 189,612 195,616 202,619 210,620 218,619 226,616 231,612 235,607"/> +<area shape="poly" href="#Numeral" TITLE="Numeral - cardinal or ordinal in words" alt="" coords="216,674 214,668 206,662 194,658 179,656 162,655 145,656 130,658 118,662 110,668 107,674 110,679 118,685 130,689 145,691 162,692 179,691 194,689 206,685 214,679"/> +<area shape="poly" href="#AdN" TITLE="AdN - numeral-modifying adverb" alt="" coords="285,674 283,668 280,662 274,658 267,656 259,655 251,656 244,658 238,662 234,668 233,674 234,679 238,685 244,689 251,691 259,692 267,691 274,689 280,685 283,679"/> +<area shape="poly" href="#CAdv" TITLE="CAdv - comparative adverb" alt="" coords="288,746 286,740 282,735 276,731 268,728 259,727 250,728 242,731 235,735 231,740 230,746 231,752 235,757 242,761 250,764 259,765 268,764 276,761 282,757 286,752"/> +<area shape="poly" href="#RCl" TITLE="RCl - relative clause, with all tenses" alt="" coords="456,601 454,595 451,590 445,586 438,583 430,582 422,583 415,586 409,590 406,595 404,601 406,607 409,612 415,616 422,619 430,620 438,619 445,616 451,612 454,607"/> +<area shape="poly" href="#AdA" TITLE="AdA - adjective-modifying adverb" alt="" coords="617,529 615,523 612,518 606,514 599,511 591,510 583,511 576,514 570,518 566,523 565,529 566,535 570,540 576,544 583,547 591,548 599,547 606,544 612,540 615,535"/> +<area shape="rect" href="#A" TITLE="A - one-place adjective" alt="" coords="634,512,685,546"/> +<area shape="poly" href="#ListAP" title="ListAP" alt="" coords="767,529 765,523 760,518 753,514 744,511 734,510 725,511 716,514 708,518 704,523 702,529 704,535 708,540 716,544 725,547 734,548 744,547 753,544 760,540 765,535"/> +<area shape="poly" href="#IP" TITLE="IP - interrogative pronoun" alt="" coords="895,384 894,379 890,373 885,369 877,366 870,366 862,366 854,369 849,373 845,379 844,384 845,390 849,395 854,400 862,402 870,403 877,402 885,400 890,395 894,390"/> +<area shape="poly" href="#IAdv" TITLE="IAdv - interrogative adverb" alt="" coords="966,384 965,379 961,373 955,369 947,366 939,366 931,366 923,369 917,373 913,379 912,384 913,390 917,395 923,400 931,402 939,403 947,402 955,400 961,395 965,390"/> +<area shape="poly" href="#ClSlash" title="ClSlash" alt="" coords="1050,384 1048,379 1043,373 1036,369 1026,366 1016,366 1006,366 996,369 989,373 984,379 982,384 984,390 989,395 996,400 1006,402 1016,403 1026,402 1036,400 1043,395 1048,390"/> +<area shape="poly" href="#IDet" TITLE="IDet - interrogative determiner" alt="" coords="906,457 904,451 901,446 895,441 888,439 880,438 872,439 865,441 859,446 856,451 854,457 856,462 859,468 865,472 872,475 880,475 888,475 895,472 901,468 904,462"/> +<area shape="poly" href="#VPSlash" TITLE="VPSlash - verb phrase missing complement" alt="" coords="1052,457 1050,451 1045,446 1037,441 1027,439 1016,438 1005,439 995,441 987,446 982,451 980,457 982,462 987,468 995,472 1005,475 1016,475 1027,475 1037,472 1045,468 1050,462"/> +<area shape="poly" href="#IQuant" title="IQuant" alt="" coords="912,529 910,523 906,518 899,514 890,511 880,510 870,511 861,514 854,518 850,523 848,529 850,535 854,540 861,544 870,547 880,548 890,547 899,544 906,540 910,535"/> +<area shape="poly" href="#RP" TITLE="RP - relative pronoun" alt="" coords="456,674 454,668 451,662 445,658 438,656 430,655 422,656 415,658 409,662 406,668 404,674 406,679 409,685 415,689 422,691 430,692 438,691 445,689 451,685 454,679"/> +</map> +<P> +The rectangular boxes mark open lexical categories, which have constructors +also in the <CODE>Paradigms</CODE> modules. +</P> +<A NAME="toc4"></A> +<H2>Explanations</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Category</TH> +<TH>Explanation</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +<TD>one-place adjective</TD> +<TD><I>warm</I></TD> +</TR> +<TR> +<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +<TD>two-place adjective</TD> +<TD><I>divisible</I></TD> +</TR> +<TR> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD>adjectival phrase</TD> +<TD><I>very warm</I></TD> +</TR> +<TR> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD>adjective-modifying adverb</TD> +<TD><I>very</I></TD> +</TR> +<TR> +<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD> +<TD>numeral-modifying adverb</TD> +<TD><I>more than</I></TD> +</TR> +<TR> +<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +<TD>adverb directly attached to verb</TD> +<TD><I>always</I></TD> +</TR> +<TR> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD>verb-phrase-modifying adverb</TD> +<TD><I>in the house</I></TD> +</TR> +<TR> +<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD> +<TD>anteriority</TD> +<TD>simultaneous, anterior</TD> +</TR> +<TR> +<TD><A HREF="#Art" TITLE="Art - article">Art</A></TD> +<TD>article</TD> +<TD><I>the</I></TD> +</TR> +<TR> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD> +<TD>comparative adverb</TD> +<TD><I>more</I></TD> +</TR> +<TR> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD>common noun (without determiner)</TD> +<TD><I>red house</I></TD> +</TR> +<TR> +<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A></TD> +<TD>cardinal number</TD> +<TD><I>seven</I></TD> +</TR> +<TR> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD>declarative clause, with all tenses</TD> +<TD><I>she looks at this</I></TD> +</TR> +<TR> +<TD><A HREF="#Comp" TITLE="Comp - complement of copula, such as AP">Comp</A></TD> +<TD>complement of copula, such as AP</TD> +<TD><I>very warm</I></TD> +</TR> +<TR> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD> +<TD>conjunction</TD> +<TD><I>and</I></TD> +</TR> +<TR> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD>determiner phrase</TD> +<TD><I>those seven</I></TD> +</TR> +<TR> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD>cardinal or ordinal in digits</TD> +<TD><I>1,000/1,000th</I></TD> +</TR> +<TR> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD>interrogative adverb</TD> +<TD><I>why</I></TD> +</TR> +<TR> +<TD><A HREF="#IComp" TITLE="IComp - interrogative complement of copula">IComp</A></TD> +<TD>interrogative complement of copula</TD> +<TD><I>where</I></TD> +</TR> +<TR> +<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD> +<TD>interrogative determiner</TD> +<TD><I>how many</I></TD> +</TR> +<TR> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD>interrogative pronoun</TD> +<TD><I>who</I></TD> +</TR> +<TR> +<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD> +<TD>imperative</TD> +<TD><I>look at this</I></TD> +</TR> +<TR> +<TD><A HREF="#N" TITLE="N - common noun">N</A></TD> +<TD>common noun</TD> +<TD><I>house</I></TD> +</TR> +<TR> +<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +<TD>relational noun</TD> +<TD><I>son</I></TD> +</TR> +<TR> +<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +<TD>three-place relational noun</TD> +<TD><I>connection</I></TD> +</TR> +<TR> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD>noun phrase (subject or object)</TD> +<TD><I>the red house</I></TD> +</TR> +<TR> +<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD>number determining element</TD> +<TD><I>seven</I></TD> +</TR> +<TR> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD>cardinal or ordinal in words</TD> +<TD><I>five/fifth</I></TD> +</TR> +<TR> +<TD><A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD> +<TD>ordinal number (used in Det)</TD> +<TD><I>seventh</I></TD> +</TR> +<TR> +<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD> +<TD>phrase-beginning conjunction</TD> +<TD><I>therefore</I></TD> +</TR> +<TR> +<TD><A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +<TD>proper name</TD> +<TD><I>Paris</I></TD> +</TR> +<TR> +<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD>phrase in a text</TD> +<TD><I>but be quiet please</I></TD> +</TR> +<TR> +<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD> +<TD>polarity</TD> +<TD>positive, negative</TD> +</TR> +<TR> +<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD> +<TD>predeterminer (prefixed Quant)</TD> +<TD><I>all</I></TD> +</TR> +<TR> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD>preposition, or just case</TD> +<TD><I>in</I></TD> +</TR> +<TR> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD>personal pronoun</TD> +<TD><I>she</I></TD> +</TR> +<TR> +<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD>question clause, with all tenses</TD> +<TD><I>why does she walk</I></TD> +</TR> +<TR> +<TD><A HREF="#QS" TITLE="QS - question">QS</A></TD> +<TD>question</TD> +<TD><I>where did she live</I></TD> +</TR> +<TR> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD> +<TD>quantifier ('nucleus' of Det)</TD> +<TD><I>this/these</I></TD> +</TR> +<TR> +<TD><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD> +<TD>relative clause, with all tenses</TD> +<TD><I>in which she lives</I></TD> +</TR> +<TR> +<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD> +<TD>relative pronoun</TD> +<TD><I>in which</I></TD> +</TR> +<TR> +<TD><A HREF="#RS" TITLE="RS - relative">RS</A></TD> +<TD>relative</TD> +<TD><I>in which she lived</I></TD> +</TR> +<TR> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD>declarative sentence</TD> +<TD><I>she lived here</I></TD> +</TR> +<TR> +<TD><A HREF="#SC" TITLE="SC - embedded sentence or question">SC</A></TD> +<TD>embedded sentence or question</TD> +<TD><I>that it rains</I></TD> +</TR> +<TR> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD> +<TD>subjunction</TD> +<TD><I>if</I></TD> +</TR> +<TR> +<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD> +<TD>tense</TD> +<TD>present, past, future</TD> +</TR> +<TR> +<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD>text consisting of several phrases</TD> +<TD><I>He is here. Why?</I></TD> +</TR> +<TR> +<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD>sentence, question, word...</TD> +<TD><I>be quiet</I></TD> +</TR> +<TR> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD> +<TD>one-place verb</TD> +<TD><I>sleep</I></TD> +</TR> +<TR> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +<TD>two-place verb</TD> +<TD><I>love</I></TD> +</TR> +<TR> +<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +<TD>verb with NP and AP complement</TD> +<TD><I>paint</I></TD> +</TR> +<TR> +<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +<TD>verb with NP and Q complement</TD> +<TD><I>ask</I></TD> +</TR> +<TR> +<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +<TD>verb with NP and S complement</TD> +<TD><I>tell</I></TD> +</TR> +<TR> +<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +<TD>verb with NP and V complement</TD> +<TD><I>cause</I></TD> +</TR> +<TR> +<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +<TD>three-place verb</TD> +<TD><I>show</I></TD> +</TR> +<TR> +<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +<TD>adjective-complement verb</TD> +<TD><I>look</I></TD> +</TR> +<TR> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD>verb phrase</TD> +<TD><I>is very warm</I></TD> +</TR> +<TR> +<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD>verb phrase missing complement</TD> +<TD><I>give to John</I></TD> +</TR> +<TR> +<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +<TD>question-complement verb</TD> +<TD><I>wonder</I></TD> +</TR> +<TR> +<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +<TD>sentence-complement verb</TD> +<TD><I>claim</I></TD> +</TR> +<TR> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +<TD>verb-phrase-complement verb</TD> +<TD><I>want</I></TD> +</TR> +<TR> +<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD> +<TD>vocative or "please"</TD> +<TD><I>my darling</I></TD> +</TR> +</TABLE> + +<A NAME="toc5"></A> +<H1>Syntax Rules and Structural Words</H1> +<P> +Source 1: <A HREF="../api/Constructors.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/api/Constructors.gf</CODE></A> +</P> +<P> +Source 2: <A HREF="../abstract/Structural.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Structural.gf</CODE></A> +</P> +<A NAME="A"></A> +<H2>A - one-place adjective</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="A2"></A> +<H2>A2 - two-place adjective</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="AP"></A> +<H2>AP - adjectival phrase</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>old</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>older than John</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>married to her</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>married to myself</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>probable that John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>uncertain if John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>ready to go</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>very old</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>very very old</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>old and big</I></TD> +</TR> +<TR> +<TD><CODE>mkAP</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#ListAP">ListAP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A></TD> +<TD><I>old, big, and warm</I></TD> +</TR> +</TABLE> + +<A NAME="AdA"></A> +<H2>AdA - adjective-modifying adverb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>almost_AdA</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD><I>almost</I></TD> +</TR> +<TR> +<TD><CODE>quite_Adv</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD><I>quite</I></TD> +</TR> +<TR> +<TD><CODE>so_AdA</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD><I>so</I></TD> +</TR> +<TR> +<TD><CODE>too_AdA</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD><I>too</I></TD> +</TR> +<TR> +<TD><CODE>very_AdA</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +<TD><I>very</I></TD> +</TR> +</TABLE> + +<A NAME="AdN"></A> +<H2>AdN - numeral-modifying adverb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>almost_AdN</CODE></TD> +<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD> +<TD><I>almost</I></TD> +</TR> +<TR> +<TD><CODE>mkAdN</CODE></TD> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-></CODE> <A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A></TD> +<TD><I>more than</I></TD> +</TR> +</TABLE> + +<A NAME="AdV"></A> +<H2>AdV - adverb directly attached to verb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>always_AdV</CODE></TD> +<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +<TD><I>always</I></TD> +</TR> +</TABLE> + +<A NAME="Adv"></A> +<H2>Adv - verb-phrase-modifying adverb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>everywhere_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>everywhere</I></TD> +</TR> +<TR> +<TD><CODE>here7from_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>from here</I></TD> +</TR> +<TR> +<TD><CODE>here7to_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>to here</I></TD> +</TR> +<TR> +<TD><CODE>here_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>here</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>warmly</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>with John</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>when John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>more warmly than John</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>more warmly than John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>very warmly</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>here and now</I></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>with John, here and now</I></TD> +</TR> +<TR> +<TD><CODE>somewhere_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>somewhere</I></TD> +</TR> +<TR> +<TD><CODE>there7from_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>from there</I></TD> +</TR> +<TR> +<TD><CODE>there7to_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>to there</I></TD> +</TR> +<TR> +<TD><CODE>there_Adv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +<TD><I>there</I></TD> +</TR> +</TABLE> + +<A NAME="Ant"></A> +<H2>Ant - anteriority</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>anteriorAnt</CODE></TD> +<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD> +<TD><I>(John has walked) --# notpresent</I></TD> +</TR> +<TR> +<TD><CODE>simultaneousAnt</CODE></TD> +<TD><A HREF="#Ant" TITLE="Ant - anteriority">Ant</A></TD> +<TD><I>(John walks) [default]</I></TD> +</TR> +</TABLE> + +<A NAME="Art"></A> +<H2>Art - article</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>a_Art</CODE></TD> +<TD><A HREF="#Art" TITLE="Art - article">Art</A></TD> +<TD><I>a</I></TD> +</TR> +<TR> +<TD><CODE>the_Art</CODE></TD> +<TD><A HREF="#Art" TITLE="Art - article">Art</A></TD> +<TD><I>the</I></TD> +</TR> +</TABLE> + +<A NAME="CAdv"></A> +<H2>CAdv - comparative adverb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>less_CAdv</CODE></TD> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD> +<TD><I>less</I></TD> +</TR> +<TR> +<TD><CODE>more_CAdv</CODE></TD> +<TD><A HREF="#CAdv" TITLE="CAdv - comparative adverb">CAdv</A></TD> +<TD><I>more</I></TD> +</TR> +</TABLE> + +<A NAME="CN"></A> +<H2>CN - common noun (without determiner)</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>house</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>mother of John</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>distance from this city to Paris</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N2" TITLE="N2 - relational noun">N2</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>son</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>flight</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>big house</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>big blue house</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>very big house</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>very big blue house</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>house that John loves</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>big house that John loves</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>house in the city</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>big house in the city</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>rule that John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>question if John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>reason to walk</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>king John</I></TD> +</TR> +<TR> +<TD><CODE>mkCN</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A></TD> +<TD><I>old king John</I></TD> +</TR> +</TABLE> + +<A NAME="Card"></A> +<H2>Card - cardinal number</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="Cl"></A> +<H2>Cl - declarative clause, with all tenses</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>genericCl</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>one walks</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John loves her</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John sends it to her</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John wants to walk</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John says that it is good</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John wonders if it is good</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John becomes old</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John paints it red</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John tells her that we are here</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John asks her who is here</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John forces us to sleep</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is old</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is older than her</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is married to her</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is very old</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is a man</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is an old man</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is the man</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John is here</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>John walks here</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>it rains</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>it is raining</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>there is a house</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>there is an old houses</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>there are five houses</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#RS" TITLE="RS - relative">RS</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>it is John that walks</I></TD> +</TR> +<TR> +<TD><CODE>mkCl</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A></TD> +<TD><I>it is here John walks</I></TD> +</TR> +</TABLE> + +<A NAME="ClSlash"></A> +<H2>ClSlash</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkClSlash</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A></TD> +<TD><I>(whom) John loves</I></TD> +</TR> +<TR> +<TD><CODE>mkClSlash</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A></TD> +<TD><I>(whom) John wants to see</I></TD> +</TR> +<TR> +<TD><CODE>mkClSlash</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A></TD> +<TD><I>(with whom) John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkClSlash</CODE></TD> +<TD><A HREF="#ClSlash">ClSlash</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A></TD> +<TD><I>(whom) John loves today</I></TD> +</TR> +</TABLE> + +<A NAME="Comp"></A> +<H2>Comp - complement of copula, such as AP</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="Conj"></A> +<H2>Conj - conjunction</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>and_Conj</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD> +<TD><I>and</I></TD> +</TR> +<TR> +<TD><CODE>both7and_DConj</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD> +<TD><I>both...and</I></TD> +</TR> +<TR> +<TD><CODE>either7or_DConj</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD> +<TD><I>either...or</I></TD> +</TR> +<TR> +<TD><CODE>or_Conj</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A></TD> +<TD><I>or</I></TD> +</TR> +</TABLE> + +<A NAME="Det"></A> +<H2>Det - determiner phrase</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>every_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>every</I></TD> +</TR> +<TR> +<TD><CODE>few_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>few</I></TD> +</TR> +<TR> +<TD><CODE>many_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>many</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>this</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> (<A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A>) <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>this first</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>these</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-></CODE> (<A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A>) <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>these five best</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>this</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>these five</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>almost twenty</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>five</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>51</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>my (house)</I></TD> +</TR> +<TR> +<TD><CODE>mkDet</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-></CODE> <A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>my (houses)</I></TD> +</TR> +<TR> +<TD><CODE>much_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>much</I></TD> +</TR> +<TR> +<TD><CODE>somePl_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>somePl</I></TD> +</TR> +<TR> +<TD><CODE>someSg_Det</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A></TD> +<TD><I>someSg</I></TD> +</TR> +</TABLE> + +<A NAME="Dig"></A> +<H2>Dig</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>n0_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>0</I></TD> +</TR> +<TR> +<TD><CODE>n1_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>1</I></TD> +</TR> +<TR> +<TD><CODE>n2_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>2</I></TD> +</TR> +<TR> +<TD><CODE>n3_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>3</I></TD> +</TR> +<TR> +<TD><CODE>n4_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>4</I></TD> +</TR> +<TR> +<TD><CODE>n5_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>5</I></TD> +</TR> +<TR> +<TD><CODE>n6_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>6</I></TD> +</TR> +<TR> +<TD><CODE>n7_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>7</I></TD> +</TR> +<TR> +<TD><CODE>n8_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>8</I></TD> +</TR> +<TR> +<TD><CODE>n9_Dig</CODE></TD> +<TD><A HREF="#Dig">Dig</A></TD> +<TD><I>9</I></TD> +</TR> +</TABLE> + +<A NAME="Digits"></A> +<H2>Digits - cardinal or ordinal in digits</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkDigits</CODE></TD> +<TD><A HREF="#Dig">Dig</A> <CODE>-></CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>8</I></TD> +</TR> +<TR> +<TD><CODE>mkDigits</CODE></TD> +<TD><A HREF="#Dig">Dig</A> <CODE>-></CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>876</I></TD> +</TR> +<TR> +<TD><CODE>n1000_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>1,000</I></TD> +</TR> +<TR> +<TD><CODE>n100_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>100</I></TD> +</TR> +<TR> +<TD><CODE>n10_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>10</I></TD> +</TR> +<TR> +<TD><CODE>n1_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>1</I></TD> +</TR> +<TR> +<TD><CODE>n20_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>20</I></TD> +</TR> +<TR> +<TD><CODE>n2_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>2</I></TD> +</TR> +<TR> +<TD><CODE>n3_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>3</I></TD> +</TR> +<TR> +<TD><CODE>n4_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>4</I></TD> +</TR> +<TR> +<TD><CODE>n5_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>5</I></TD> +</TR> +<TR> +<TD><CODE>n6_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>6</I></TD> +</TR> +<TR> +<TD><CODE>n7_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>7</I></TD> +</TR> +<TR> +<TD><CODE>n8_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>8</I></TD> +</TR> +<TR> +<TD><CODE>n9_Digits</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A></TD> +<TD><I>9</I></TD> +</TR> +</TABLE> + +<A NAME="IAdv"></A> +<H2>IAdv - interrogative adverb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>how_IAdv</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD><I>how</I></TD> +</TR> +<TR> +<TD><CODE>mkIAdv</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD><I>in which city</I></TD> +</TR> +<TR> +<TD><CODE>when_IAdv</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD><I>when</I></TD> +</TR> +<TR> +<TD><CODE>where_IAdv</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD><I>where</I></TD> +</TR> +<TR> +<TD><CODE>why_IAdv</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A></TD> +<TD><I>why</I></TD> +</TR> +</TABLE> + +<A NAME="IComp"></A> +<H2>IComp - interrogative complement of copula</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="IDet"></A> +<H2>IDet - interrogative determiner</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>how8many_IDet</CODE></TD> +<TD><A HREF="#IDet" TITLE="IDet - interrogative determiner">IDet</A></TD> +<TD><I>how8many</I></TD> +</TR> +</TABLE> + +<A NAME="IP"></A> +<H2>IP - interrogative pronoun</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkIP</CODE></TD> +<TD><A HREF="#IQuant">IQuant</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>which city</I></TD> +</TR> +<TR> +<TD><CODE>mkIP</CODE></TD> +<TD><A HREF="#IQuant">IQuant</A> <CODE>-></CODE> (<A HREF="#Num" TITLE="Num - number determining element">Num</A>) <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>which five big cities</I></TD> +</TR> +<TR> +<TD><CODE>mkIP</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>who in Paris</I></TD> +</TR> +<TR> +<TD><CODE>whatPl_IP</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>what (plural)</I></TD> +</TR> +<TR> +<TD><CODE>whatSg_IP</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>what (singular)</I></TD> +</TR> +<TR> +<TD><CODE>whoPl_IP</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>who (plural)</I></TD> +</TR> +<TR> +<TD><CODE>whoSg_IP</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A></TD> +<TD><I>who (singular)</I></TD> +</TR> +</TABLE> + +<A NAME="IQuant"></A> +<H2>IQuant</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>which_IQuant</CODE></TD> +<TD><A HREF="#IQuant">IQuant</A></TD> +<TD><I>which</I></TD> +</TR> +</TABLE> + +<A NAME="Imp"></A> +<H2>Imp - imperative</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkImp</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD> +<TD><I>go</I></TD> +</TR> +<TR> +<TD><CODE>mkImp</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD> +<TD><I>take it</I></TD> +</TR> +<TR> +<TD><CODE>mkImp</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A></TD> +<TD><I>go there now</I></TD> +</TR> +</TABLE> + +<A NAME="ImpForm"></A> +<H2>ImpForm</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>pluralImpForm</CODE></TD> +<TD><A HREF="#ImpForm">ImpForm</A></TD> +<TD><I>(help yourselves)</I></TD> +</TR> +<TR> +<TD><CODE>politeImpForm</CODE></TD> +<TD><A HREF="#ImpForm">ImpForm</A></TD> +<TD><I>(help yourself) (polite singular)</I></TD> +</TR> +<TR> +<TD><CODE>singularImpForm</CODE></TD> +<TD><A HREF="#ImpForm">ImpForm</A></TD> +<TD><I>(help yourself) [default]</I></TD> +</TR> +</TABLE> + +<A NAME="ListAP"></A> +<H2>ListAP</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkListAP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#ListAP">ListAP</A></TD> +<TD><I>old, big</I></TD> +</TR> +<TR> +<TD><CODE>mkListAP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#ListAP">ListAP</A> <CODE>-></CODE> <A HREF="#ListAP">ListAP</A></TD> +<TD><I>old, big, warm</I></TD> +</TR> +</TABLE> + +<A NAME="ListAdv"></A> +<H2>ListAdv</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkListAdv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#ListAdv">ListAdv</A></TD> +<TD><I>here, now</I></TD> +</TR> +<TR> +<TD><CODE>mkListAdv</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#ListAdv">ListAdv</A> <CODE>-></CODE> <A HREF="#ListAdv">ListAdv</A></TD> +<TD><I>to me, here, now</I></TD> +</TR> +</TABLE> + +<A NAME="ListNP"></A> +<H2>ListNP</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkListNP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#ListNP">ListNP</A></TD> +<TD><I>John, I</I></TD> +</TR> +<TR> +<TD><CODE>mkListNP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#ListNP">ListNP</A> <CODE>-></CODE> <A HREF="#ListNP">ListNP</A></TD> +<TD><I>John, I, that</I></TD> +</TR> +</TABLE> + +<A NAME="ListS"></A> +<H2>ListS</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkListS</CODE></TD> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#ListS">ListS</A></TD> +<TD><I>he walks, I run</I></TD> +</TR> +<TR> +<TD><CODE>mkListS</CODE></TD> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#ListS">ListS</A> <CODE>-></CODE> <A HREF="#ListS">ListS</A></TD> +<TD><I>John walks, I run, you sleep</I></TD> +</TR> +</TABLE> + +<A NAME="N"></A> +<H2>N - common noun</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="N2"></A> +<H2>N2 - relational noun</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="N3"></A> +<H2>N3 - three-place relational noun</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="NP"></A> +<H2>NP - noun phrase (subject or object)</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>everybody_NP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>everybody</I></TD> +</TR> +<TR> +<TD><CODE>everything_NP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>everything</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Art" TITLE="Art - article">Art</A> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>the man</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Art" TITLE="Art - article">Art</A> <CODE>-></CODE> (<A HREF="#Num" TITLE="Num - number determining element">Num</A>) <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>the five old men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>this men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> (<A HREF="#Num" TITLE="Num - number determining element">Num</A>) <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></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>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>the first man</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>the first old man</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>twenty men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>twenty old men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>45 men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>45 old men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>almost twenty men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Card" TITLE="Card - cardinal number">Card</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>almost twenty old men</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>my man</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-></CODE> <A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>my old man</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#PN" TITLE="PN - proper name">PN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>John</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>he</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>this</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Det" TITLE="Det - determiner phrase">Det</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>these five</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>beer</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>beer</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>only John</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>John killed</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>John in Paris</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>John and I</I></TD> +</TR> +<TR> +<TD><CODE>mkNP</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#ListNP">ListNP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>John, I, and that</I></TD> +</TR> +<TR> +<TD><CODE>somebody_NP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>somebody</I></TD> +</TR> +<TR> +<TD><CODE>something_NP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A></TD> +<TD><I>something</I></TD> +</TR> +</TABLE> + +<A NAME="Num"></A> +<H2>Num - number determining element</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkNum</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD><I>twenty</I></TD> +</TR> +<TR> +<TD><CODE>mkNum</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD><I>51</I></TD> +</TR> +<TR> +<TD><CODE>mkNum</CODE></TD> +<TD><A HREF="#AdN" TITLE="AdN - numeral-modifying adverb">AdN</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A> <CODE>-></CODE> <A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD><I>almost ten</I></TD> +</TR> +<TR> +<TD><CODE>plNum</CODE></TD> +<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD><I>plural</I></TD> +</TR> +<TR> +<TD><CODE>sgNum</CODE></TD> +<TD><A HREF="#Num" TITLE="Num - number determining element">Num</A></TD> +<TD><I>singular</I></TD> +</TR> +</TABLE> + +<A NAME="Numeral"></A> +<H2>Numeral - cardinal or ordinal in words</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>n1000_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>thousand</I></TD> +</TR> +<TR> +<TD><CODE>n100_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>hundred</I></TD> +</TR> +<TR> +<TD><CODE>n10_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>ten</I></TD> +</TR> +<TR> +<TD><CODE>n1_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>one</I></TD> +</TR> +<TR> +<TD><CODE>n20_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>twenty</I></TD> +</TR> +<TR> +<TD><CODE>n2_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>two</I></TD> +</TR> +<TR> +<TD><CODE>n3_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>three</I></TD> +</TR> +<TR> +<TD><CODE>n4_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>four</I></TD> +</TR> +<TR> +<TD><CODE>n5_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>five</I></TD> +</TR> +<TR> +<TD><CODE>n6_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>six</I></TD> +</TR> +<TR> +<TD><CODE>n7_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>seven</I></TD> +</TR> +<TR> +<TD><CODE>n8_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>eight</I></TD> +</TR> +<TR> +<TD><CODE>n9_Numeral</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A></TD> +<TD><I>nine</I></TD> +</TR> +</TABLE> + +<A NAME="Ord"></A> +<H2>Ord - ordinal number (used in Det)</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkOrd</CODE></TD> +<TD><A HREF="#Numeral" TITLE="Numeral - cardinal or ordinal in words">Numeral</A> <CODE>-></CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD> +<TD><I>twentieth</I></TD> +</TR> +<TR> +<TD><CODE>mkOrd</CODE></TD> +<TD><A HREF="#Digits" TITLE="Digits - cardinal or ordinal in digits">Digits</A> <CODE>-></CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD> +<TD><I>51st</I></TD> +</TR> +<TR> +<TD><CODE>mkOrd</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Ord" TITLE="Ord - ordinal number (used in Det)">Ord</A></TD> +<TD><I>best</I></TD> +</TR> +</TABLE> + +<A NAME="PConj"></A> +<H2>PConj - phrase-beginning conjunction</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>but_PConj</CODE></TD> +<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD> +<TD><I>but</I></TD> +</TR> +<TR> +<TD><CODE>mkPConj</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD> +<TD><I>and</I></TD> +</TR> +<TR> +<TD><CODE>otherwise_PConj</CODE></TD> +<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD> +<TD><I>otherwise</I></TD> +</TR> +<TR> +<TD><CODE>therefore_PConj</CODE></TD> +<TD><A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A></TD> +<TD><I>therefore</I></TD> +</TR> +</TABLE> + +<A NAME="PN"></A> +<H2>PN - proper name</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="Phr"></A> +<H2>Phr - phrase in a text</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>why</I></TD> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD>(<A HREF="#PConj" TITLE="PConj - phrase-beginning conjunction">PConj</A>) <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-></CODE> (<A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A>) <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>but why John</I></TD> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>John walked</I></TD> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>did John walk</I></TD> +</TR> +<TR> +<TD><CODE>mkPhr</CODE></TD> +<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-></CODE> <A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A></TD> +<TD><I>walk</I></TD> +</TR> +</TABLE> + +<A NAME="Pol"></A> +<H2>Pol - polarity</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>negativePol</CODE></TD> +<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD> +<TD><I>(John doesn't walk)</I></TD> +</TR> +<TR> +<TD><CODE>positivePol</CODE></TD> +<TD><A HREF="#Pol" TITLE="Pol - polarity">Pol</A></TD> +<TD><I>(John walks) [default]</I></TD> +</TR> +</TABLE> + +<A NAME="Predet"></A> +<H2>Predet - predeterminer (prefixed Quant)</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>all_Predet</CODE></TD> +<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD> +<TD><I>all</I></TD> +</TR> +<TR> +<TD><CODE>most_Predet</CODE></TD> +<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD> +<TD><I>most</I></TD> +</TR> +<TR> +<TD><CODE>only_Predet</CODE></TD> +<TD><A HREF="#Predet" TITLE="Predet - predeterminer (prefixed Quant)">Predet</A></TD> +<TD><I>only</I></TD> +</TR> +</TABLE> + +<A NAME="Prep"></A> +<H2>Prep - preposition, or just case</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>above_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>above</I></TD> +</TR> +<TR> +<TD><CODE>after_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>after</I></TD> +</TR> +<TR> +<TD><CODE>before_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>before</I></TD> +</TR> +<TR> +<TD><CODE>behind_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>behind</I></TD> +</TR> +<TR> +<TD><CODE>between_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>between</I></TD> +</TR> +<TR> +<TD><CODE>by8agent_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>by (agent)</I></TD> +</TR> +<TR> +<TD><CODE>by8means_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>by (means of)</I></TD> +</TR> +<TR> +<TD><CODE>during_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>during</I></TD> +</TR> +<TR> +<TD><CODE>for_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>for</I></TD> +</TR> +<TR> +<TD><CODE>from_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>from</I></TD> +</TR> +<TR> +<TD><CODE>in8front_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>in front of</I></TD> +</TR> +<TR> +<TD><CODE>in_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>in</I></TD> +</TR> +<TR> +<TD><CODE>on_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>on</I></TD> +</TR> +<TR> +<TD><CODE>part_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>part</I></TD> +</TR> +<TR> +<TD><CODE>possess_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>of (possessive)</I></TD> +</TR> +<TR> +<TD><CODE>through_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>through</I></TD> +</TR> +<TR> +<TD><CODE>to_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>to</I></TD> +</TR> +<TR> +<TD><CODE>under_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>under</I></TD> +</TR> +<TR> +<TD><CODE>with_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>with</I></TD> +</TR> +<TR> +<TD><CODE>without_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +<TD><I>without</I></TD> +</TR> +</TABLE> + +<A NAME="Pron"></A> +<H2>Pron - personal pronoun</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>he_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>he</I></TD> +</TR> +<TR> +<TD><CODE>i_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>i</I></TD> +</TR> +<TR> +<TD><CODE>it_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>it</I></TD> +</TR> +<TR> +<TD><CODE>she_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>she</I></TD> +</TR> +<TR> +<TD><CODE>they_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>they</I></TD> +</TR> +<TR> +<TD><CODE>we_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>we</I></TD> +</TR> +<TR> +<TD><CODE>youPl_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>you (plural)</I></TD> +</TR> +<TR> +<TD><CODE>youPol_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>you (polite)</I></TD> +</TR> +<TR> +<TD><CODE>youSg_Pron</CODE></TD> +<TD><A HREF="#Pron" TITLE="Pron - personal pronoun">Pron</A></TD> +<TD><I>you (singular)</I></TD> +</TR> +</TABLE> + +<A NAME="Punct"></A> +<H2>Punct</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>exclMarkPunct</CODE></TD> +<TD><A HREF="#Punct">Punct</A></TD> +<TD><I>!</I></TD> +</TR> +<TR> +<TD><CODE>fullStopPunct</CODE></TD> +<TD><A HREF="#Punct">Punct</A></TD> +<TD><I>.</I></TD> +</TR> +<TR> +<TD><CODE>questMarkPunct</CODE></TD> +<TD><A HREF="#Punct">Punct</A></TD> +<TD><I>?</I></TD> +</TR> +</TABLE> + +<A NAME="QCl"></A> +<H2>QCl - question clause, with all tenses</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>does John walk</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>who walks</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>whom does John love</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>whom does John love today</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>why does John walk</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>with who does John walk</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>where is John</I></TD> +</TR> +<TR> +<TD><CODE>mkQCl</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A></TD> +<TD><I>what is there</I></TD> +</TR> +</TABLE> + +<A NAME="QS"></A> +<H2>QS - question</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkQS</CODE></TD> +<TD><A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD> +<TD><I>who walks</I></TD> +</TR> +<TR> +<TD><CODE>mkQS</CODE></TD> +<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-></CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-></CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-></CODE> <A HREF="#QCl" TITLE="QCl - question clause, with all tenses">QCl</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD> +<TD><I>who wouldn't have walked</I></TD> +</TR> +<TR> +<TD><CODE>mkQS</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A></TD> +<TD><I>does John walk</I></TD> +</TR> +</TABLE> + +<A NAME="Quant"></A> +<H2>Quant - quantifier ('nucleus' of Det)</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>that_Quant</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD> +<TD><I>that</I></TD> +</TR> +<TR> +<TD><CODE>this_Quant</CODE></TD> +<TD><A 'HREF="#Quant" TITLE="Quant - quantifier ('nucleus' of Det)"'>Quant</A></TD> +<TD><I>this</I></TD> +</TR> +</TABLE> + +<A NAME="RCl"></A> +<H2>RCl - relative clause, with all tenses</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkRCl</CODE></TD> +<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD> +<TD><I>that walk</I></TD> +</TR> +<TR> +<TD><CODE>mkRCl</CODE></TD> +<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD> +<TD><I>which John loves</I></TD> +</TR> +<TR> +<TD><CODE>mkRCl</CODE></TD> +<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-></CODE> <A HREF="#ClSlash">ClSlash</A> <CODE>-></CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD> +<TD><I>which John loves today</I></TD> +</TR> +<TR> +<TD><CODE>mkRCl</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A></TD> +<TD><I>such that John loves her</I></TD> +</TR> +</TABLE> + +<A NAME="RP"></A> +<H2>RP - relative pronoun</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkRP</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A> <CODE>-></CODE> <A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD> +<TD><I>all the houses in which</I></TD> +</TR> +<TR> +<TD><CODE>which_RP</CODE></TD> +<TD><A HREF="#RP" TITLE="RP - relative pronoun">RP</A></TD> +<TD><I>which</I></TD> +</TR> +</TABLE> + +<A NAME="RS"></A> +<H2>RS - relative</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkRS</CODE></TD> +<TD><A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A> <CODE>-></CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD> +<TD><I>that walk</I></TD> +</TR> +<TR> +<TD><CODE>mkRS</CODE></TD> +<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-></CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-></CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-></CODE> <A HREF="#RCl" TITLE="RCl - relative clause, with all tenses">RCl</A> <CODE>-></CODE> <A HREF="#RS" TITLE="RS - relative">RS</A></TD> +<TD><I>that wouldn't have walked</I></TD> +</TR> +</TABLE> + +<A NAME="S"></A> +<H2>S - declarative sentence</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkS</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD><I>John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkS</CODE></TD> +<TD>(<A HREF="#Tense" TITLE="Tense - tense">Tense</A>) <CODE>-></CODE> (<A HREF="#Ant" TITLE="Ant - anteriority">Ant</A>) <CODE>-></CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-></CODE> <A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD><I>John wouldn't have walked</I></TD> +</TR> +<TR> +<TD><CODE>mkS</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD><I>John walks and I run</I></TD> +</TR> +<TR> +<TD><CODE>mkS</CODE></TD> +<TD><A HREF="#Conj" TITLE="Conj - conjunction">Conj</A> <CODE>-></CODE> <A HREF="#ListS">ListS</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD><I>John walks, I run and you sleep</I></TD> +</TR> +<TR> +<TD><CODE>mkS</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A></TD> +<TD><I>today, John walks</I></TD> +</TR> +</TABLE> + +<A NAME="SC"></A> +<H2>SC - embedded sentence or question</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="Subj"></A> +<H2>Subj - subjunction</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>although_Subj</CODE></TD> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD> +<TD><I>although</I></TD> +</TR> +<TR> +<TD><CODE>because_Subj</CODE></TD> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD> +<TD><I>because</I></TD> +</TR> +<TR> +<TD><CODE>if_Subj</CODE></TD> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD> +<TD><I>if</I></TD> +</TR> +<TR> +<TD><CODE>when_Subj</CODE></TD> +<TD><A HREF="#Subj" TITLE="Subj - subjunction">Subj</A></TD> +<TD><I>when</I></TD> +</TR> +</TABLE> + +<A NAME="Tense"></A> +<H2>Tense - tense</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>conditionalTense</CODE></TD> +<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD> +<TD><I>(John would walk) --# notpresent</I></TD> +</TR> +<TR> +<TD><CODE>futureTense</CODE></TD> +<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD> +<TD><I>(John will walk) --# notpresent</I></TD> +</TR> +<TR> +<TD><CODE>pastTense</CODE></TD> +<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD> +<TD><I>(John walked) --# notpresent</I></TD> +</TR> +<TR> +<TD><CODE>presentTense</CODE></TD> +<TD><A HREF="#Tense" TITLE="Tense - tense">Tense</A></TD> +<TD><I>(John walks) [default]</I></TD> +</TR> +</TABLE> + +<A NAME="Text"></A> +<H2>Text - text consisting of several phrases</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>emptyText</CODE></TD> +<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>(empty text)</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>But John walks.</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Phr" TITLE="Phr - phrase in a text">Phr</A> <CODE>-></CODE> (<A HREF="#Punct">Punct</A>) <CODE>-></CODE> (<A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A>) <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>John walks? Yes.</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>John.</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>John walked.</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>John walks.</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>Did John walk?</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>Walk!</I></TD> +</TR> +<TR> +<TD><CODE>mkText</CODE></TD> +<TD><A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A> <CODE>-></CODE> <A HREF="#Text" TITLE="Text - text consisting of several phrases">Text</A></TD> +<TD><I>Where? When? Here. Now!</I></TD> +</TR> +</TABLE> + +<A NAME="Utt"></A> +<H2>Utt - sentence, question, word...</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>lets_Utt</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>let's walk</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>John walked</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#Cl" TITLE="Cl - declarative clause, with all tenses">Cl</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>John walks</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>did John walk</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>love yourself</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD>(<A HREF="#ImpForm">ImpForm</A>) <CODE>-></CODE> (<A HREF="#Pol" TITLE="Pol - polarity">Pol</A>) <CODE>-></CODE> <A HREF="#Imp" TITLE="Imp - imperative">Imp</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>don't love yourselves</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#IP" TITLE="IP - interrogative pronoun">IP</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>who</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#IAdv" TITLE="IAdv - interrogative adverb">IAdv</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>why</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>John</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>here</I></TD> +</TR> +<TR> +<TD><CODE>mkUtt</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>to walk</I></TD> +</TR> +<TR> +<TD><CODE>no_Utt</CODE></TD> +<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>no</I></TD> +</TR> +<TR> +<TD><CODE>yes_Utt</CODE></TD> +<TD><A HREF="#Utt" TITLE="Utt - sentence, question, word...">Utt</A></TD> +<TD><I>yes</I></TD> +</TR> +</TABLE> + +<A NAME="V"></A> +<H2>V - one-place verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V2"></A> +<H2>V2 - two-place verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V2A"></A> +<H2>V2A - verb with NP and AP complement</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V2Q"></A> +<H2>V2Q - verb with NP and Q complement</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V2S"></A> +<H2>V2S - verb with NP and S complement</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V2V"></A> +<H2>V2V - verb with NP and V complement</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="V3"></A> +<H2>V3 - three-place verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="VA"></A> +<H2>VA - adjective-complement verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="VP"></A> +<H2>VP - verb phrase</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>walk</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>love her</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>send it to her</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>want to walk</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>know that she walks</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>ask if she walks</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>become old</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>paint it red</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be warm</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be very warm</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be older than her</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be married to her</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be a man</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#CN" TITLE="CN - common noun (without determiner)">CN</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be an old man</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be the man</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be here</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>sleep here</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>always sleep</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>paint it black</I></TD> +</TR> +<TR> +<TD><CODE>mkVP</CODE></TD> +<TD><A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>paint itself black</I></TD> +</TR> +<TR> +<TD><CODE>passiveVP</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be loved</I></TD> +</TR> +<TR> +<TD><CODE>passiveVP</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be loved by her</I></TD> +</TR> +<TR> +<TD><CODE>progressiveVP</CODE></TD> +<TD><A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>be sleeping</I></TD> +</TR> +<TR> +<TD><CODE>reflexiveVP</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A></TD> +<TD><I>love itself</I></TD> +</TR> +</TABLE> + +<A NAME="VPSlash"></A> +<H2>VPSlash - verb phrase missing complement</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) loves</I></TD> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V3" TITLE="V3 - three-place verb">V3</A> <CODE>-></CODE> <A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) gives an apple</I></TD> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A> <CODE>-></CODE> <A HREF="#AP" TITLE="AP - adjectival phrase">AP</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) paints red</I></TD> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A> <CODE>-></CODE> <A HREF="#QS" TITLE="QS - question">QS</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) asks who sleeps</I></TD> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A> <CODE>-></CODE> <A HREF="#S" TITLE="S - declarative sentence">S</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) tells that we sleep</I></TD> +</TR> +<TR> +<TD><CODE>mkVPSlash</CODE></TD> +<TD><A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A> <CODE>-></CODE> <A HREF="#VP" TITLE="VP - verb phrase">VP</A> <CODE>-></CODE> <A HREF="#VPSlash" TITLE="VPSlash - verb phrase missing complement">VPSlash</A></TD> +<TD><I>(whom) (John) forces to sleep</I></TD> +</TR> +</TABLE> + +<A NAME="VQ"></A> +<H2>VQ - question-complement verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="VS"></A> +<H2>VS - sentence-complement verb</H2> +<P> +Lexical category, constructors given in +<A HREF="#RParadigms">lexical paradigms</A>. +</P> +<A NAME="VV"></A> +<H2>VV - verb-phrase-complement verb</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>can8know_VV</CODE></TD> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +<TD><I>can (capacity)</I></TD> +</TR> +<TR> +<TD><CODE>can_VV</CODE></TD> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +<TD><I>can (possibility)</I></TD> +</TR> +<TR> +<TD><CODE>must_VV</CODE></TD> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +<TD><I>must</I></TD> +</TR> +<TR> +<TD><CODE>want_VV</CODE></TD> +<TD><A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +<TD><I>want</I></TD> +</TR> +</TABLE> + +<A NAME="Voc"></A> +<H2>Voc - vocative or "please"</H2> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH>Type</TH> +<TH COLSPAN="2">Example</TH> +</TR> +<TR> +<TD><CODE>mkVoc</CODE></TD> +<TD><A HREF="#NP" TITLE="NP - noun phrase (subject or object)">NP</A> <CODE>-></CODE> <A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD> +<TD><I>John</I></TD> +</TR> +<TR> +<TD><CODE>please_Voc</CODE></TD> +<TD><A HREF="#Voc" TITLE="Voc - vocative or "please"">Voc</A></TD> +<TD><I>please</I></TD> +</TR> +</TABLE> + +<A NAME="toc77"></A> +<H1>Lexical Paradigms</H1> +<A NAME="toc78"></A> +<H2>Paradigms for Bulgarian</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../bulgarian/ParadigmsBul.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/bulgarian/ParadigmsBul.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>mkN001</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN002</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN002a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN003</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN004</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN005</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN006</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN007</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN007b</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN007a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN008</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN008a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN009</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN009a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN010</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN011</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN012</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN013</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN014</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN014a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN015</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN016</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN017</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN018</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN018a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN019</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN019a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN020</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN021</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN022</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN023</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN024a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN024</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN025</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN026</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN027</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN028</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN028a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN029</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN030</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN031</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN031a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN032</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN032a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN033</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN034</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN035</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN035a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN036</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN037</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN038</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN039</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN040</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN040a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN041</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN041a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN041b</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN042</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN043</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN043a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN044</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN045</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN046</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN047</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN048</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN049</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN050</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN051</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN052</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN052a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN053</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN054</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN055</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN056</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN057</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN057a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN058</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN059</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN060</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN061</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN062</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN063</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN064</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN065</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN066</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN067</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN068</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN069</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN070</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN071</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN072</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN073</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN074</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN075</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkA076</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA077</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA078</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA079</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA080</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA081</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA082</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA082a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA083</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA084</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA084a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA085</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA086</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA087</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA088</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA089</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA089a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkV142</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV143</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV144</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV145</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV145a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV145b</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV146</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV146a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV147</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV148</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV149</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV150</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV150a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV151</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV152</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV152a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV153</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV154</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV155</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV156</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV157</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV158</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV159</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV160</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV160a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV161</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV161a</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV162</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV163</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV164</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV165</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV166</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV167</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV168</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV169</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV170</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV171</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV172</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV173</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV174</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV175</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV176</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV177</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV178</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV179</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV180</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV181</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV182</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV183</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV184</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV185</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV186</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>mkV187</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#VTable">VTable</A></TD> +</TR> +<TR> +<TD><CODE>adjAdv</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>=</CODE></TD> +</TR> +</TABLE> + +<A NAME="toc79"></A> +<H2>Paradigms for Danish</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../danish/ParadigmsDan.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/danish/ParadigmsDan.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>utrum</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>neutrum</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>noPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(bil</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(hus</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(bil,bilen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(bil,bilen,biler</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(dreng,drengen,drenge,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>regN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>vaereV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>depV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc80"></A> +<H2>Paradigms for English</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../english/ParadigmsEng.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/english/ParadigmsEng.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>human</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>nonhuman</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(flash</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(man,men</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(man,men,man's,men's</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>regN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(happy</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(fat,fatter</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(good,better,best,well</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>compoundA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>noPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(cry</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(stop,</CODE> <CODE>stopped</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(drink,</CODE> <CODE>drank,</CODE> <CODE>drunk</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(run,</CODE> <CODE>ran,</CODE> <CODE>run,</CODE> <CODE>running</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(go,</CODE> <CODE>goes,</CODE> <CODE>went,</CODE> <CODE>gone,</CODE> <CODE>going</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>partV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc81"></A> +<H2>Paradigms for Finnish</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../finnish/ParadigmsFin.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/finnish/ParadigmsFin.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>partitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>translative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>inessive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>elative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>illative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>adessive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>ablative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>allative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>prePrep</CODE></TD> +<TD><A HREF="#Case">Case</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>postPrep</CODE></TD> +<TD><A HREF="#Case">Case</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>postGenPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>casePrep</CODE></TD> +<TD><A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(talo</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(savi,savia</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(vesi,veden,vesi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(vesi,veden,vesi,vett</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(olo,olon,olona,oloa,oloon,olojen,oloja,oloina,oloissa,oloihin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(pika</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <CODE>(juna</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(oma</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-></CODE> <CODE>(tunto</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <CODE>(kivempaa,kivinta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(hyva,parempi,paras</CODE> <CODE>:</CODE> <CODE>N)</CODE> <CODE>-></CODE> <CODE>(hyvin,paremmin,parhaiten</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A> <CODE>=</CODE> <CODE>\a,p</CODE> <CODE>-></CODE> <CODE>a</CODE> <CODE>**</CODE> <CODE>{c2</CODE> <CODE>=</CODE> <CODE>p</CODE> <CODE>lock_A2</CODE> <CODE>=</CODE> <CODE><>};</CODE></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(huutaa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(huutaa,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(huutaa,huudan,huusi</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(</CODE></TD> +</TR> +<TR> +<TD><CODE>huusin,huusi,huusisi,huutanut,huudettu,huutanee</CODE></TD> +<TD><CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>caseV</CODE></TD> +<TD><A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>vOlla</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkVVf</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#InfForm">InfForm</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Vf</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#InfForm">InfForm</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc82"></A> +<H2>Paradigms for French</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../french/ParadigmsFre.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/french/ParadigmsFre.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>accusative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>dative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(cheval</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(foie</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(oeil,yeux</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>deN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>aN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(cher</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(sec,seche</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(banal,banale,banaux,banalement</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>prefixA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(finir</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(jeter,jette,jettera</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>etreV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>=</CODE> <CODE>dirV2</CODE></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>=</CODE> <CODE>mmkV2</CODE></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>deVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>aVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc83"></A> +<H2>Paradigms for German</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../german/ParadigmsGer.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/german/ParadigmsGer.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>neuter</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>accusative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>dative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(Stufe</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(Bild,Bilder</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(x1,_,_,_,_,x6</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>(nom,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>(nom,acc,dat,gen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(gut,besser,beste</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>invarA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>accPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>datPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>genPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>von_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>zu_Prep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(fhren</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(sehen,sieht,sah,she,gesehen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(geben,</CODE> <CODE>gibt,</CODE> <CODE>gib,</CODE> <CODE>gab,</CODE> <CODE>gbe,</CODE> <CODE>gegeben</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>no_geV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>seinV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>habenV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>accdatV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc84"></A> +<H2>Paradigms for Italian</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../italian/ParadigmsIta.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/italian/ParadigmsIta.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>--Prep</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>accusative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>dative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(cane</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(carne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(uomo,uomini</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(bianco</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(solo,sola,soli,sole,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>prefixA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>=</CODE> <CODE>prefA</CODE></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#Verbo">Verbo</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(udire,odo,ode,udiamo,udiro,udii,udisti,udi,udirono,odi,udito</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>essereV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>v2V</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>deVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>aVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc85"></A> +<H2>Paradigms for Norwegian</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../norwegian/ParadigmsNor.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/norwegian/ParadigmsNor.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>neutrum</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>noPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(bil,bilen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(dreng,drengen,drenger,drengene</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>regN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(fin</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(fin,fint</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(galen,galet,galne</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(stor,stort,store,storre,storst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(snakke</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(leve,levde</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(drikke,</CODE> <CODE>drakk,</CODE> <CODE>drukket</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(spise,spiser,spises,spiste,spist,spis</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>vaereV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>depV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc86"></A> +<H2>Paradigms for Russian</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../russian/ParadigmsRus.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/russian/ParadigmsRus.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>neuter</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>dative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>accusative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>instructive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>prepositional</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(karta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(tigr</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Animacy">Animacy</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(nomSg,</CODE> <CODE>genSg,</CODE> <CODE>datSg,</CODE> <CODE>accSg,</CODE> <CODE>instSg,</CODE> <CODE>preposSg,</CODE> <CODE>prepos2Sg,</CODE> <CODE>nomPl,</CODE> <CODE>genPl,</CODE> <CODE>datPl,</CODE> <CODE>accPl,</CODE> <CODE>instPl,</CODE> <CODE>preposPl</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#Animacy">Animacy</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#Animacy">Animacy</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>nounPN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(positive</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(positive,</CODE> <CODE>comparative</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#Aspect">Aspect</A> <CODE>-></CODE> <CODE>(presentSgP1,presentSgP2,presentSgP3,</CODE></TD> +</TR> +<TR> +<TD><CODE>pastSgP1,imperative,infinitive</CODE></TD> +<TD><CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#Case">Case</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>tvDirDir</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +</TABLE> + +<A NAME="toc87"></A> +<H2>Paradigms for Spanish</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../spanish/ParadigmsSpa.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/spanish/ParadigmsSpa.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>masculine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>feminine</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>accusative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>dative</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(luz</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(baston,bastones</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>compN</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>deN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>aN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>(Anna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>(Pilar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(util</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(solo,sola,solos,solas,solamente</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(bueno</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-></CODE> <CODE>(mejor</CODE> <CODE>:</CODE> <CODE>A)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>prefixA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(pagar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(mostrar,muestro</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#Verbum">Verbum</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>special_ppV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>v2V</CODE></TD> +<TD><A HREF="#V2" TITLE="V2 - two-place verb">V2</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>dirdirV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>deVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>aVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc88"></A> +<H2>Paradigms for Swedish</H2> +<P> +<a name="RParadigms"></a> +</P> +<P> +source <A HREF="../swedish/ParadigmsSwe.gf"><CODE>http://www.cs.chalmers.se/~aarne/GF/lib/resource/swedish/ParadigmsSwe.gf</CODE></A> +</P> +<TABLE CELLPADDING="4" BORDER="1"> +<TR> +<TH>Function</TH> +<TH COLSPAN="2">Type</TH> +</TR> +<TR> +<TD><CODE>Gender</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>utrum</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>neutrum</CODE></TD> +<TD><A HREF="#Gender">Gender</A></TD> +</TR> +<TR> +<TD><CODE>Number</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>singular</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>plural</CODE></TD> +<TD><A HREF="#Number">Number</A></TD> +</TR> +<TR> +<TD><CODE>Case</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +<TR> +<TD><CODE>nominative</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>genitive</CODE></TD> +<TD><A HREF="#Case">Case</A></TD> +</TR> +<TR> +<TD><CODE>mkPrep</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>noPrep</CODE></TD> +<TD><A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(apa</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(lik</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(nyckel,nycklar</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN</CODE></TD> +<TD><CODE>(museum,museet,museer,museerna</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#N" TITLE="N - common noun">N</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN2</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N2" TITLE="N2 - relational noun">N2</A></TD> +</TR> +<TR> +<TD><CODE>mkN3</CODE></TD> +<TD><A HREF="#N" TITLE="N - common noun">N</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#N3" TITLE="N3 - three-place relational noun">N3</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkPN</CODE></TD> +<TD><CODE>(jesus,jesu</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#Gender">Gender</A> <CODE>-></CODE> <A HREF="#PN" TITLE="PN - proper name">PN</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(billig</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(bred,brett</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(tung,tyngre,tyngst</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(god,gott,goda,battre,bast</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA</CODE></TD> +<TD><CODE>(liten,litet,lilla,sma,mindre,minst,minsta</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>compoundA</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#A" TITLE="A - one-place adjective">A</A></TD> +</TR> +<TR> +<TD><CODE>mkA2</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2" TITLE="A2 - two-place adjective">A2</A></TD> +</TR> +<TR> +<TD><CODE>mkAdv</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#Adv" TITLE="Adv - verb-phrase-modifying adverb">Adv</A></TD> +</TR> +<TR> +<TD><CODE>mkAdV</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdV" TITLE="Adv - verb-phrase-modifying adverb">AdV</A></TD> +</TR> +<TR> +<TD><CODE>mkAdA</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#AdA" TITLE="AdA - adjective-modifying adverb">AdA</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(stmmer</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(dricka,drack,druckit</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><CODE>(g,gr,g,gick,gtt,gngen</CODE> <CODE>:</CODE> <CODE>Str)</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>depV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>reflV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V" TITLE="V - one-place verb">V</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV2</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2" TITLE="V2 - two-place verb">V2</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><CODE>Str</CODE> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV3</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V3" TITLE="V3 - three-place verb">V3</A></TD> +</TR> +<TR> +<TD><CODE>mkV0</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#V0">V0</A></TD> +</TR> +<TR> +<TD><CODE>mkVS</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VS" TITLE="VS - sentence-complement verb">VS</A></TD> +</TR> +<TR> +<TD><CODE>mkV2S</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2S" TITLE="V2S - verb with NP and S complement">V2S</A></TD> +</TR> +<TR> +<TD><CODE>mkVV</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VV" TITLE="VV - verb-phrase-complement verb">VV</A></TD> +</TR> +<TR> +<TD><CODE>mkV2V</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2V" TITLE="V2V - verb with NP and V complement">V2V</A></TD> +</TR> +<TR> +<TD><CODE>mkVA</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VA" TITLE="VA - adjective-complement verb">VA</A></TD> +</TR> +<TR> +<TD><CODE>mkV2A</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2A" TITLE="V2A - verb with NP and AP complement">V2A</A></TD> +</TR> +<TR> +<TD><CODE>mkVQ</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#VQ" TITLE="VQ - question-complement verb">VQ</A></TD> +</TR> +<TR> +<TD><CODE>mkV2Q</CODE></TD> +<TD><A HREF="#V" TITLE="V - one-place verb">V</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#V2Q" TITLE="V2Q - verb with NP and Q complement">V2Q</A></TD> +</TR> +<TR> +<TD><CODE>mkAS</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AS">AS</A></TD> +</TR> +<TR> +<TD><CODE>mkA2S</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2S">A2S</A></TD> +</TR> +<TR> +<TD><CODE>mkAV</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#AV">AV</A></TD> +</TR> +<TR> +<TD><CODE>mkA2V</CODE></TD> +<TD><A HREF="#A" TITLE="A - one-place adjective">A</A> <CODE>-></CODE> <A HREF="#Prep" TITLE="Prep - preposition, or just case">Prep</A> <CODE>-></CODE> <A HREF="#A2V">A2V</A></TD> +</TR> +<TR> +<TD><CODE>V0</CODE></TD> +<TD><A HREF="#Type">Type</A></TD> +</TR> +</TABLE> + +<A NAME="toc89"></A> +<H1>Browsing the libraries with GF commands</H1> +<P> +<B>New</B>: Browsing by syntax editor +<A HREF="../../../demos/resource-api/editor.html">directly on the web</A>. +</P> +<P> +All of the following assume +</P> +<PRE> + cd $GF_LIB_PATH +</PRE> +<P> +To try out inflection paradigms: +</P> +<PRE> + > i -path=alltenses -retain alltenses/ParadigmsGer.gfo + > cc mkN "Farbe" +</PRE> +<P> +To try out overloaded syntax, test lexicon, and inflection paradigms: +</P> +<PRE> + > i -path=alltenses -retain alltenses/TryGer.gfo + > cc mkCl (mkNP this_Quant (mkN "Farbe")) (mkA "dunkel") +</PRE> +<P></P> +<A NAME="toc90"></A> +<H1>An Example of Usage</H1> +<P> +The standard way of building an application has the following modules. +</P> +<P> +An abstract syntax: +</P> +<PRE> + abstract Music = { + cat + Kind, + Property ; + fun + PropKind : Kind -> Property -> Kind ; + Song : Kind ; + American : Property ; + } +</PRE> +<P> +A domain lexicon interface: +</P> +<PRE> + interface LexMusic = open Cat in { + oper + song_N : N ; + american_A : A ; + } +</PRE> +<P> +A functor on <CODE>Syntax</CODE> and the domain lexicon interface: +</P> +<PRE> + incomplete concrete MusicI of Music = open Syntax, MusicLex in { + lincat + Kind = CN ; + Property = AP ; + lin + PropKind k p = mkCN p k ; + Song = mkCN song_N ; + American = mkAP american_A ; + } +</PRE> +<P> +For each language, an instance of the domain lexicon: +</P> +<PRE> + instance LexMusicGer of LexMusic = CatGer ** open ParadigmsGer in { + oper + song_N = mkN "Lied" "Lieder" neuter ; + american_A = mkA "amerikanisch" ; + } +</PRE> +<P> +For each language, an instantiation of the functor: +</P> +<PRE> + --# -path=.:present:prelude + + concrete MusicGer of Music = MusicI with + (Syntax = SyntaxGer), + (LexMusic = LexMusicGer) ; +</PRE> +<P></P> + +<!-- html code generated by txt2tags 2.4 (http://txt2tags.sf.net) --> +<!-- cmdline: txt2tags -thtml -\-toc synopsis.txt --> +</BODY></HTML> diff --git a/deprecated/old-lib/resource/doc/synopsis.txt b/deprecated/old-lib/resource/doc/synopsis.txt new file mode 100644 index 000000000..3ed9e21a9 --- /dev/null +++ b/deprecated/old-lib/resource/doc/synopsis.txt @@ -0,0 +1,1544 @@ +GF Resource Grammar Library: Synopsis +B. Bringert and A. Ranta + + +%!postproc(html): '(SRC="categories.png")' '\1 USEMAP="#categories"' +%!postproc(html): '#LParadigms' '<a name="RParadigms"></a>' +%!postproc(tex): '#LParadigms' '' +%!postproc(html): '(?i)(HREF="#A")( TITLE="[^"]*")?' '\1 TITLE="A - one-place adjective"' +%!postproc(html): '(?i)(HREF="#A2")( TITLE="[^"]*")?' '\1 TITLE="A2 - two-place adjective"' +%!postproc(html): '(?i)(HREF="#AP")( TITLE="[^"]*")?' '\1 TITLE="AP - adjectival phrase"' +%!postproc(html): '(?i)(HREF="#AdA")( TITLE="[^"]*")?' '\1 TITLE="AdA - adjective-modifying adverb"' +%!postproc(html): '(?i)(HREF="#AdN")( TITLE="[^"]*")?' '\1 TITLE="AdN - numeral-modifying adverb"' +%!postproc(html): '(?i)(HREF="#AdV")( TITLE="[^"]*")?' '\1 TITLE="AdV - adverb directly attached to verb"' +%!postproc(html): '(?i)(HREF="#Adv")( TITLE="[^"]*")?' '\1 TITLE="Adv - verb-phrase-modifying adverb"' +%!postproc(html): '(?i)(HREF="#Ant")( TITLE="[^"]*")?' '\1 TITLE="Ant - anteriority"' +%!postproc(html): '(?i)(HREF="#Art")( TITLE="[^"]*")?' '\1 TITLE="Art - article"' +%!postproc(html): '(?i)(HREF="#CAdv")( TITLE="[^"]*")?' '\1 TITLE="CAdv - comparative adverb"' +%!postproc(html): '(?i)(HREF="#CN")( TITLE="[^"]*")?' '\1 TITLE="CN - common noun (without determiner)"' +%!postproc(html): '(?i)(HREF="#Card")( TITLE="[^"]*")?' '\1 TITLE="Card - cardinal number"' +%!postproc(html): '(?i)(HREF="#Cl")( TITLE="[^"]*")?' '\1 TITLE="Cl - declarative clause, with all tenses"' +%!postproc(html): '(?i)(HREF="#Comp")( TITLE="[^"]*")?' '\1 TITLE="Comp - complement of copula, such as AP"' +%!postproc(html): '(?i)(HREF="#Conj")( TITLE="[^"]*")?' '\1 TITLE="Conj - conjunction"' +%!postproc(html): '(?i)(HREF="#Det")( TITLE="[^"]*")?' '\1 TITLE="Det - determiner phrase"' +%!postproc(html): '(?i)(HREF="#Digits")( TITLE="[^"]*")?' '\1 TITLE="Digits - cardinal or ordinal in digits"' +%!postproc(html): '(?i)(HREF="#IAdv")( TITLE="[^"]*")?' '\1 TITLE="IAdv - interrogative adverb"' +%!postproc(html): '(?i)(HREF="#IComp")( TITLE="[^"]*")?' '\1 TITLE="IComp - interrogative complement of copula"' +%!postproc(html): '(?i)(HREF="#IDet")( TITLE="[^"]*")?' '\1 TITLE="IDet - interrogative determiner"' +%!postproc(html): '(?i)(HREF="#IP")( TITLE="[^"]*")?' '\1 TITLE="IP - interrogative pronoun"' +%!postproc(html): '(?i)(HREF="#Imp")( TITLE="[^"]*")?' '\1 TITLE="Imp - imperative"' +%!postproc(html): '(?i)(HREF="#N")( TITLE="[^"]*")?' '\1 TITLE="N - common noun"' +%!postproc(html): '(?i)(HREF="#N2")( TITLE="[^"]*")?' '\1 TITLE="N2 - relational noun"' +%!postproc(html): '(?i)(HREF="#N3")( TITLE="[^"]*")?' '\1 TITLE="N3 - three-place relational noun"' +%!postproc(html): '(?i)(HREF="#NP")( TITLE="[^"]*")?' '\1 TITLE="NP - noun phrase (subject or object)"' +%!postproc(html): '(?i)(HREF="#Num")( TITLE="[^"]*")?' '\1 TITLE="Num - number determining element"' +%!postproc(html): '(?i)(HREF="#Numeral")( TITLE="[^"]*")?' '\1 TITLE="Numeral - cardinal or ordinal in words"' +%!postproc(html): '(?i)(HREF="#Ord")( TITLE="[^"]*")?' '\1 TITLE="Ord - ordinal number (used in Det)"' +%!postproc(html): '(?i)(HREF="#PConj")( TITLE="[^"]*")?' '\1 TITLE="PConj - phrase-beginning conjunction"' +%!postproc(html): '(?i)(HREF="#PN")( TITLE="[^"]*")?' '\1 TITLE="PN - proper name"' +%!postproc(html): '(?i)(HREF="#Phr")( TITLE="[^"]*")?' '\1 TITLE="Phr - phrase in a text"' +%!postproc(html): '(?i)(HREF="#Pol")( TITLE="[^"]*")?' '\1 TITLE="Pol - polarity"' +%!postproc(html): '(?i)(HREF="#Predet")( TITLE="[^"]*")?' '\1 TITLE="Predet - predeterminer (prefixed Quant)"' +%!postproc(html): '(?i)(HREF="#Prep")( TITLE="[^"]*")?' '\1 TITLE="Prep - preposition, or just case"' +%!postproc(html): '(?i)(HREF="#Pron")( TITLE="[^"]*")?' '\1 TITLE="Pron - personal pronoun"' +%!postproc(html): '(?i)(HREF="#QCl")( TITLE="[^"]*")?' '\1 TITLE="QCl - question clause, with all tenses"' +%!postproc(html): '(?i)(HREF="#QS")( TITLE="[^"]*")?' '\1 TITLE="QS - question"' +%!postproc(html): '(?i)(HREF="#Quant")( TITLE="[^"]*")?' '\1 TITLE="Quant - quantifier ('nucleus' of Det)"' +%!postproc(html): '(?i)(HREF="#RCl")( TITLE="[^"]*")?' '\1 TITLE="RCl - relative clause, with all tenses"' +%!postproc(html): '(?i)(HREF="#RP")( TITLE="[^"]*")?' '\1 TITLE="RP - relative pronoun"' +%!postproc(html): '(?i)(HREF="#RS")( TITLE="[^"]*")?' '\1 TITLE="RS - relative"' +%!postproc(html): '(?i)(HREF="#S")( TITLE="[^"]*")?' '\1 TITLE="S - declarative sentence"' +%!postproc(html): '(?i)(HREF="#SC")( TITLE="[^"]*")?' '\1 TITLE="SC - embedded sentence or question"' +%!postproc(html): '(?i)(HREF="#Subj")( TITLE="[^"]*")?' '\1 TITLE="Subj - subjunction"' +%!postproc(html): '(?i)(HREF="#Tense")( TITLE="[^"]*")?' '\1 TITLE="Tense - tense"' +%!postproc(html): '(?i)(HREF="#Text")( TITLE="[^"]*")?' '\1 TITLE="Text - text consisting of several phrases"' +%!postproc(html): '(?i)(HREF="#Utt")( TITLE="[^"]*")?' '\1 TITLE="Utt - sentence, question, word..."' +%!postproc(html): '(?i)(HREF="#V")( TITLE="[^"]*")?' '\1 TITLE="V - one-place verb"' +%!postproc(html): '(?i)(HREF="#V2")( TITLE="[^"]*")?' '\1 TITLE="V2 - two-place verb"' +%!postproc(html): '(?i)(HREF="#V2A")( TITLE="[^"]*")?' '\1 TITLE="V2A - verb with NP and AP complement"' +%!postproc(html): '(?i)(HREF="#V2Q")( TITLE="[^"]*")?' '\1 TITLE="V2Q - verb with NP and Q complement"' +%!postproc(html): '(?i)(HREF="#V2S")( TITLE="[^"]*")?' '\1 TITLE="V2S - verb with NP and S complement"' +%!postproc(html): '(?i)(HREF="#V2V")( TITLE="[^"]*")?' '\1 TITLE="V2V - verb with NP and V complement"' +%!postproc(html): '(?i)(HREF="#V3")( TITLE="[^"]*")?' '\1 TITLE="V3 - three-place verb"' +%!postproc(html): '(?i)(HREF="#VA")( TITLE="[^"]*")?' '\1 TITLE="VA - adjective-complement verb"' +%!postproc(html): '(?i)(HREF="#VP")( TITLE="[^"]*")?' '\1 TITLE="VP - verb phrase"' +%!postproc(html): '(?i)(HREF="#VPSlash")( TITLE="[^"]*")?' '\1 TITLE="VPSlash - verb phrase missing complement"' +%!postproc(html): '(?i)(HREF="#VQ")( TITLE="[^"]*")?' '\1 TITLE="VQ - question-complement verb"' +%!postproc(html): '(?i)(HREF="#VS")( TITLE="[^"]*")?' '\1 TITLE="VS - sentence-complement verb"' +%!postproc(html): '(?i)(HREF="#VV")( TITLE="[^"]*")?' '\1 TITLE="VV - verb-phrase-complement verb"' +%!postproc(html): '(?i)(HREF="#Voc")( TITLE="[^"]*")?' '\1 TITLE="Voc - vocative or "please""' +%!include: synopsis-intro.txt +=Categories= + + +Source 1: [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Common.gf`` ../abstract/Common.gf] + + +Source 2: [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Cat.gf`` ../abstract/Cat.gf] + + +==A hierarchic view== + +%!include: categories-intro.txt +==Explanations== + +|| Category | Explanation | Example || +| [A #A] | one-place adjective | //warm// | +| [A2 #A2] | two-place adjective | //divisible// | +| [AP #AP] | adjectival phrase | //very warm// | +| [AdA #AdA] | adjective-modifying adverb | //very// | +| [AdN #AdN] | numeral-modifying adverb | //more than// | +| [AdV #AdV] | adverb directly attached to verb | //always// | +| [Adv #Adv] | verb-phrase-modifying adverb | //in the house// | +| [Ant #Ant] | anteriority | simultaneous, anterior | +| [Art #Art] | article | //the// | +| [CAdv #CAdv] | comparative adverb | //more// | +| [CN #CN] | common noun (without determiner) | //red house// | +| [Card #Card] | cardinal number | //seven// | +| [Cl #Cl] | declarative clause, with all tenses | //she looks at this// | +| [Comp #Comp] | complement of copula, such as AP | //very warm// | +| [Conj #Conj] | conjunction | //and// | +| [Det #Det] | determiner phrase | //those seven// | +| [Digits #Digits] | cardinal or ordinal in digits | //1,000/1,000th// | +| [IAdv #IAdv] | interrogative adverb | //why// | +| [IComp #IComp] | interrogative complement of copula | //where// | +| [IDet #IDet] | interrogative determiner | //how many// | +| [IP #IP] | interrogative pronoun | //who// | +| [Imp #Imp] | imperative | //look at this// | +| [N #N] | common noun | //house// | +| [N2 #N2] | relational noun | //son// | +| [N3 #N3] | three-place relational noun | //connection// | +| [NP #NP] | noun phrase (subject or object) | //the red house// | +| [Num #Num] | number determining element | //seven// | +| [Numeral #Numeral] | cardinal or ordinal in words | //five/fifth// | +| [Ord #Ord] | ordinal number (used in Det) | //seventh// | +| [PConj #PConj] | phrase-beginning conjunction | //therefore// | +| [PN #PN] | proper name | //Paris// | +| [Phr #Phr] | phrase in a text | //but be quiet please// | +| [Pol #Pol] | polarity | positive, negative | +| [Predet #Predet] | predeterminer (prefixed Quant) | //all// | +| [Prep #Prep] | preposition, or just case | //in// | +| [Pron #Pron] | personal pronoun | //she// | +| [QCl #QCl] | question clause, with all tenses | //why does she walk// | +| [QS #QS] | question | //where did she live// | +| [Quant #Quant] | quantifier ('nucleus' of Det) | //this/these// | +| [RCl #RCl] | relative clause, with all tenses | //in which she lives// | +| [RP #RP] | relative pronoun | //in which// | +| [RS #RS] | relative | //in which she lived// | +| [S #S] | declarative sentence | //she lived here// | +| [SC #SC] | embedded sentence or question | //that it rains// | +| [Subj #Subj] | subjunction | //if// | +| [Tense #Tense] | tense | present, past, future | +| [Text #Text] | text consisting of several phrases | //He is here. Why?// | +| [Utt #Utt] | sentence, question, word... | //be quiet// | +| [V #V] | one-place verb | //sleep// | +| [V2 #V2] | two-place verb | //love// | +| [V2A #V2A] | verb with NP and AP complement | //paint// | +| [V2Q #V2Q] | verb with NP and Q complement | //ask// | +| [V2S #V2S] | verb with NP and S complement | //tell// | +| [V2V #V2V] | verb with NP and V complement | //cause// | +| [V3 #V3] | three-place verb | //show// | +| [VA #VA] | adjective-complement verb | //look// | +| [VP #VP] | verb phrase | //is very warm// | +| [VPSlash #VPSlash] | verb phrase missing complement | //give to John// | +| [VQ #VQ] | question-complement verb | //wonder// | +| [VS #VS] | sentence-complement verb | //claim// | +| [VV #VV] | verb-phrase-complement verb | //want// | +| [Voc #Voc] | vocative or "please" | //my darling// | + + +=Syntax Rules and Structural Words= + + +Source 1: [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/api/Constructors.gf`` ../api/Constructors.gf] + + +Source 2: [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/abstract/Structural.gf`` ../abstract/Structural.gf] + + +==A - one-place adjective==[A] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==A2 - two-place adjective==[A2] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==AP - adjectival phrase==[AP] +|| Function | Type | Example || +| ``mkAP`` | [A #A] ``->`` [AP #AP] | //old// | +| ``mkAP`` | [A #A] ``->`` [NP #NP] ``->`` [AP #AP] | //older than John// | +| ``mkAP`` | [A2 #A2] ``->`` [NP #NP] ``->`` [AP #AP] | //married to her// | +| ``mkAP`` | [A2 #A2] ``->`` [AP #AP] | //married to myself// | +| ``mkAP`` | [AP #AP] ``->`` [S #S] ``->`` [AP #AP] | //probable that John walks// | +| ``mkAP`` | [AP #AP] ``->`` [QS #QS] ``->`` [AP #AP] | //uncertain if John walks// | +| ``mkAP`` | [AP #AP] ``->`` [VP #VP] ``->`` [AP #AP] | //ready to go// | +| ``mkAP`` | [AdA #AdA] ``->`` [A #A] ``->`` [AP #AP] | //very old// | +| ``mkAP`` | [AdA #AdA] ``->`` [AP #AP] ``->`` [AP #AP] | //very very old// | +| ``mkAP`` | [Conj #Conj] ``->`` [AP #AP] ``->`` [AP #AP] ``->`` [AP #AP] | //old and big// | +| ``mkAP`` | [Conj #Conj] ``->`` [ListAP #ListAP] ``->`` [AP #AP] | //old, big, and warm// | +==AdA - adjective-modifying adverb==[AdA] +|| Function | Type | Example || +| ``almost_AdA`` | [AdA #AdA] | //almost// | +| ``quite_Adv`` | [AdA #AdA] | //quite// | +| ``so_AdA`` | [AdA #AdA] | //so// | +| ``too_AdA`` | [AdA #AdA] | //too// | +| ``very_AdA`` | [AdA #AdA] | //very// | +==AdN - numeral-modifying adverb==[AdN] +|| Function | Type | Example || +| ``almost_AdN`` | [AdN #AdN] | //almost// | +| ``mkAdN`` | [CAdv #CAdv] ``->`` [AdN #AdN] | //more than// | +==AdV - adverb directly attached to verb==[AdV] +|| Function | Type | Example || +| ``always_AdV`` | [AdV #AdV] | //always// | +==Adv - verb-phrase-modifying adverb==[Adv] +|| Function | Type | Example || +| ``everywhere_Adv`` | [Adv #Adv] | //everywhere// | +| ``here7from_Adv`` | [Adv #Adv] | //from here// | +| ``here7to_Adv`` | [Adv #Adv] | //to here// | +| ``here_Adv`` | [Adv #Adv] | //here// | +| ``mkAdv`` | [A #A] ``->`` [Adv #Adv] | //warmly// | +| ``mkAdv`` | [Prep #Prep] ``->`` [NP #NP] ``->`` [Adv #Adv] | //with John// | +| ``mkAdv`` | [Subj #Subj] ``->`` [S #S] ``->`` [Adv #Adv] | //when John walks// | +| ``mkAdv`` | [CAdv #CAdv] ``->`` [A #A] ``->`` [NP #NP] ``->`` [Adv #Adv] | //more warmly than John// | +| ``mkAdv`` | [CAdv #CAdv] ``->`` [A #A] ``->`` [S #S] ``->`` [Adv #Adv] | //more warmly than John walks// | +| ``mkAdv`` | [AdA #AdA] ``->`` [Adv #Adv] ``->`` [Adv #Adv] | //very warmly// | +| ``mkAdv`` | [Conj #Conj] ``->`` [Adv #Adv] ``->`` [Adv #Adv] ``->`` [Adv #Adv] | //here and now// | +| ``mkAdv`` | [Conj #Conj] ``->`` [ListAdv #ListAdv] ``->`` [Adv #Adv] | //with John, here and now// | +| ``somewhere_Adv`` | [Adv #Adv] | //somewhere// | +| ``there7from_Adv`` | [Adv #Adv] | //from there// | +| ``there7to_Adv`` | [Adv #Adv] | //to there// | +| ``there_Adv`` | [Adv #Adv] | //there// | +==Ant - anteriority==[Ant] +|| Function | Type | Example || +| ``anteriorAnt`` | [Ant #Ant] | //(John has walked) --# notpresent// | +| ``simultaneousAnt`` | [Ant #Ant] | //(John walks) [default]// | +==Art - article==[Art] +|| Function | Type | Example || +| ``a_Art`` | [Art #Art] | //a// | +| ``the_Art`` | [Art #Art] | //the// | +==CAdv - comparative adverb==[CAdv] +|| Function | Type | Example || +| ``less_CAdv`` | [CAdv #CAdv] | //less// | +| ``more_CAdv`` | [CAdv #CAdv] | //more// | +==CN - common noun (without determiner)==[CN] +|| Function | Type | Example || +| ``mkCN`` | [N #N] ``->`` [CN #CN] | //house// | +| ``mkCN`` | [N2 #N2] ``->`` [NP #NP] ``->`` [CN #CN] | //mother of John// | +| ``mkCN`` | [N3 #N3] ``->`` [NP #NP] ``->`` [NP #NP] ``->`` [CN #CN] | //distance from this city to Paris// | +| ``mkCN`` | [N2 #N2] ``->`` [CN #CN] | //son// | +| ``mkCN`` | [N3 #N3] ``->`` [CN #CN] | //flight// | +| ``mkCN`` | [A #A] ``->`` [N #N] ``->`` [CN #CN] | //big house// | +| ``mkCN`` | [A #A] ``->`` [CN #CN] ``->`` [CN #CN] | //big blue house// | +| ``mkCN`` | [AP #AP] ``->`` [N #N] ``->`` [CN #CN] | //very big house// | +| ``mkCN`` | [AP #AP] ``->`` [CN #CN] ``->`` [CN #CN] | //very big blue house// | +| ``mkCN`` | [N #N] ``->`` [RS #RS] ``->`` [CN #CN] | //house that John loves// | +| ``mkCN`` | [CN #CN] ``->`` [RS #RS] ``->`` [CN #CN] | //big house that John loves// | +| ``mkCN`` | [N #N] ``->`` [Adv #Adv] ``->`` [CN #CN] | //house in the city// | +| ``mkCN`` | [CN #CN] ``->`` [Adv #Adv] ``->`` [CN #CN] | //big house in the city// | +| ``mkCN`` | [CN #CN] ``->`` [S #S] ``->`` [CN #CN] | //rule that John walks// | +| ``mkCN`` | [CN #CN] ``->`` [QS #QS] ``->`` [CN #CN] | //question if John walks// | +| ``mkCN`` | [CN #CN] ``->`` [VP #VP] ``->`` [CN #CN] | //reason to walk// | +| ``mkCN`` | [N #N] ``->`` [NP #NP] ``->`` [CN #CN] | //king John// | +| ``mkCN`` | [CN #CN] ``->`` [NP #NP] ``->`` [CN #CN] | //old king John// | +==Card - cardinal number==[Card] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==Cl - declarative clause, with all tenses==[Cl] +|| Function | Type | Example || +| ``genericCl`` | [VP #VP] ``->`` [Cl #Cl] | //one walks// | +| ``mkCl`` | [NP #NP] ``->`` [V #V] ``->`` [Cl #Cl] | //John walks// | +| ``mkCl`` | [NP #NP] ``->`` [V2 #V2] ``->`` [NP #NP] ``->`` [Cl #Cl] | //John loves her// | +| ``mkCl`` | [NP #NP] ``->`` [V3 #V3] ``->`` [NP #NP] ``->`` [NP #NP] ``->`` [Cl #Cl] | //John sends it to her// | +| ``mkCl`` | [NP #NP] ``->`` [VV #VV] ``->`` [VP #VP] ``->`` [Cl #Cl] | //John wants to walk// | +| ``mkCl`` | [NP #NP] ``->`` [VS #VS] ``->`` [S #S] ``->`` [Cl #Cl] | //John says that it is good// | +| ``mkCl`` | [NP #NP] ``->`` [VQ #VQ] ``->`` [QS #QS] ``->`` [Cl #Cl] | //John wonders if it is good// | +| ``mkCl`` | [NP #NP] ``->`` [VA #VA] ``->`` [AP #AP] ``->`` [Cl #Cl] | //John becomes old// | +| ``mkCl`` | [NP #NP] ``->`` [V2A #V2A] ``->`` [NP #NP] ``->`` [AP #AP] ``->`` [Cl #Cl] | //John paints it red// | +| ``mkCl`` | [NP #NP] ``->`` [V2S #V2S] ``->`` [NP #NP] ``->`` [S #S] ``->`` [Cl #Cl] | //John tells her that we are here// | +| ``mkCl`` | [NP #NP] ``->`` [V2Q #V2Q] ``->`` [NP #NP] ``->`` [QS #QS] ``->`` [Cl #Cl] | //John asks her who is here// | +| ``mkCl`` | [NP #NP] ``->`` [V2V #V2V] ``->`` [NP #NP] ``->`` [VP #VP] ``->`` [Cl #Cl] | //John forces us to sleep// | +| ``mkCl`` | [NP #NP] ``->`` [A #A] ``->`` [Cl #Cl] | //John is old// | +| ``mkCl`` | [NP #NP] ``->`` [A #A] ``->`` [NP #NP] ``->`` [Cl #Cl] | //John is older than her// | +| ``mkCl`` | [NP #NP] ``->`` [A2 #A2] ``->`` [NP #NP] ``->`` [Cl #Cl] | //John is married to her// | +| ``mkCl`` | [NP #NP] ``->`` [AP #AP] ``->`` [Cl #Cl] | //John is very old// | +| ``mkCl`` | [NP #NP] ``->`` [N #N] ``->`` [Cl #Cl] | //John is a man// | +| ``mkCl`` | [NP #NP] ``->`` [CN #CN] ``->`` [Cl #Cl] | //John is an old man// | +| ``mkCl`` | [NP #NP] ``->`` [NP #NP] ``->`` [Cl #Cl] | //John is the man// | +| ``mkCl`` | [NP #NP] ``->`` [Adv #Adv] ``->`` [Cl #Cl] | //John is here// | +| ``mkCl`` | [NP #NP] ``->`` [VP #VP] ``->`` [Cl #Cl] | //John walks here// | +| ``mkCl`` | [V #V] ``->`` [Cl #Cl] | //it rains// | +| ``mkCl`` | [VP #VP] ``->`` [Cl #Cl] | //it is raining// | +| ``mkCl`` | [N #N] ``->`` [Cl #Cl] | //there is a house// | +| ``mkCl`` | [CN #CN] ``->`` [Cl #Cl] | //there is an old houses// | +| ``mkCl`` | [NP #NP] ``->`` [Cl #Cl] | //there are five houses// | +| ``mkCl`` | [NP #NP] ``->`` [RS #RS] ``->`` [Cl #Cl] | //it is John that walks// | +| ``mkCl`` | [Adv #Adv] ``->`` [S #S] ``->`` [Cl #Cl] | //it is here John walks// | +==ClSlash==[ClSlash] +|| Function | Type | Example || +| ``mkClSlash`` | [NP #NP] ``->`` [V2 #V2] ``->`` [ClSlash #ClSlash] | //(whom) John loves// | +| ``mkClSlash`` | [NP #NP] ``->`` [VV #VV] ``->`` [V2 #V2] ``->`` [ClSlash #ClSlash] | //(whom) John wants to see// | +| ``mkClSlash`` | [Cl #Cl] ``->`` [Prep #Prep] ``->`` [ClSlash #ClSlash] | //(with whom) John walks// | +| ``mkClSlash`` | [ClSlash #ClSlash] ``->`` [Adv #Adv] ``->`` [ClSlash #ClSlash] | //(whom) John loves today// | +==Comp - complement of copula, such as AP==[Comp] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==Conj - conjunction==[Conj] +|| Function | Type | Example || +| ``and_Conj`` | [Conj #Conj] | //and// | +| ``both7and_DConj`` | [Conj #Conj] | //both...and// | +| ``either7or_DConj`` | [Conj #Conj] | //either...or// | +| ``or_Conj`` | [Conj #Conj] | //or// | +==Det - determiner phrase==[Det] +|| Function | Type | Example || +| ``every_Det`` | [Det #Det] | //every// | +| ``few_Det`` | [Det #Det] | //few// | +| ``many_Det`` | [Det #Det] | //many// | +| ``mkDet`` | [Quant #Quant] ``->`` [Det #Det] | //this// | +| ``mkDet`` | [Quant #Quant] ``->`` ([Ord #Ord]) ``->`` [Det #Det] | //this first// | +| ``mkDet`` | [Quant #Quant] ``->`` [Num #Num] ``->`` [Det #Det] | //these// | +| ``mkDet`` | [Quant #Quant] ``->`` [Num #Num] ``->`` ([Ord #Ord]) ``->`` [Det #Det] | //these five best// | +| ``mkDet`` | [Quant #Quant] ``->`` [Det #Det] | //this// | +| ``mkDet`` | [Quant #Quant] ``->`` [Num #Num] ``->`` [Det #Det] | //these five// | +| ``mkDet`` | [Card #Card] ``->`` [Det #Det] | //almost twenty// | +| ``mkDet`` | [Numeral #Numeral] ``->`` [Det #Det] | //five// | +| ``mkDet`` | [Digits #Digits] ``->`` [Det #Det] | //51// | +| ``mkDet`` | [Pron #Pron] ``->`` [Det #Det] | //my (house)// | +| ``mkDet`` | [Pron #Pron] ``->`` [Num #Num] ``->`` [Det #Det] | //my (houses)// | +| ``much_Det`` | [Det #Det] | //much// | +| ``somePl_Det`` | [Det #Det] | //somePl// | +| ``someSg_Det`` | [Det #Det] | //someSg// | +==Dig==[Dig] +|| Function | Type | Example || +| ``n0_Dig`` | [Dig #Dig] | //0// | +| ``n1_Dig`` | [Dig #Dig] | //1// | +| ``n2_Dig`` | [Dig #Dig] | //2// | +| ``n3_Dig`` | [Dig #Dig] | //3// | +| ``n4_Dig`` | [Dig #Dig] | //4// | +| ``n5_Dig`` | [Dig #Dig] | //5// | +| ``n6_Dig`` | [Dig #Dig] | //6// | +| ``n7_Dig`` | [Dig #Dig] | //7// | +| ``n8_Dig`` | [Dig #Dig] | //8// | +| ``n9_Dig`` | [Dig #Dig] | //9// | +==Digits - cardinal or ordinal in digits==[Digits] +|| Function | Type | Example || +| ``mkDigits`` | [Dig #Dig] ``->`` [Digits #Digits] | //8// | +| ``mkDigits`` | [Dig #Dig] ``->`` [Digits #Digits] ``->`` [Digits #Digits] | //876// | +| ``n1000_Digits`` | [Digits #Digits] | //1,000// | +| ``n100_Digits`` | [Digits #Digits] | //100// | +| ``n10_Digits`` | [Digits #Digits] | //10// | +| ``n1_Digits`` | [Digits #Digits] | //1// | +| ``n20_Digits`` | [Digits #Digits] | //20// | +| ``n2_Digits`` | [Digits #Digits] | //2// | +| ``n3_Digits`` | [Digits #Digits] | //3// | +| ``n4_Digits`` | [Digits #Digits] | //4// | +| ``n5_Digits`` | [Digits #Digits] | //5// | +| ``n6_Digits`` | [Digits #Digits] | //6// | +| ``n7_Digits`` | [Digits #Digits] | //7// | +| ``n8_Digits`` | [Digits #Digits] | //8// | +| ``n9_Digits`` | [Digits #Digits] | //9// | +==IAdv - interrogative adverb==[IAdv] +|| Function | Type | Example || +| ``how_IAdv`` | [IAdv #IAdv] | //how// | +| ``mkIAdv`` | [Prep #Prep] ``->`` [IP #IP] ``->`` [IAdv #IAdv] | //in which city// | +| ``when_IAdv`` | [IAdv #IAdv] | //when// | +| ``where_IAdv`` | [IAdv #IAdv] | //where// | +| ``why_IAdv`` | [IAdv #IAdv] | //why// | +==IComp - interrogative complement of copula==[IComp] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==IDet - interrogative determiner==[IDet] +|| Function | Type | Example || +| ``how8many_IDet`` | [IDet #IDet] | //how8many// | +==IP - interrogative pronoun==[IP] +|| Function | Type | Example || +| ``mkIP`` | [IQuant #IQuant] ``->`` [N #N] ``->`` [IP #IP] | //which city// | +| ``mkIP`` | [IQuant #IQuant] ``->`` ([Num #Num]) ``->`` [CN #CN] ``->`` [IP #IP] | //which five big cities// | +| ``mkIP`` | [IP #IP] ``->`` [Adv #Adv] ``->`` [IP #IP] | //who in Paris// | +| ``whatPl_IP`` | [IP #IP] | //what (plural)// | +| ``whatSg_IP`` | [IP #IP] | //what (singular)// | +| ``whoPl_IP`` | [IP #IP] | //who (plural)// | +| ``whoSg_IP`` | [IP #IP] | //who (singular)// | +==IQuant==[IQuant] +|| Function | Type | Example || +| ``which_IQuant`` | [IQuant #IQuant] | //which// | +==Imp - imperative==[Imp] +|| Function | Type | Example || +| ``mkImp`` | [V #V] ``->`` [Imp #Imp] | //go// | +| ``mkImp`` | [V2 #V2] ``->`` [NP #NP] ``->`` [Imp #Imp] | //take it// | +| ``mkImp`` | [VP #VP] ``->`` [Imp #Imp] | //go there now// | +==ImpForm==[ImpForm] +|| Function | Type | Example || +| ``pluralImpForm`` | [ImpForm #ImpForm] | //(help yourselves)// | +| ``politeImpForm`` | [ImpForm #ImpForm] | //(help yourself) (polite singular)// | +| ``singularImpForm`` | [ImpForm #ImpForm] | //(help yourself) [default]// | +==ListAP==[ListAP] +|| Function | Type | Example || +| ``mkListAP`` | [AP #AP] ``->`` [AP #AP] ``->`` [ListAP #ListAP] | //old, big// | +| ``mkListAP`` | [AP #AP] ``->`` [ListAP #ListAP] ``->`` [ListAP #ListAP] | //old, big, warm// | +==ListAdv==[ListAdv] +|| Function | Type | Example || +| ``mkListAdv`` | [Adv #Adv] ``->`` [Adv #Adv] ``->`` [ListAdv #ListAdv] | //here, now// | +| ``mkListAdv`` | [Adv #Adv] ``->`` [ListAdv #ListAdv] ``->`` [ListAdv #ListAdv] | //to me, here, now// | +==ListNP==[ListNP] +|| Function | Type | Example || +| ``mkListNP`` | [NP #NP] ``->`` [NP #NP] ``->`` [ListNP #ListNP] | //John, I// | +| ``mkListNP`` | [NP #NP] ``->`` [ListNP #ListNP] ``->`` [ListNP #ListNP] | //John, I, that// | +==ListS==[ListS] +|| Function | Type | Example || +| ``mkListS`` | [S #S] ``->`` [S #S] ``->`` [ListS #ListS] | //he walks, I run// | +| ``mkListS`` | [S #S] ``->`` [ListS #ListS] ``->`` [ListS #ListS] | //John walks, I run, you sleep// | +==N - common noun==[N] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==N2 - relational noun==[N2] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==N3 - three-place relational noun==[N3] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==NP - noun phrase (subject or object)==[NP] +|| Function | Type | Example || +| ``everybody_NP`` | [NP #NP] | //everybody// | +| ``everything_NP`` | [NP #NP] | //everything// | +| ``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// | +| ``mkNP`` | [Numeral #Numeral] ``->`` [CN #CN] ``->`` [NP #NP] | //twenty old men// | +| ``mkNP`` | [Digits #Digits] ``->`` [N #N] ``->`` [NP #NP] | //45 men// | +| ``mkNP`` | [Digits #Digits] ``->`` [CN #CN] ``->`` [NP #NP] | //45 old men// | +| ``mkNP`` | [Card #Card] ``->`` [N #N] ``->`` [NP #NP] | //almost twenty men// | +| ``mkNP`` | [Card #Card] ``->`` [CN #CN] ``->`` [NP #NP] | //almost twenty old men// | +| ``mkNP`` | [Pron #Pron] ``->`` [N #N] ``->`` [NP #NP] | //my man// | +| ``mkNP`` | [Pron #Pron] ``->`` [CN #CN] ``->`` [NP #NP] | //my old man// | +| ``mkNP`` | [PN #PN] ``->`` [NP #NP] | //John// | +| ``mkNP`` | [Pron #Pron] ``->`` [NP #NP] | //he// | +| ``mkNP`` | [Quant #Quant] ``->`` [NP #NP] | //this// | +| ``mkNP`` | [Det #Det] ``->`` [NP #NP] | //these five// | +| ``mkNP`` | [N #N] ``->`` [NP #NP] | //beer// | +| ``mkNP`` | [CN #CN] ``->`` [NP #NP] | //beer// | +| ``mkNP`` | [Predet #Predet] ``->`` [NP #NP] ``->`` [NP #NP] | //only John// | +| ``mkNP`` | [NP #NP] ``->`` [V2 #V2] ``->`` [NP #NP] | //John killed// | +| ``mkNP`` | [NP #NP] ``->`` [Adv #Adv] ``->`` [NP #NP] | //John in Paris// | +| ``mkNP`` | [Conj #Conj] ``->`` [NP #NP] ``->`` [NP #NP] ``->`` [NP #NP] | //John and I// | +| ``mkNP`` | [Conj #Conj] ``->`` [ListNP #ListNP] ``->`` [NP #NP] | //John, I, and that// | +| ``somebody_NP`` | [NP #NP] | //somebody// | +| ``something_NP`` | [NP #NP] | //something// | +==Num - number determining element==[Num] +|| Function | Type | Example || +| ``mkNum`` | [Numeral #Numeral] ``->`` [Num #Num] | //twenty// | +| ``mkNum`` | [Digits #Digits] ``->`` [Num #Num] | //51// | +| ``mkNum`` | [AdN #AdN] ``->`` [Num #Num] ``->`` [Num #Num] | //almost ten// | +| ``plNum`` | [Num #Num] | //plural// | +| ``sgNum`` | [Num #Num] | //singular// | +==Numeral - cardinal or ordinal in words==[Numeral] +|| Function | Type | Example || +| ``n1000_Numeral`` | [Numeral #Numeral] | //thousand// | +| ``n100_Numeral`` | [Numeral #Numeral] | //hundred// | +| ``n10_Numeral`` | [Numeral #Numeral] | //ten// | +| ``n1_Numeral`` | [Numeral #Numeral] | //one// | +| ``n20_Numeral`` | [Numeral #Numeral] | //twenty// | +| ``n2_Numeral`` | [Numeral #Numeral] | //two// | +| ``n3_Numeral`` | [Numeral #Numeral] | //three// | +| ``n4_Numeral`` | [Numeral #Numeral] | //four// | +| ``n5_Numeral`` | [Numeral #Numeral] | //five// | +| ``n6_Numeral`` | [Numeral #Numeral] | //six// | +| ``n7_Numeral`` | [Numeral #Numeral] | //seven// | +| ``n8_Numeral`` | [Numeral #Numeral] | //eight// | +| ``n9_Numeral`` | [Numeral #Numeral] | //nine// | +==Ord - ordinal number (used in Det)==[Ord] +|| Function | Type | Example || +| ``mkOrd`` | [Numeral #Numeral] ``->`` [Ord #Ord] | //twentieth// | +| ``mkOrd`` | [Digits #Digits] ``->`` [Ord #Ord] | //51st// | +| ``mkOrd`` | [A #A] ``->`` [Ord #Ord] | //best// | +==PConj - phrase-beginning conjunction==[PConj] +|| Function | Type | Example || +| ``but_PConj`` | [PConj #PConj] | //but// | +| ``mkPConj`` | [Conj #Conj] ``->`` [PConj #PConj] | //and// | +| ``otherwise_PConj`` | [PConj #PConj] | //otherwise// | +| ``therefore_PConj`` | [PConj #PConj] | //therefore// | +==PN - proper name==[PN] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==Phr - phrase in a text==[Phr] +|| Function | Type | Example || +| ``mkPhr`` | [Utt #Utt] ``->`` [Phr #Phr] | //why// | +| ``mkPhr`` | ([PConj #PConj]) ``->`` [Utt #Utt] ``->`` ([Voc #Voc]) ``->`` [Phr #Phr] | //but why John// | +| ``mkPhr`` | [S #S] ``->`` [Phr #Phr] | //John walked// | +| ``mkPhr`` | [Cl #Cl] ``->`` [Phr #Phr] | //John walks// | +| ``mkPhr`` | [QS #QS] ``->`` [Phr #Phr] | //did John walk// | +| ``mkPhr`` | [Imp #Imp] ``->`` [Phr #Phr] | //walk// | +==Pol - polarity==[Pol] +|| Function | Type | Example || +| ``negativePol`` | [Pol #Pol] | //(John doesn't walk)// | +| ``positivePol`` | [Pol #Pol] | //(John walks) [default]// | +==Predet - predeterminer (prefixed Quant)==[Predet] +|| Function | Type | Example || +| ``all_Predet`` | [Predet #Predet] | //all// | +| ``most_Predet`` | [Predet #Predet] | //most// | +| ``only_Predet`` | [Predet #Predet] | //only// | +==Prep - preposition, or just case==[Prep] +|| Function | Type | Example || +| ``above_Prep`` | [Prep #Prep] | //above// | +| ``after_Prep`` | [Prep #Prep] | //after// | +| ``before_Prep`` | [Prep #Prep] | //before// | +| ``behind_Prep`` | [Prep #Prep] | //behind// | +| ``between_Prep`` | [Prep #Prep] | //between// | +| ``by8agent_Prep`` | [Prep #Prep] | //by (agent)// | +| ``by8means_Prep`` | [Prep #Prep] | //by (means of)// | +| ``during_Prep`` | [Prep #Prep] | //during// | +| ``for_Prep`` | [Prep #Prep] | //for// | +| ``from_Prep`` | [Prep #Prep] | //from// | +| ``in8front_Prep`` | [Prep #Prep] | //in front of// | +| ``in_Prep`` | [Prep #Prep] | //in// | +| ``on_Prep`` | [Prep #Prep] | //on// | +| ``part_Prep`` | [Prep #Prep] | //part// | +| ``possess_Prep`` | [Prep #Prep] | //of (possessive)// | +| ``through_Prep`` | [Prep #Prep] | //through// | +| ``to_Prep`` | [Prep #Prep] | //to// | +| ``under_Prep`` | [Prep #Prep] | //under// | +| ``with_Prep`` | [Prep #Prep] | //with// | +| ``without_Prep`` | [Prep #Prep] | //without// | +==Pron - personal pronoun==[Pron] +|| Function | Type | Example || +| ``he_Pron`` | [Pron #Pron] | //he// | +| ``i_Pron`` | [Pron #Pron] | //i// | +| ``it_Pron`` | [Pron #Pron] | //it// | +| ``she_Pron`` | [Pron #Pron] | //she// | +| ``they_Pron`` | [Pron #Pron] | //they// | +| ``we_Pron`` | [Pron #Pron] | //we// | +| ``youPl_Pron`` | [Pron #Pron] | //you (plural)// | +| ``youPol_Pron`` | [Pron #Pron] | //you (polite)// | +| ``youSg_Pron`` | [Pron #Pron] | //you (singular)// | +==Punct==[Punct] +|| Function | Type | Example || +| ``exclMarkPunct`` | [Punct #Punct] | //!// | +| ``fullStopPunct`` | [Punct #Punct] | //.// | +| ``questMarkPunct`` | [Punct #Punct] | //?// | +==QCl - question clause, with all tenses==[QCl] +|| Function | Type | Example || +| ``mkQCl`` | [Cl #Cl] ``->`` [QCl #QCl] | //does John walk// | +| ``mkQCl`` | [IP #IP] ``->`` [VP #VP] ``->`` [QCl #QCl] | //who walks// | +| ``mkQCl`` | [IP #IP] ``->`` [NP #NP] ``->`` [V2 #V2] ``->`` [QCl #QCl] | //whom does John love// | +| ``mkQCl`` | [IP #IP] ``->`` [ClSlash #ClSlash] ``->`` [QCl #QCl] | //whom does John love today// | +| ``mkQCl`` | [IAdv #IAdv] ``->`` [Cl #Cl] ``->`` [QCl #QCl] | //why does John walk// | +| ``mkQCl`` | [Prep #Prep] ``->`` [IP #IP] ``->`` [Cl #Cl] ``->`` [QCl #QCl] | //with who does John walk// | +| ``mkQCl`` | [IAdv #IAdv] ``->`` [NP #NP] ``->`` [QCl #QCl] | //where is John// | +| ``mkQCl`` | [IP #IP] ``->`` [QCl #QCl] | //what is there// | +==QS - question==[QS] +|| Function | Type | Example || +| ``mkQS`` | [QCl #QCl] ``->`` [QS #QS] | //who walks// | +| ``mkQS`` | ([Tense #Tense]) ``->`` ([Ant #Ant]) ``->`` ([Pol #Pol]) ``->`` [QCl #QCl] ``->`` [QS #QS] | //who wouldn't have walked// | +| ``mkQS`` | [Cl #Cl] ``->`` [QS #QS] | //does John walk// | +==Quant - quantifier ('nucleus' of Det)==[Quant] +|| Function | Type | Example || +| ``that_Quant`` | [Quant #Quant] | //that// | +| ``this_Quant`` | [Quant #Quant] | //this// | +==RCl - relative clause, with all tenses==[RCl] +|| Function | Type | Example || +| ``mkRCl`` | [RP #RP] ``->`` [VP #VP] ``->`` [RCl #RCl] | //that walk// | +| ``mkRCl`` | [RP #RP] ``->`` [NP #NP] ``->`` [V2 #V2] ``->`` [RCl #RCl] | //which John loves// | +| ``mkRCl`` | [RP #RP] ``->`` [ClSlash #ClSlash] ``->`` [RCl #RCl] | //which John loves today// | +| ``mkRCl`` | [Cl #Cl] ``->`` [RCl #RCl] | //such that John loves her// | +==RP - relative pronoun==[RP] +|| Function | Type | Example || +| ``mkRP`` | [Prep #Prep] ``->`` [NP #NP] ``->`` [RP #RP] ``->`` [RP #RP] | //all the houses in which// | +| ``which_RP`` | [RP #RP] | //which// | +==RS - relative==[RS] +|| Function | Type | Example || +| ``mkRS`` | [RCl #RCl] ``->`` [RS #RS] | //that walk// | +| ``mkRS`` | ([Tense #Tense]) ``->`` ([Ant #Ant]) ``->`` ([Pol #Pol]) ``->`` [RCl #RCl] ``->`` [RS #RS] | //that wouldn't have walked// | +==S - declarative sentence==[S] +|| Function | Type | Example || +| ``mkS`` | [Cl #Cl] ``->`` [S #S] | //John walks// | +| ``mkS`` | ([Tense #Tense]) ``->`` ([Ant #Ant]) ``->`` ([Pol #Pol]) ``->`` [Cl #Cl] ``->`` [S #S] | //John wouldn't have walked// | +| ``mkS`` | [Conj #Conj] ``->`` [S #S] ``->`` [S #S] ``->`` [S #S] | //John walks and I run// | +| ``mkS`` | [Conj #Conj] ``->`` [ListS #ListS] ``->`` [S #S] | //John walks, I run and you sleep// | +| ``mkS`` | [Adv #Adv] ``->`` [S #S] ``->`` [S #S] | //today, John walks// | +==SC - embedded sentence or question==[SC] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==Subj - subjunction==[Subj] +|| Function | Type | Example || +| ``although_Subj`` | [Subj #Subj] | //although// | +| ``because_Subj`` | [Subj #Subj] | //because// | +| ``if_Subj`` | [Subj #Subj] | //if// | +| ``when_Subj`` | [Subj #Subj] | //when// | +==Tense - tense==[Tense] +|| Function | Type | Example || +| ``conditionalTense`` | [Tense #Tense] | //(John would walk) --# notpresent// | +| ``futureTense`` | [Tense #Tense] | //(John will walk) --# notpresent// | +| ``pastTense`` | [Tense #Tense] | //(John walked) --# notpresent// | +| ``presentTense`` | [Tense #Tense] | //(John walks) [default]// | +==Text - text consisting of several phrases==[Text] +|| Function | Type | Example || +| ``emptyText`` | [Text #Text] | //(empty text)// | +| ``mkText`` | [Phr #Phr] ``->`` [Text #Text] | //But John walks.// | +| ``mkText`` | [Phr #Phr] ``->`` ([Punct #Punct]) ``->`` ([Text #Text]) ``->`` [Text #Text] | //John walks? Yes.// | +| ``mkText`` | [Utt #Utt] ``->`` [Text #Text] | //John.// | +| ``mkText`` | [S #S] ``->`` [Text #Text] | //John walked.// | +| ``mkText`` | [Cl #Cl] ``->`` [Text #Text] | //John walks.// | +| ``mkText`` | [QS #QS] ``->`` [Text #Text] | //Did John walk?// | +| ``mkText`` | [Imp #Imp] ``->`` [Text #Text] | //Walk!// | +| ``mkText`` | [Text #Text] ``->`` [Text #Text] ``->`` [Text #Text] | //Where? When? Here. Now!// | +==Utt - sentence, question, word...==[Utt] +|| Function | Type | Example || +| ``lets_Utt`` | [VP #VP] ``->`` [Utt #Utt] | //let's walk// | +| ``mkUtt`` | [S #S] ``->`` [Utt #Utt] | //John walked// | +| ``mkUtt`` | [Cl #Cl] ``->`` [Utt #Utt] | //John walks// | +| ``mkUtt`` | [QS #QS] ``->`` [Utt #Utt] | //did John walk// | +| ``mkUtt`` | [Imp #Imp] ``->`` [Utt #Utt] | //love yourself// | +| ``mkUtt`` | ([ImpForm #ImpForm]) ``->`` ([Pol #Pol]) ``->`` [Imp #Imp] ``->`` [Utt #Utt] | //don't love yourselves// | +| ``mkUtt`` | [IP #IP] ``->`` [Utt #Utt] | //who// | +| ``mkUtt`` | [IAdv #IAdv] ``->`` [Utt #Utt] | //why// | +| ``mkUtt`` | [NP #NP] ``->`` [Utt #Utt] | //John// | +| ``mkUtt`` | [Adv #Adv] ``->`` [Utt #Utt] | //here// | +| ``mkUtt`` | [VP #VP] ``->`` [Utt #Utt] | //to walk// | +| ``no_Utt`` | [Utt #Utt] | //no// | +| ``yes_Utt`` | [Utt #Utt] | //yes// | +==V - one-place verb==[V] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V2 - two-place verb==[V2] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V2A - verb with NP and AP complement==[V2A] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V2Q - verb with NP and Q complement==[V2Q] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V2S - verb with NP and S complement==[V2S] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V2V - verb with NP and V complement==[V2V] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==V3 - three-place verb==[V3] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==VA - adjective-complement verb==[VA] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==VP - verb phrase==[VP] +|| Function | Type | Example || +| ``mkVP`` | [V #V] ``->`` [VP #VP] | //walk// | +| ``mkVP`` | [V2 #V2] ``->`` [NP #NP] ``->`` [VP #VP] | //love her// | +| ``mkVP`` | [V3 #V3] ``->`` [NP #NP] ``->`` [NP #NP] ``->`` [VP #VP] | //send it to her// | +| ``mkVP`` | [VV #VV] ``->`` [VP #VP] ``->`` [VP #VP] | //want to walk// | +| ``mkVP`` | [VS #VS] ``->`` [S #S] ``->`` [VP #VP] | //know that she walks// | +| ``mkVP`` | [VQ #VQ] ``->`` [QS #QS] ``->`` [VP #VP] | //ask if she walks// | +| ``mkVP`` | [VA #VA] ``->`` [AP #AP] ``->`` [VP #VP] | //become old// | +| ``mkVP`` | [V2A #V2A] ``->`` [NP #NP] ``->`` [AP #AP] ``->`` [VP #VP] | //paint it red// | +| ``mkVP`` | [A #A] ``->`` [VP #VP] | //be warm// | +| ``mkVP`` | [AP #AP] ``->`` [VP #VP] | //be very warm// | +| ``mkVP`` | [A #A] ``->`` [NP #NP] ``->`` [VP #VP] | //be older than her// | +| ``mkVP`` | [A2 #A2] ``->`` [NP #NP] ``->`` [VP #VP] | //be married to her// | +| ``mkVP`` | [N #N] ``->`` [VP #VP] | //be a man// | +| ``mkVP`` | [CN #CN] ``->`` [VP #VP] | //be an old man// | +| ``mkVP`` | [NP #NP] ``->`` [VP #VP] | //be the man// | +| ``mkVP`` | [Adv #Adv] ``->`` [VP #VP] | //be here// | +| ``mkVP`` | [VP #VP] ``->`` [Adv #Adv] ``->`` [VP #VP] | //sleep here// | +| ``mkVP`` | [AdV #AdV] ``->`` [VP #VP] ``->`` [VP #VP] | //always sleep// | +| ``mkVP`` | [VPSlash #VPSlash] ``->`` [NP #NP] ``->`` [VP #VP] | //paint it black// | +| ``mkVP`` | [VPSlash #VPSlash] ``->`` [VP #VP] | //paint itself black// | +| ``passiveVP`` | [V2 #V2] ``->`` [VP #VP] | //be loved// | +| ``passiveVP`` | [V2 #V2] ``->`` [NP #NP] ``->`` [VP #VP] | //be loved by her// | +| ``progressiveVP`` | [VP #VP] ``->`` [VP #VP] | //be sleeping// | +| ``reflexiveVP`` | [V2 #V2] ``->`` [VP #VP] | //love itself// | +==VPSlash - verb phrase missing complement==[VPSlash] +|| Function | Type | Example || +| ``mkVPSlash`` | [V2 #V2] ``->`` [VPSlash #VPSlash] | //(whom) (John) loves// | +| ``mkVPSlash`` | [V3 #V3] ``->`` [NP #NP] ``->`` [VPSlash #VPSlash] | //(whom) (John) gives an apple// | +| ``mkVPSlash`` | [V2A #V2A] ``->`` [AP #AP] ``->`` [VPSlash #VPSlash] | //(whom) (John) paints red// | +| ``mkVPSlash`` | [V2Q #V2Q] ``->`` [QS #QS] ``->`` [VPSlash #VPSlash] | //(whom) (John) asks who sleeps// | +| ``mkVPSlash`` | [V2S #V2S] ``->`` [S #S] ``->`` [VPSlash #VPSlash] | //(whom) (John) tells that we sleep// | +| ``mkVPSlash`` | [V2V #V2V] ``->`` [VP #VP] ``->`` [VPSlash #VPSlash] | //(whom) (John) forces to sleep// | +==VQ - question-complement verb==[VQ] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==VS - sentence-complement verb==[VS] +Lexical category, constructors given in +[lexical paradigms #RParadigms]. +==VV - verb-phrase-complement verb==[VV] +|| Function | Type | Example || +| ``can8know_VV`` | [VV #VV] | //can (capacity)// | +| ``can_VV`` | [VV #VV] | //can (possibility)// | +| ``must_VV`` | [VV #VV] | //must// | +| ``want_VV`` | [VV #VV] | //want// | +==Voc - vocative or "please"==[Voc] +|| Function | Type | Example || +| ``mkVoc`` | [NP #NP] ``->`` [Voc #Voc] | //John// | +| ``please_Voc`` | [Voc #Voc] | //please// | + + + + +=Lexical Paradigms= +==Paradigms for Bulgarian== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/bulgarian/ParadigmsBul.gf`` ../bulgarian/ParadigmsBul.gf] + + + + +|| Function | Type || +| ``mkN001`` | ``Str`` ``->`` [N #N] | +| ``mkN002`` | ``Str`` ``->`` [N #N] | +| ``mkN002a`` | ``Str`` ``->`` [N #N] | +| ``mkN003`` | ``Str`` ``->`` [N #N] | +| ``mkN004`` | ``Str`` ``->`` [N #N] | +| ``mkN005`` | ``Str`` ``->`` [N #N] | +| ``mkN006`` | ``Str`` ``->`` [N #N] | +| ``mkN007`` | ``Str`` ``->`` [N #N] | +| ``mkN007b`` | ``Str`` ``->`` [N #N] | +| ``mkN007a`` | ``Str`` ``->`` [N #N] | +| ``mkN008`` | ``Str`` ``->`` [N #N] | +| ``mkN008a`` | ``Str`` ``->`` [N #N] | +| ``mkN009`` | ``Str`` ``->`` [N #N] | +| ``mkN009a`` | ``Str`` ``->`` [N #N] | +| ``mkN010`` | ``Str`` ``->`` [N #N] | +| ``mkN011`` | ``Str`` ``->`` [N #N] | +| ``mkN012`` | ``Str`` ``->`` [N #N] | +| ``mkN013`` | ``Str`` ``->`` [N #N] | +| ``mkN014`` | ``Str`` ``->`` [N #N] | +| ``mkN014a`` | ``Str`` ``->`` [N #N] | +| ``mkN015`` | ``Str`` ``->`` [N #N] | +| ``mkN016`` | ``Str`` ``->`` [N #N] | +| ``mkN017`` | ``Str`` ``->`` [N #N] | +| ``mkN018`` | ``Str`` ``->`` [N #N] | +| ``mkN018a`` | ``Str`` ``->`` [N #N] | +| ``mkN019`` | ``Str`` ``->`` [N #N] | +| ``mkN019a`` | ``Str`` ``->`` [N #N] | +| ``mkN020`` | ``Str`` ``->`` [N #N] | +| ``mkN021`` | ``Str`` ``->`` [N #N] | +| ``mkN022`` | ``Str`` ``->`` [N #N] | +| ``mkN023`` | ``Str`` ``->`` [N #N] | +| ``mkN024a`` | ``Str`` ``->`` [N #N] | +| ``mkN024`` | ``Str`` ``->`` [N #N] | +| ``mkN025`` | ``Str`` ``->`` [N #N] | +| ``mkN026`` | ``Str`` ``->`` [N #N] | +| ``mkN027`` | ``Str`` ``->`` [N #N] | +| ``mkN028`` | ``Str`` ``->`` [N #N] | +| ``mkN028a`` | ``Str`` ``->`` [N #N] | +| ``mkN029`` | ``Str`` ``->`` [N #N] | +| ``mkN030`` | ``Str`` ``->`` [N #N] | +| ``mkN031`` | ``Str`` ``->`` [N #N] | +| ``mkN031a`` | ``Str`` ``->`` [N #N] | +| ``mkN032`` | ``Str`` ``->`` [N #N] | +| ``mkN032a`` | ``Str`` ``->`` [N #N] | +| ``mkN033`` | ``Str`` ``->`` [N #N] | +| ``mkN034`` | ``Str`` ``->`` [N #N] | +| ``mkN035`` | ``Str`` ``->`` [N #N] | +| ``mkN035a`` | ``Str`` ``->`` [N #N] | +| ``mkN036`` | ``Str`` ``->`` [N #N] | +| ``mkN037`` | ``Str`` ``->`` [N #N] | +| ``mkN038`` | ``Str`` ``->`` [N #N] | +| ``mkN039`` | ``Str`` ``->`` [N #N] | +| ``mkN040`` | ``Str`` ``->`` [N #N] | +| ``mkN040a`` | ``Str`` ``->`` [N #N] | +| ``mkN041`` | ``Str`` ``->`` [N #N] | +| ``mkN041a`` | ``Str`` ``->`` [N #N] | +| ``mkN041b`` | ``Str`` ``->`` [N #N] | +| ``mkN042`` | ``Str`` ``->`` [N #N] | +| ``mkN043`` | ``Str`` ``->`` [N #N] | +| ``mkN043a`` | ``Str`` ``->`` [N #N] | +| ``mkN044`` | ``Str`` ``->`` [N #N] | +| ``mkN045`` | ``Str`` ``->`` [N #N] | +| ``mkN046`` | ``Str`` ``->`` [N #N] | +| ``mkN047`` | ``Str`` ``->`` [N #N] | +| ``mkN048`` | ``Str`` ``->`` [N #N] | +| ``mkN049`` | ``Str`` ``->`` [N #N] | +| ``mkN050`` | ``Str`` ``->`` [N #N] | +| ``mkN051`` | ``Str`` ``->`` [N #N] | +| ``mkN052`` | ``Str`` ``->`` [N #N] | +| ``mkN052a`` | ``Str`` ``->`` [N #N] | +| ``mkN053`` | ``Str`` ``->`` [N #N] | +| ``mkN054`` | ``Str`` ``->`` [N #N] | +| ``mkN055`` | ``Str`` ``->`` [N #N] | +| ``mkN056`` | ``Str`` ``->`` [N #N] | +| ``mkN057`` | ``Str`` ``->`` [N #N] | +| ``mkN057a`` | ``Str`` ``->`` [N #N] | +| ``mkN058`` | ``Str`` ``->`` [N #N] | +| ``mkN059`` | ``Str`` ``->`` [N #N] | +| ``mkN060`` | ``Str`` ``->`` [N #N] | +| ``mkN061`` | ``Str`` ``->`` [N #N] | +| ``mkN062`` | ``Str`` ``->`` [N #N] | +| ``mkN063`` | ``Str`` ``->`` [N #N] | +| ``mkN064`` | ``Str`` ``->`` [N #N] | +| ``mkN065`` | ``Str`` ``->`` [N #N] | +| ``mkN066`` | ``Str`` ``->`` [N #N] | +| ``mkN067`` | ``Str`` ``->`` [N #N] | +| ``mkN068`` | ``Str`` ``->`` [N #N] | +| ``mkN069`` | ``Str`` ``->`` [N #N] | +| ``mkN070`` | ``Str`` ``->`` [N #N] | +| ``mkN071`` | ``Str`` ``->`` [N #N] | +| ``mkN072`` | ``Str`` ``->`` [N #N] | +| ``mkN073`` | ``Str`` ``->`` [N #N] | +| ``mkN074`` | ``Str`` ``->`` [N #N] | +| ``mkN075`` | ``Str`` ``->`` [N #N] | +| ``mkA076`` | ``Str`` ``->`` [A #A] | +| ``mkA077`` | ``Str`` ``->`` [A #A] | +| ``mkA078`` | ``Str`` ``->`` [A #A] | +| ``mkA079`` | ``Str`` ``->`` [A #A] | +| ``mkA080`` | ``Str`` ``->`` [A #A] | +| ``mkA081`` | ``Str`` ``->`` [A #A] | +| ``mkA082`` | ``Str`` ``->`` [A #A] | +| ``mkA082a`` | ``Str`` ``->`` [A #A] | +| ``mkA083`` | ``Str`` ``->`` [A #A] | +| ``mkA084`` | ``Str`` ``->`` [A #A] | +| ``mkA084a`` | ``Str`` ``->`` [A #A] | +| ``mkA085`` | ``Str`` ``->`` [A #A] | +| ``mkA086`` | ``Str`` ``->`` [A #A] | +| ``mkA087`` | ``Str`` ``->`` [A #A] | +| ``mkA088`` | ``Str`` ``->`` [A #A] | +| ``mkA089`` | ``Str`` ``->`` [A #A] | +| ``mkA089a`` | ``Str`` ``->`` [A #A] | +| ``mkV142`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV143`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV144`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV145`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV145a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV145b`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV146`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV146a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV147`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV148`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV149`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV150`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV150a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV151`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV152`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV152a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV153`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV154`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV155`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV156`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV157`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV158`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV159`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV160`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV160a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV161`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV161a`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV162`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV163`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV164`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV165`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV166`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV167`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV168`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV169`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV170`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV171`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV172`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV173`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV174`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV175`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV176`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV177`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV178`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV179`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV180`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV181`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV182`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV183`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV184`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV185`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV186`` | ``Str`` ``->`` [VTable #VTable] | +| ``mkV187`` | ``Str`` ``->`` [VTable #VTable] | +| ``adjAdv`` | [A #A] ``->`` ``Str`` ``->`` [A #A] ``=`` | + + +==Paradigms for Danish== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/danish/ParadigmsDan.gf`` ../danish/ParadigmsDan.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``utrum`` | [Gender #Gender] | +| ``neutrum`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``noPrep`` | [Prep #Prep] | +| ``mkN`` | ``(bil`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(hus`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(bil,bilen`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(bil,bilen,biler`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(dreng,drengen,drenge,drengene`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``regN2`` | ``Str`` ``->`` [Gender #Gender] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkPN`` | [N #N] ``->`` [PN #PN] | +| ``mkA`` | ``(fin`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(fin,fint`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(galen,galet,galne`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(stor,stort,store,storre,storst`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``(snakke`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(leve,levde`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(drikke,`` ``drakk,`` ``drukket`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(spise,spiser,spises,spiste,spist,spis`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | [V #V] ``->`` ``Str`` ``->`` [V #V] | +| ``vaereV`` | [V #V] ``->`` [V #V] | +| ``depV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for English== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/english/ParadigmsEng.gf`` ../english/ParadigmsEng.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``human`` | [Gender #Gender] | +| ``nonhuman`` | [Gender #Gender] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``mkN`` | ``(flash`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(man,men`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(man,men,man's,men's`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | [Gender #Gender] ``->`` [N #N] ``->`` [N #N] | +| ``mkN`` | ``Str`` ``->`` [N #N] ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``regN2`` | ``Str`` ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | [N #N] ``->`` [PN #PN] | +| ``mkA`` | ``(happy`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(fat,fatter`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(good,better,best,well`` ``:`` ``Str)`` ``->`` [A #A] | +| ``compoundA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``noPrep`` | [Prep #Prep] | +| ``mkV`` | ``(cry`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(stop,`` ``stopped`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(drink,`` ``drank,`` ``drunk`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(run,`` ``ran,`` ``run,`` ``running`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(go,`` ``goes,`` ``went,`` ``gone,`` ``going`` ``:`` ``Str)`` ``->`` [V #V] | +| ``partV`` | [V #V] ``->`` ``Str`` ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for Finnish== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/finnish/ParadigmsFin.gf`` ../finnish/ParadigmsFin.gf] + + + + +|| Function | Type || +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``partitive`` | [Case #Case] | +| ``translative`` | [Case #Case] | +| ``inessive`` | [Case #Case] | +| ``elative`` | [Case #Case] | +| ``illative`` | [Case #Case] | +| ``adessive`` | [Case #Case] | +| ``ablative`` | [Case #Case] | +| ``allative`` | [Case #Case] | +| ``prePrep`` | [Case #Case] ``->`` ``Str`` ``->`` [Prep #Prep] | +| ``postPrep`` | [Case #Case] ``->`` ``Str`` ``->`` [Prep #Prep] | +| ``postGenPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``casePrep`` | [Case #Case] ``->`` [Prep #Prep] | +| ``mkN`` | ``(talo`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(savi,savia`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(vesi,veden,vesi`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(vesi,veden,vesi,vett`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(olo,olon,olona,oloa,oloon,olojen,oloja,oloina,oloissa,oloihin`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(pika`` ``:`` ``Str)`` ``->`` ``(juna`` ``:`` ``N)`` ``->`` [N #N] | +| ``mkN`` | ``(oma`` ``:`` ``N)`` ``->`` ``(tunto`` ``:`` ``N)`` ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | [N #N] ``->`` [PN #PN] | +| ``mkA`` | ``Str`` ``->`` [A #A] | +| ``mkA`` | [N #N] ``->`` [A #A] | +| ``mkA`` | [N #N] ``->`` ``(kivempaa,kivinta`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(hyva,parempi,paras`` ``:`` ``N)`` ``->`` ``(hyvin,paremmin,parhaiten`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] ``=`` ``\a,p`` ``->`` ``a`` ``**`` ``{c2`` ``=`` ``p`` ``lock_A2`` ``=`` ``<>};`` | +| ``mkV`` | ``(huutaa`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(huutaa,huusi`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(huutaa,huudan,huusi`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(`` | +| ``huusin,huusi,huusisi,huutanut,huudettu,huutanee`` | ``Str)`` ``->`` [V #V] | +| ``caseV`` | [Case #Case] ``->`` [V #V] ``->`` [V #V] | +| ``vOlla`` | [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Case #Case] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Case #Case] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkVVf`` | [V #V] ``->`` [InfForm #InfForm] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkV2Vf`` | [V #V] ``->`` [Prep #Prep] ``->`` [InfForm #InfForm] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [Prep #Prep] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for French== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/french/ParadigmsFre.gf`` ../french/ParadigmsFre.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``accusative`` | [Prep #Prep] | +| ``genitive`` | [Prep #Prep] | +| ``dative`` | [Prep #Prep] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``mkN`` | ``(cheval`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(foie`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(oeil,yeux`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | [N #N] ``->`` ``Str`` ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``deN2`` | [N #N] ``->`` [N2 #N2] | +| ``aN2`` | [N #N] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkA`` | ``(cher`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(sec,seche`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(banal,banale,banaux,banalement`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | [A #A] ``->`` [A #A] ``->`` [A #A] | +| ``prefixA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``(finir`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(jeter,jette,jettera`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | [V2 #V2] ``->`` [V #V] | +| ``etreV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] ``=`` ``dirV2`` | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] ``=`` ``mmkV2`` | +| ``mkV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``deVV`` | [V #V] ``->`` [VV #VV] | +| ``aVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [Prep #Prep] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for German== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/german/ParadigmsGer.gf`` ../german/ParadigmsGer.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``neuter`` | [Gender #Gender] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``accusative`` | [Case #Case] | +| ``dative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``mkN`` | ``(Stufe`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(Bild,Bilder`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(x1,_,_,_,_,x6`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN2`` | ``Str`` ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``(nom,gen`` ``:`` ``Str)`` ``->`` [PN #PN] | +| ``mkPN`` | ``(nom,acc,dat,gen`` ``:`` ``Str)`` ``->`` [PN #PN] | +| ``mkA`` | ``Str`` ``->`` [A #A] | +| ``mkA`` | ``(gut,besser,beste`` ``:`` ``Str)`` ``->`` [A #A] | +| ``invarA`` | ``Str`` ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkPrep`` | ``Str`` ``->`` [Case #Case] ``->`` [Prep #Prep] | +| ``accPrep`` | [Prep #Prep] | +| ``datPrep`` | [Prep #Prep] | +| ``genPrep`` | [Prep #Prep] | +| ``von_Prep`` | [Prep #Prep] | +| ``zu_Prep`` | [Prep #Prep] | +| ``mkV`` | ``(fhren`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(sehen,sieht,sah,she,gesehen`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(geben,`` ``gibt,`` ``gib,`` ``gab,`` ``gbe,`` ``gegeben`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``Str`` ``->`` [V #V] ``->`` [V #V] | +| ``no_geV`` | [V #V] ``->`` [V #V] | +| ``seinV`` | [V #V] ``->`` [V #V] | +| ``habenV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [Case #Case] ``->`` [V #V] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Case #Case] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``accdatV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for Italian== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/italian/ParadigmsIta.gf`` ../italian/ParadigmsIta.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``--Prep`` | [Type #Type] | +| ``accusative`` | [Prep #Prep] | +| ``genitive`` | [Prep #Prep] | +| ``dative`` | [Prep #Prep] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``mkN`` | ``(cane`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(carne`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(uomo,uomini`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | [N #N] ``->`` ``Str`` ``->`` [N #N] | +| ``mkN2`` | ``Str`` ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkA`` | ``(bianco`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(solo,sola,soli,sole,solamente`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | [A #A] ``->`` [A #A] ``->`` [A #A] | +| ``prefixA`` | [A #A] ``->`` [A #A] ``=`` ``prefA`` | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``Str`` ``->`` [V #V] | +| ``mkV`` | [Verbo #Verbo] ``->`` [V #V] | +| ``mkV`` | ``(udire,odo,ode,udiamo,udiro,udii,udisti,udi,udirono,odi,udito`` ``:`` ``Str)`` ``->`` [V #V] | +| ``essereV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``v2V`` | [V2 #V2] ``->`` [V #V] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``deVV`` | [V #V] ``->`` [VV #VV] | +| ``aVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [Prep #Prep] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for Norwegian== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/norwegian/ParadigmsNor.gf`` ../norwegian/ParadigmsNor.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``neutrum`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``noPrep`` | [Prep #Prep] | +| ``mkN`` | ``Str`` ``->`` [N #N] | +| ``mkN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(bil,bilen`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(dreng,drengen,drenger,drengene`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``regN2`` | ``Str`` ``->`` [Gender #Gender] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkPN`` | [N #N] ``->`` [PN #PN] | +| ``mkA`` | ``(fin`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(fin,fint`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(galen,galet,galne`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(stor,stort,store,storre,storst`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``(snakke`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(leve,levde`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(drikke,`` ``drakk,`` ``drukket`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(spise,spiser,spises,spiste,spist,spis`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | [V #V] ``->`` ``Str`` ``->`` [V #V] | +| ``vaereV`` | [V #V] ``->`` [V #V] | +| ``depV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for Russian== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/russian/ParadigmsRus.gf`` ../russian/ParadigmsRus.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``neuter`` | [Gender #Gender] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``dative`` | [Case #Case] | +| ``accusative`` | [Case #Case] | +| ``instructive`` | [Case #Case] | +| ``prepositional`` | [Case #Case] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``mkN`` | ``(karta`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(tigr`` ``:`` ``Str)`` ``->`` [Animacy #Animacy] ``->`` [N #N] | +| ``mkN`` | ``(nomSg,`` ``genSg,`` ``datSg,`` ``accSg,`` ``instSg,`` ``preposSg,`` ``prepos2Sg,`` ``nomPl,`` ``genPl,`` ``datPl,`` ``accPl,`` ``instPl,`` ``preposPl`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [Animacy #Animacy] ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [Animacy #Animacy] ``->`` [PN #PN] | +| ``nounPN`` | [N #N] ``->`` [PN #PN] | +| ``mkA`` | ``(positive`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(positive,`` ``comparative`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` ``Str`` ``->`` [Case #Case] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkV`` | [Aspect #Aspect] ``->`` ``(presentSgP1,presentSgP2,presentSgP3,`` | +| ``pastSgP1,imperative,infinitive`` | ``Str)`` ``->`` [V #V] | +| ``mkV2`` | [V #V] ``->`` ``Str`` ``->`` [Case #Case] ``->`` [V2 #V2] | +| ``mkV3`` | [V #V] ``->`` ``Str`` ``->`` ``Str`` ``->`` [Case #Case] ``->`` [Case #Case] ``->`` [V3 #V3] | +| ``dirV2`` | [V #V] ``->`` [V2 #V2] | +| ``tvDirDir`` | [V #V] ``->`` [V3 #V3] | + + +==Paradigms for Spanish== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/spanish/ParadigmsSpa.gf`` ../spanish/ParadigmsSpa.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``masculine`` | [Gender #Gender] | +| ``feminine`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``accusative`` | [Prep #Prep] | +| ``genitive`` | [Prep #Prep] | +| ``dative`` | [Prep #Prep] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``mkN`` | ``(luz`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(baston,bastones`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``compN`` | [N #N] ``->`` ``Str`` ``->`` [N #N] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``deN2`` | [N #N] ``->`` [N2 #N2] | +| ``aN2`` | [N #N] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``(Anna`` ``:`` ``Str)`` ``->`` [PN #PN] | +| ``mkPN`` | ``(Pilar`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkA`` | ``(util`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(solo,sola,solos,solas,solamente`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(bueno`` ``:`` ``A)`` ``->`` ``(mejor`` ``:`` ``A)`` ``->`` [A #A] | +| ``prefixA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``(pagar`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(mostrar,muestro`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | [Verbum #Verbum] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``special_ppV`` | [V #V] ``->`` ``Str`` ``->`` [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``v2V`` | [V2 #V2] ``->`` [V #V] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``dirdirV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``deVV`` | [V #V] ``->`` [VV #VV] | +| ``aVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [Prep #Prep] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + +==Paradigms for Swedish== +#LParadigms + + +source [``http://www.cs.chalmers.se/~aarne/GF/lib/resource/swedish/ParadigmsSwe.gf`` ../swedish/ParadigmsSwe.gf] + + + + +|| Function | Type || +| ``Gender`` | [Type #Type] | +| ``utrum`` | [Gender #Gender] | +| ``neutrum`` | [Gender #Gender] | +| ``Number`` | [Type #Type] | +| ``singular`` | [Number #Number] | +| ``plural`` | [Number #Number] | +| ``Case`` | [Type #Type] | +| ``nominative`` | [Case #Case] | +| ``genitive`` | [Case #Case] | +| ``mkPrep`` | ``Str`` ``->`` [Prep #Prep] | +| ``noPrep`` | [Prep #Prep] | +| ``mkN`` | ``(apa`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(lik`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [N #N] | +| ``mkN`` | ``(nyckel,nycklar`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN`` | ``(museum,museet,museer,museerna`` ``:`` ``Str)`` ``->`` [N #N] | +| ``mkN2`` | ``Str`` ``->`` [N2 #N2] | +| ``mkN2`` | [N #N] ``->`` [Prep #Prep] ``->`` [N2 #N2] | +| ``mkN3`` | [N #N] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [N3 #N3] | +| ``mkPN`` | ``Str`` ``->`` [PN #PN] | +| ``mkPN`` | ``Str`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkPN`` | ``(jesus,jesu`` ``:`` ``Str)`` ``->`` [Gender #Gender] ``->`` [PN #PN] | +| ``mkA`` | ``(billig`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(bred,brett`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(tung,tyngre,tyngst`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(god,gott,goda,battre,bast`` ``:`` ``Str)`` ``->`` [A #A] | +| ``mkA`` | ``(liten,litet,lilla,sma,mindre,minst,minsta`` ``:`` ``Str)`` ``->`` [A #A] | +| ``compoundA`` | [A #A] ``->`` [A #A] | +| ``mkA2`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2 #A2] | +| ``mkAdv`` | ``Str`` ``->`` [Adv #Adv] | +| ``mkAdV`` | ``Str`` ``->`` [AdV #AdV] | +| ``mkAdA`` | ``Str`` ``->`` [AdA #AdA] | +| ``mkV`` | ``(stmmer`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(dricka,drack,druckit`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | ``(g,gr,g,gick,gtt,gngen`` ``:`` ``Str)`` ``->`` [V #V] | +| ``mkV`` | [V #V] ``->`` ``Str`` ``->`` [V #V] | +| ``depV`` | [V #V] ``->`` [V #V] | +| ``reflV`` | [V #V] ``->`` [V #V] | +| ``mkV2`` | ``Str`` ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [V2 #V2] | +| ``mkV2`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2 #V2] | +| ``mkV3`` | ``Str`` ``->`` [V3 #V3] | +| ``mkV3`` | [V #V] ``->`` [V3 #V3] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``mkV3`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V3 #V3] | +| ``mkV0`` | [V #V] ``->`` [V0 #V0] | +| ``mkVS`` | [V #V] ``->`` [VS #VS] | +| ``mkV2S`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2S #V2S] | +| ``mkVV`` | [V #V] ``->`` [VV #VV] | +| ``mkV2V`` | [V #V] ``->`` [Prep #Prep] ``->`` [Prep #Prep] ``->`` [V2V #V2V] | +| ``mkVA`` | [V #V] ``->`` [VA #VA] | +| ``mkV2A`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2A #V2A] | +| ``mkVQ`` | [V #V] ``->`` [VQ #VQ] | +| ``mkV2Q`` | [V #V] ``->`` [Prep #Prep] ``->`` [V2Q #V2Q] | +| ``mkAS`` | [A #A] ``->`` [AS #AS] | +| ``mkA2S`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2S #A2S] | +| ``mkAV`` | [A #A] ``->`` [AV #AV] | +| ``mkA2V`` | [A #A] ``->`` [Prep #Prep] ``->`` [A2V #A2V] | +| ``V0`` | [Type #Type] | + + + + +%!include: synopsis-browse.txt + + +=An Example of Usage= + + +%!include: synopsis-example.txt + |
