diff --git a/doc/gf-quickstart.html b/doc/gf-quickstart.html
new file mode 100644
index 000000000..9f51974d3
--- /dev/null
+++ b/doc/gf-quickstart.html
@@ -0,0 +1,94 @@
+
+
GF Quickstart
+
+
+
+
+
+
+
+Aarne Ranta
+
+20 May, 2005
+
+
+Grammatical Framework Quick Start
+
+This Quick Start shows two examples of how GF can be used.
+We assume that you have downloaded and installed GF, so that
+the command gf works for you.
+
+
+
+Translation and generation
+
+When you have downloaded and installed GF:
+
+
+- Copy the files
+Paleolithic.gf,
+PaleolithicEng.gf, and
+PaleolithicIta.gf.
+
+
- Start GF with the command
+
+ gf PaleolithicIta.gf PaleolithicEng.gf
+
+
+ - Translation. Try your first translation by giving the GF command
+
+ t PaleolithicEng PaleolithicIta "the boy eats the snake"
+
+
+ - Generation. Random-generate sentences in two languages:
+
+ gr | l -multi
+
+
+ - Grammar development. Add words to the Paleolithic
+grammars and try the above commands again. For instance, add the following lines:
+
+ Black : A ; -- in Paleolithic.gf
+ Black = {s = "black"} ; -- in PaleolithicEng.gf
+ Black = {s = "nero"} ; -- in PaleolithicIta.gf
+
+and start GF again with the same command. Now you can even translate
+the boy eats the black snake.
+
+To lear more on GF commands and
+grammar development, go to the
+New Grammarian's Tutorial.
+
+
+
+Multilingual authoring
+
+This demo also requires the GUI package, which makes the command
+jgf work for you.
+
+- Download the file Letter.gfcm.
+
- Start the GF editor by the command
+
+ jgf Letter.gfcm
+
+ - When the editor window is open, select "Letter" from the "New" menu.
+
- Push the button "Random" in the lower end of the window.
+
- Move the pointer to some place in the text, e.g. to the first word (in any
+ of the languages), and click. The first word should now be highlighted and
+ a number of alternatives appear in the lower window part (a similar situation
+ is shown in the picture below).
+
- Double-click at some of the alternatives marked "ch ..." and observe how
+ the text changes in each of the languages.
+
+See the Editor User Manual
+for more information on how to use the
+editor. To change the grammars, you should not edit Letter.gfcm,
+which is low-level code generated by the GF grammar compiler. Instead, you
+can edit the files in examples/letter in the GF grammar package,
+and compile by using the script mkLetter.gfs in the same package.
+
+
+
+
+
+
diff --git a/doc/quick-editor.gif b/doc/quick-editor.gif
new file mode 100644
index 000000000..0cbe42073
Binary files /dev/null and b/doc/quick-editor.gif differ
diff --git a/index.html b/index.html
index bffbeafae..d523c1a1f 100644
--- a/index.html
+++ b/index.html
@@ -171,35 +171,8 @@ To get GF, go to the
Quick start
-When you have downloaded and installed GF:
-
-
-- Copy the files
-Paleolithic.gf,
-PaleolithicEng.gf, and
-PaleolithicIta.gf.
-
-
- Start GF with the command
-
- gf PaleolithicIta.gf PaleolithicEng.gf
-
-
- - Translation. Try your first translation by giving the GF command
-
- t PaleolithicEng PaleolithicIta "the boy eats the snake"
-
-
- - Generation. Random-generate sentences in two languages:
-
- gr | l -multi
-
-
- - Grammar development. Add words to the Paleolithic
-grammars and try the above commands again.
-
-
-To lear more on grammar development (and other aspects), go to the
-New Grammarian's Tutorial.
+When you have downloaded and installed GF, you can try one of the
+quick start examples.
@@ -231,10 +204,6 @@ Embedded GF Interpreter.
Documents
-
-User's tutorial
-on editing in the Java interface.
-
New Grammarian's Tutorial,
@@ -245,9 +214,13 @@ More up-to-date but ess detailed than the next one.
Old Grammarian's Tutorial
on writing GF grammars, with exercises.
+
+Editor User Manual
+on editing in the Java interface.
+
-GF in 25 Minutes for programmers.
+GF in 25 Minutes - overview for programmer audience.
Grammatical Framework: A Type-Theoretical