diff --git a/examples/phrasebook/WordsNor.gf b/examples/phrasebook/WordsNor.gf index 2a07aad16..c44578392 100644 --- a/examples/phrasebook/WordsNor.gf +++ b/examples/phrasebook/WordsNor.gf @@ -262,7 +262,7 @@ concrete WordsNor of Words = SentencesNor ** \n,x,f,p -> let num = if_then_else Num n plNum sgNum in { name = case p.isPron of { - True => PossNP (mkNP the_Quant num x) p.name ; + True => PossNPPron (mkNP the_Quant num x) p.name ; _ => f num p.name x } ; isPron = False ; diff --git a/gf-summer-school-2013.html b/gf-summer-school-2013.html deleted file mode 100644 index 767bb38ef..000000000 --- a/gf-summer-school-2013.html +++ /dev/null @@ -1,288 +0,0 @@ - - - - -Third GF Summer School — Bavaria, August 2013 - - - - - -

3rd GF Summer School 2013
Scaling up Grammatical Resources

- -GF Summer School logo - -

Frauenchiemsee island, Bavaria
18th–30th August, 2013

- -

About

-

-Grammatical Framework (GF), grammaticalframework.org, is a multilingual grammar formalism -based on the idea of a shared abstract syntax and mappings between the abstract syntax and -concrete languages. GF has hundreds of users all over the world. -

-

-The GF Resource Grammar Library (RGL) implements the morphology (inflection) and basic syntax -(phrase structure) of some 26 languages: - -Bulgarian, -Catalan, -Chinese, -Danish, -Dutch, -English, -Finnish, -French, -German, -Hindi, -Interlingua, -Japanese, -Italian, -Latvian, -Nepali, -Norwegian bokmål, -Persian, -Polish, -Punjabi, -Romanian, -Russian, -Sindhi, -Spanish, -Swedish, -Thai, and -Urdu. - -These resources are freely available as open-source software. More languages are under construction, -in both in-house and external projects (Greek and Maltese forthcoming by the summer school). -

-

-We are constantly welcoming new languages, especially from new language families, as well as -EU languages not yet covered by the Resource Grammar Library -(Estonian, Lithuanian, Irish, Czech, Slovak, Hungarian, Slovene, and Portuguese). -Learn more at the RGL status page. The Summer School is an excellent place to get started with a new language. -

-

-This year's special theme of “Scaling up Grammar Resources” means -extending the existing resource grammars with the ultimate goal of -dealing with any text in the supported languages. Lexicon extension is -an obvious part of this work, but also new grammatical constructions -are of interest. Porting resources from other open-source approaches, -such as WordNets and Apertium, is one method of doing this. And -reciprocally, we want to make GF resources easily reusable in other -approaches. -

- - -

Schedule

- -

First week (18-23 August):
Introduction to GF and multilingual grammar programming

- - -

-Tutorials will be given in morning sessions; supervised exercises in the -afternoon will make the attendants familiar with programming in GF. -

- -

Second week (25-30 August):
Advanced work in specialized tracks

- - -

-In the mornings, each day is dedicated to a special track, with plenary -talks attended by all participants. -For the afternoons we want to organize group work on the various tracks, -and have the participants choose which group they join. On the last day, -results of these groups will be presented to all participants. -

- -

Teachers

-

The following list is still to be confirmed and completed.

- - -

Venue

-Frauenchiemsee island -

-The summer school will take place at the Frauenwörth Monastery, -on Frauenchiemsee island in Chiemsee lake, Bavaria, Germany (map). -

- -

Getting to Frauenwörth

- -

By plane

- -
    -
  1. Fly to Munich Airport.
  2. -
  3. Take S-Bahn line 8 to Munich East Station (Ostbahnhof), then the train to Prien at Lake Chiem. (S-Bahn/train timetable: Munich Airport - Prien)
  4. -
  5. From Prien train station to the lake harbour Prien-Stock you can walk (1.8 km, 20 min), or go by bus, taxi or Chiemsee-railway (8 min).
  6. -
  7. At Prien-Stock, take the boat to the Fraueninsel (about 30 min. ride, roughly every 45 minutes). The last boat for the island leaves Prien-Stock at 19.30 (boat timetable).
  8. -
  9. The nunnery is next to the landing pier, to the left.
  10. -
- -Alternatively, fly to Salzburg, Austria, take bus or taxi to Salzburg Main Station and then the train to Prien and go on as above. - -

By train

- -Use the line Munich-Salzburg; the trains run every hour. Schedules can be found here. Get off at Prien, then proceed as above. - -

By car

- -
    -
  1. Autobahn A8 from Munich into the direction of Salzburg; exit "Bernau", via Prien into the direction of Rimsting/Breitbrunn to Gstadt.
  2. -
  3. Park your car (no cars allowed to the island), there is sufficient parking space.
  4. -
  5. Take the ship to the Fraueninsel (about 10 min. ride).
  6. -
- -

Accomodation and travel costs

-

-Accomodation will be in the Benedictine abbey of Frauenorth on Frauenchiemsee island. -There are some rooms in categories A (€55/night), B (€45/night), and C (€30/night, no showers). - -Approximate costs breakdown: -

- - - - - - - - - - - - - - - - - - - - - - - -
Accomodation (category B)€45/night x 12€ 540
Breakfast, lunch & dinner€35/day x 12€ 420
Local travel costs (from Munich airport)€36 x 2€ 72
Total:€ 1032
- -

Registration

-

-We have now opened a registration for those of you who wish to express your interest in attending. -Precise details about costs/payments will follow soon. -

- -
-Registration form » -
- -

To receive updates about the event, kindly join the Google Group.

- -

Contact

- -

-If you have any questions about the summer school you can contact us below: -

- - - -

Sponsor

- -VolkswagenStiftung - - -

Previous summer schools

- - - - - - - diff --git a/lib/src/Makefile b/lib/src/Makefile index 88e9bb7bc..1ecf39644 100644 --- a/lib/src/Makefile +++ b/lib/src/Makefile @@ -154,3 +154,9 @@ ParseSwe: ParseEngSwe: gf -make -literal=Symb -probs=$(PROBSFILE) -name=ParseEngSwe ParseEng.pgf ParseSwe.pgf + +ParseChi: + gf -make -literal=Symb -probs=$(PROBSFILE) -name=ParseChi chinese/ParseChi.gf + +ParseEngChi: + gf -make -literal=Symb -probs=$(PROBSFILE) -name=ParseEngChi ParseEng.pgf ParseChi.pgf