summaryrefslogtreecommitdiffstats
path: root/doc/kwordquiz/index.docbook
blob: 74e57a9bcd43c057196463255bf6987c78b77874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
<?xml version="1.0" ?>
<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN"
 "dtd/kdex.dtd" [
  <!ENTITY kappname "&kwordquiz;">
  <!ENTITY package "kdeedu">
  <!ENTITY % addindex "IGNORE">
  <!ENTITY % English "INCLUDE"><!-- change language only here -->
]>

<book lang="&language;">

<bookinfo>
<title>The &kwordquiz; Handbook</title>

<authorgroup>
<author>
<firstname>Peter</firstname>
<surname>Hedlund</surname>
<affiliation>
<address><email>peter.hedlund@kdemail.net</email></address>
</affiliation>
</author>
<!-- TRANS:ROLES_OF_TRANSLATORS -->
</authorgroup>


<copyright>
  <year>2003</year>
  <year>2004</year>
  <year>2005</year>
  <holder>Peter B. Hedlund</holder>
</copyright>

<legalnotice>&FDLNotice;</legalnotice>


<date>2006-02-24</date>
<releaseinfo>0.8.1</releaseinfo>

<abstract>
<para>
&kwordquiz; is a flashcard and vocabulary learning program for &kde;.
</para>
</abstract>

<keywordset>
<keyword>KDE</keyword>
<keyword>kdeedu</keyword>
<keyword>KWordQuiz</keyword>
<keyword>flashcard</keyword>
<keyword>vocabulary</keyword>
<keyword>language</keyword>
<keyword>education</keyword>
<keyword>school</keyword>
<keyword>college</keyword>
<keyword>university</keyword>
</keywordset>

</bookinfo>

<chapter id="introduction">
<title>Introduction</title>
<para>
&kwordquiz; is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.
</para>
<sect1 id="easy-to-use">
<title>Easy to use</title>

<para>
With &kwordquiz; you build your own vocabulary documents in a simple and intuitive way. The basic layout is a two-column spreadsheet where you type vocabulary entries in one form that you know and in another form that you want to learn. You change the titles of the columns to reflect what you are practicing.
</para>

<sect2 id="practice-modes">
<title>Practice modes</title>

<para>Before you start a quiz you select how you want to practice. &kwordquiz; offers five different modes to make practicing more efficient. The different modes make it possible to have the quiz go through your vocabulary in sequential or random order in one or both directions.</para>
</sect2>
<sect2 id="quiz-types">
<title>Quiz types</title>

<para>When you have entered your vocabulary and selected a mode you are ready to start a quiz. The vocabulary document is hidden during the quiz so you cannot cheat. Maybe you want to start with a flashcard session, then you can move on to a multiple choice quiz or do the powerful question and answer quiz. You get instant feedback on correct and incorrect answers and you have the option to repeat any errors, further improving your learning efficiency. If you need a little extra help you can use the hint function.</para>
</sect2>
<sect2 id="vocabulary-documents">
<title>Vocabulary documents</title>
<para>
&kwordquiz; can open several types of vocabulary data. Supported are .kvtml used by other &kde; programs such as &kvoctrain;, .wql used by WordQuiz for &Windows;, .csv files with comma-separated text, and .xml.gz files created by Pauker (http://pauker.sourceforge.net). You can automatically combine several documents to one large list if you need to practice for &eg; a final exam.
</para>
<para>
&kwordquiz; can save your vocabulary documents several different formats. The default is the .kvtml format used by other &kde; programs. Other available options are the .wql format used by WordQuiz for &Windows; allowing exchange with &Windows; users, .csv, and .html.
</para>
<para>
You can have several files open at the same time and easily copy or move entries between files.
</para>
</sect2>
</sect1>
</chapter>

<chapter id="commands">
<title>Command Reference</title>

<sect1 id="file_menu">
<title>The <guimenu>File</guimenu> Menu</title>

<variablelist>
  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>N</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>New</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>New</action> creates a new blank vocabulary document
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>O</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Open...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Open</action> one or more existing vocabulary documents. Several documents can be combined to one larger list.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
<!--         <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>O</keycap></keycombo>
        </shortcut> -->
        <guimenu>File</guimenu>
        <guimenuitem>Open Recent</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Open</action> a recently used vocabulary document
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>G</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Get New Vocabularies...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Downloads</action> new vocabularies.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>S</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Save</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Save</action> the active vocabulary document to disk
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>S</keycap></keycombo>
        </shortcut> -->
        <guimenu>File</guimenu>
        <guimenuitem>Save As...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Save</action> the active vocabulary document with a new name
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>P</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Print...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Print</action> the active vocabulary document. &kwordquiz; provides several options for <link linkend="printing">printing</link> your vocabularies.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>W</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Close</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Close</action> the active vocabulary document
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Q</keycap></keycombo>
        </shortcut>
        <guimenu>File</guimenu>
        <guimenuitem>Quit</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Quit</action> &kwordquiz;
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="edit-menu">
<title>The <guimenu>Edit</guimenu> Menu</title>

<variablelist>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Undo</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Undo</action> the last command. The name of this item will change to reflect what will be undone.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>X</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Cut</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Cut</action> the current selection and place it on the clipboard
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Copy</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Copy</action> the current selection and place it on the clipboard
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Paste</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Paste</action> the content of the clipboard to the current selection. If only one cell is selected &kwordquiz; will activate smart pasting and calculate the space required for pasting and add rows if necessary.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Edit</guimenu>
        <guimenuitem>Clear</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Clear</action> the current selection
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>I</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Insert Row</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Insert</action> a new row at the current selection. If the selection extends over more than one row, an equal number of rows will be inserted.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>K</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Delete Row</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Delete</action> the selected row. If the selection extends over more than one row, all selected rows will be deleted.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>M</keycap></keycombo>
        </shortcut>
        <guimenu>Edit</guimenu>
        <guimenuitem>Mark as Blank</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Mark as Blank</action> marks selected text (or the word where the caret is) as a blank for a <link linkend="fill-in-the-blank">'Fill-in-the-blank'</link> quiz, &ie; it's enclosed in brackets. Only available if <link linkend="dlg-config-editor">Fill-in-the-blank</link> is enabled.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>M</keycap></keycombo>
        </shortcut> -->
        <guimenu>Edit</guimenu>
        <guimenuitem>Unmark Blanks</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Unmark Blanks</action> clears previously assigned blanks, &ie; brackets are removed. Only available if <link linkend="dlg-config-editor">Fill-in-the-blank</link> is enabled.
      </para>
    </listitem>
  </varlistentry>


</variablelist>
</sect1>

<sect1 id="go-to-menu">
<title>The <guimenu>Go to</guimenu> Menu</title>

<variablelist>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>F6</keycap></keycombo>
        </shortcut>
        <guimenu>Go to</guimenu>
        <guimenuitem>Editor</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Activate</action> the vocabulary <link linkend="editor">editor</link>
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>F7</keycap></keycombo>
        </shortcut>
        <guimenu>Go to</guimenu>
        <guimenuitem>Flashcard</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Start</action> a <link linkend="flashcard">flashcard</link> session
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>F8</keycap></keycombo>
        </shortcut>
        <guimenu>Go to</guimenu>
        <guimenuitem>Multiple Choice</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Start</action> a <link linkend="multiple">multiple choice</link> quiz
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>F9</keycap></keycombo>
        </shortcut>
        <guimenu>Go to</guimenu>
        <guimenuitem>Question &amp; Answer</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Start</action> a <link linkend="question-and-answer">question &amp; answer</link> quiz
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="vocabulary-menu">
<title>The <guimenu>Vocabulary</guimenu> Menu</title>

<variablelist>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>L</keycap></keycombo>
        </shortcut>
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Column Titles...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Define</action> the titles of the two columns in the vocabulary. Displays a <link linkend="dlg-languages">dialog</link>.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>X</keycap></keycombo>
        </shortcut> -->
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Font...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Change</action> the font used to display the vocabulary. If you are in flashcard session the font used to diplay the card will be changed. Displays the standard &kde; font dialog.
      </para>
    </listitem>
  </varlistentry>

  <!-- <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo>
        </shortcut>
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Special Characters...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Select</action> a special character for insertion in the vocabulary. Displays a <link linkend="dlg-special-characters">dialog</link>.
      </para>
    </listitem>
  </varlistentry>-->

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo>
        </shortcut> -->
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Rows/Columns...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Specify</action> the number of rows in the vocabulary, or define the height of selected rows or the width of selected columns. Displays a <link linkend="dlg-rows-columns">dialog</link>.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Sort...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Sort</action> the vocabulary entries. Displays a <link linkend="dlg-sort">dialog</link>.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>I</keycap></keycombo>
        </shortcut>  -->
        <guimenu>Vocabulary</guimenu>
        <guimenuitem>Shuffle</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Shuffle</action> the vocabulary entries in a random order
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="mode-menu">
<title>The <guimenu>Mode</guimenu> Menu</title>
<para>
The menu provides five different modes for the quiz.</para>
<para>
Note that the menu names will change to reflect the column titles of the currently active vocabulary document. The mode must be selected before a quiz is started. The selected mode will apply to Flashcard, Multiple Choice and Question &amp; Answer.
</para>
<variablelist>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Mode</guimenu>
        <guimenuitem>Column 1 -&gt; Column 2 In Order</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        During the quiz you will be given the entries of Column 1 and asked to provide the corresponding Column 2 entries. This will be done in the order the entries appear in the vocabulary document.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Mode</guimenu>
        <guimenuitem>Column 2 -&gt; Column 1 In Order</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        During the quiz you will be given the entries of Column 2 and asked to provide the corresponding Column 1 entries. This will be done in the order the entries appear in the vocabulary document.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Mode</guimenu>
        <guimenuitem>Column 1 -&gt; Column 2 Randomly</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        During the quiz you will be given the entries of Column 1 and asked to provide the corresponding Column 2 entries. This will be done in a random order, but each entry will be asked once.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Mode</guimenu>
        <guimenuitem>Column 2 -&gt; Column 1 Randomly</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        During the quiz you will be given the entries of Column 2 and asked to provide the corresponding Column 1 entries. This will be done in random order, but each entry will be asked once.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <!-- <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo>
        </shortcut> -->
        <guimenu>Mode</guimenu>
        <guimenuitem>Column 1 &lt;-&gt; Column 2 Randomly</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        During the quiz you will be given an entry of either Column 1 or Column 2 and asked to provide the corresponding entry in the other column. This will be done in a random order for both column and entry. Each possible combination will be asked once.
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="quiz-menu">
<title>The <guimenu>Quiz</guimenu> Menu</title>

<variablelist>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>Return</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>Check</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Check</action> if your answer is correct
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>K</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>I Know</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Count</action> as correct during a flashcard session.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul"><keycap>D</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>I Do Not Know</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Count</action> as error during a flashcard session. You can later repeat these cards by selecting <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Repeat Errors</guimenuitem></menuchoice>.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>H</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>Hint</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Get</action> the next correct letter during a Question &amp; Answer session.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>R</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>Restart</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Restart</action> the quiz session from the beginning. Will reset the scores.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <shortcut>
          <keycombo action="simul">&Ctrl;<keycap>E</keycap></keycombo>
        </shortcut>
        <guimenu>Quiz</guimenu>
        <guimenuitem>Repeat Errors</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Repeat</action> any questions you answered incorrectly. Becomes available once you have answered all questions once.
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="settings-menu">
<title>The <guimenu>Settings</guimenu> Menu</title>

<variablelist>
  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Toolbars</guimenuitem>
        <guimenuitem>Main Toolbar (KWordQuiz)</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Toggle</action> the Main Toolbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Toolbars</guimenuitem>
        <guimenuitem>Go to (KWordQuiz)</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Toggle</action> the Go to Toolbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Toolbars</guimenuitem>
        <guimenuitem>Quiz (KWordQuiz)</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Toggle</action> the Quiz Toolbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Toolbars</guimenuitem>
        <guimenuitem>Special Characters (KWordQuiz)</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Toggle</action> the Special Characters Toolbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Show/Hide Statusbar</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Toggle</action> the Statusbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Configure Shortcuts...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Configure</action> the keyboard keys you use to access the different actions.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Configure Toolbars...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Configure</action> the items you want to put in the toolbar
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Configure Notifications...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Configure</action> notifications for certain events in &kwordquiz;
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>
      <menuchoice>
        <guimenu>Settings</guimenu>
        <guimenuitem>Configure &kwordquiz;...</guimenuitem>
      </menuchoice>
    </term>
    <listitem>
      <para>
        <action>Configure</action> preferences for the vocabulary editor and the quizzes. Displays a <link linkend="dlg-config-editor">dialog</link>.
      </para>
    </listitem>
  </varlistentry>

</variablelist>
</sect1>

<sect1 id="help-menu">
<title>The <guimenu>Help</guimenu> Menu</title>
&help.menu.documentation;
</sect1>
</chapter>

<chapter id="editor">
<title>The Vocabulary Editor</title>

<para>
The vocabulary document area has the appearance of a spreadsheet-like grid. The grid consists of cells organized in two columns and a number of rows. Each column and row has a header. The column headers are used to specify the titles of the vocabulary document. They can be set by selecting <menuchoice><guimenu>Vocabulary</guimenu><guimenuitem>Column Titles...</guimenuitem></menuchoice>. The row headers number the rows consecutively.
</para>
<para>
You can click in a cell of the grid to make it the active cell. You can select several cells for copying or other editing by dragging over them with the left mouse button down. To select entire rows or columns click in the headers.
</para>


<screenshot>
  <screeninfo>The Vocabulary Editor</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-editor.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>The Vocabulary Editor</phrase>
    </textobject>
  </mediaobject>
</screenshot>

<para>
In the document you build a vocabulary of pair-wise entries in the two columns. You can enter text into the active cell simply by starting to type. The cell will now be in edit mode and you can select all or part of the text. You can also edit a cell by double-clicking it or pressing F2 and make changes directly in the cell.
</para>
<para>
When you have finished typing one entry, press the return key and the next cell will automatically become active. Hence, it's easy to quickly type several entries. You can customize this behavior by selecting <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure &kwordquiz;...</guimenuitem></menuchoice>. When you reach the bottom row of the grid, a new row will be added as you press return, so you can just continue to type. When a new window is created it has 50 rows, but there is really no limit to the number of rows you can have in a document.
</para>
</chapter>

<chapter id="flashcard">

<title>Flashcard Session</title>

<para>Select <menuchoice><guimenu>Go to</guimenu><guimenuitem>Flashcard</guimenuitem></menuchoice> to start a flashcard session on the entries of the active vocabulary document. The mode selected in the <guimenu>Mode</guimenu> menu will be used. If you change mode during a session, the session will be restarted.</para>

<para>If you are working with long expressions the window can be resized to make more space available. The font size will also influence how much will fit in the different parts of the window. By selecting <menuchoice><guimenu>Vocabulary</guimenu><guimenuitem>Font</guimenuitem></menuchoice> you can specify the font used for the flashcards.
</para>

<screenshot>
  <screeninfo>Flashcard Session</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-flashcard.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Flashcard Session</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Initially the front of the card is displayed. Use <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Check</guimenuitem></menuchoice> to see the other side.
</para>
<para>
To move on to the next card either select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>I Know</guimenuitem></menuchoice> to count the card as correct or <guimenu>Quiz</guimenu><guimenuitem>I Don't Know</guimenuitem> to count the card as incorrect.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Repeat Errors</guimenuitem></menuchoice> to repeat the cards you have counted as incorrect.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Restart</guimenuitem></menuchoice> to start the session from the beginning again. If you are using a random mode the cards will be reshuffled.
</para>
<para>
The score sections at the bottom of the screen shows the number of cards, the number of cards you have seen, the number of cards counted as correct, and the number counted as incorrect.
</para>

<tip>
<para>All items on the <guimenu>Quiz</guimenu> menu are available on the Quiz toolbar that is displayed on the right by default.</para>
</tip>

</chapter>

<chapter id="multiple">

<title>Multiple Choice Session</title>

<para>
Select <menuchoice><guimenu>Go to</guimenu><guimenuitem>Multiple Choice</guimenuitem></menuchoice> to start a multiple choice quiz on the entries in the active vocabulary document. The mode selected in the <guimenu>Mode</guimenu> menu will be used. If you change mode during a session, the session will be restarted.
</para>
<para>
If you are working with long expressions the window can be resized to make more room. The font size (selected for the editor) will also influence how much will fit in the different parts of the window.
</para>
<para>
In the example below the user gave an incorrect answer to the previous question. He/she is now about to answer the next question.
</para>

<screenshot>
  <screeninfo>Multiple Choice Session</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-multiple.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Multiple Choice Session</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Your choices are shown on the top left. Select the one you think is correct. Use <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Check</guimenuitem></menuchoice> to see if the answer is correct. If you have activated the automatic mode in <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure &kwordquiz;...</guimenuitem></menuchoice> your selection is checked immediately.
</para>
<para>
The previous question is shown below the current. The answer you gave is also displayed. If you answered incorrectly the correct answer is shown.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Repeat Errors</guimenuitem></menuchoice> to repeat the questions you answered incorrectly.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Restart</guimenuitem></menuchoice> to start the session from the beginning again. If you are using a random mode the questions will be reshuffled.
</para>
<para>
The score sections at the bottom of the screen shows the number of questions, the number of questions you have answered, the number of correct answers, and the number of incorrect answers.
</para>

<tip>
<para>All items on the <guimenu>Quiz</guimenu> menu are available on the Quiz toolbar that is displayed on the right by default.</para>
</tip>
</chapter>


<chapter id="question-and-answer">

<title>Question &amp; Answer Session</title>
<para>
Select <menuchoice><guimenu>Go to</guimenu><guimenuitem>Question &amp; Answer</guimenuitem></menuchoice> to start a question &amp; answer session on the entries in the active vocabulary. The mode selected in the <guimenu>Mode</guimenu> menu will be used. If you change mode during a session, the session will be restarted.
</para>
<para>
If you are working with long expressions the window can be resized to make more room. The font size (selected for the editor) will also influence how much will fit in the different parts of the window.
</para>
<para>
In the example below the user gave a correct answer to the previous question (to see how incorrect answers are handled, see the <link linkend="multiple">Multiple Choice</link> chapter). He/she is now about to answer the next question.
</para>

<screenshot>
  <screeninfo>Question &amp; Answer Session</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-qanda.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Question &amp; Answer Session</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Your question is shown on the top left. Type your answer in the edit field. Use <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Check</guimenuitem></menuchoice> or <keycap>Enter</keycap> to see if the answer is correct.
</para>
<para>
The previous question is shown below the current. The answer you gave is also displayed. If you answered incorrectly the correct answer is shown.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Hint</guimenuitem></menuchoice> to get the next correct letter of the answer. In <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure &kwordquiz;...</guimenuitem></menuchoice> you can select that questions where you use the hint function are always counted as incorrect.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Repeat Errors</guimenuitem></menuchoice> to repeat the questions you answered incorrectly.
</para>
<para>
Select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Restart</guimenuitem></menuchoice> to start the session from the beginning again. If you are using a random mode the questions will be reshuffled.
</para>
<para>
The score sections at the bottom of the screen shows the number of questions, the number of questions you have answered, the number of correct answers, and the number of incorrect answers.
</para>

<tip>
<para>All items on the <guimenu>Quiz</guimenu> menu are available on the Quiz toolbar that is displayed on the right by default.</para>
</tip>
</chapter>

<chapter id="fill-in-the-blank">
<title>Fill-in-the-blank</title>

<para>
'Fill-in-the-blank' is a powerful way to practice in &kwordquiz;. It is a special kind of question and answer quiz that needs to be described in more detail. In order to use this feature you must turn it on in the <link linkend="dlg-config-editor">configuration dialog</link>.
</para>

<para>
Consider the following table. It could be a vocabulary in &kwordquiz;:
</para>

<informaltable><tgroup cols="3">
<thead>
<row>
<entry>English</entry>
<entry>German</entry>
</row>
</thead>

<tbody>
<row>
<entry>1</entry>
<entry>We own a computer</entry>
<entry>Wir besitzen einen Computer</entry>
</row>

<row>
<entry>2</entry>
<entry>We own a computer</entry>
<entry>Wir [besitzen] einen Computer</entry>
</row>

<row>
<entry>3</entry>
<entry>We own a computer</entry>
<entry>Wir [besitzen einen] Computer</entry>
</row>

<row>
<entry>4</entry>
<entry>We own a computer</entry>
<entry>Wir [besitzen] einen [Computer]</entry>
</row>
</tbody>
</tgroup>
</informaltable>

<para>
The important thing to note is the placement of the brackets. They tell &kwordquiz; how the quiz should be performed.
</para>
<para>
In 1. there are no brackets. Assuming English is the question and German the answer you have to give the entire expression 'Wir besitzen einen Computer' for a correct answer.
</para>
<para>
In 2. &kwordquiz; would display the question but also 'Wir ........ einen Computer'. For a correct answer it is sufficient to write 'besitzen'.
</para>
<para>
3. shows that a blank can consist of more than one word. The correct answer is 'besitzen einen'.
</para>
<para>
In 4. there are two separate blanks. To specify that in the answer you have to write 'besitzen; Computer', i.e separate the blanks with a semicolon in order to get a correct answer.
</para>
<para>
Marked blanks are only of relevance if they appear in the answer. Otherwise the brackets are ignored. Furthermore, brackets have no effect in multiple choice quizzes. To simplify the creation of 'Fill-in-the-blank' vocabularies there are toolbar and menu commands to mark and unmark blanks. Of course you can also just type the brackets. &kwordquiz; checks the syntax. If the text appears in red there is something wrong with the brackets and a quiz cannot be started.
</para>
<para>
The 'Fill-in-the-blank' features can be turned on and off in the Options dialog. Turning them of will make it possible to use fonts that map other characters to the positions of the brackets. It will also speed up performance slightly.
</para>
</chapter>

<chapter id="printing">
<title>Printing</title>
<para>
&kwordquiz; provides the ability to print vocabulary documents in several different ways. When selecting <menuchoice><guimenu>File</guimenu><guimenuitem>Print...</guimenuitem></menuchoice> you are presented with the standard &kde; print dialog. In order to get access to the special &kwordquiz; features you need to click on the <guibutton>Options&gt;&gt;</guibutton> to see the Vocabulary Options tab. On this tab you can select to print the document as a vocabulary list (&ie; as displayed in the editor), a vocabulary exam, or as flashcards.
</para>
<screenshot>
  <screeninfo>Vocabulary Printing Options</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-print-type.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Vocabulary Printing Options</phrase>
    </textobject>
  </mediaobject>
</screenshot>

<formalpara>
<title>Vocabulary list</title>
<para>The vocabulary will be printed as displayed in the editor. This includes font, row heights, and column widths. Make sure that the columns are narrow enough to fit on the page.</para>
</formalpara>
<screenshot>
  <screeninfo>Print Vocabulary List</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-print-list.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Print Vocabulary List</phrase>
    </textobject>
  </mediaobject>
</screenshot>

<formalpara>
<title>Vocabulary exam</title>
<para>The vocabulary will be printed as displayed in the editor, except that the right column will be left empty and a third column for scoring is added. Settings used include font, row heights, and column widths. Make sure that the columns are narrow enough to fit on the page.</para>
</formalpara>
<screenshot>
  <screeninfo>Print Vocabulary Exam</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-print-exam.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Print Vocabulary Exam</phrase>
    </textobject>
  </mediaobject>
</screenshot>

<formalpara>
<title>Flashcard</title>
<para> Two 3" x 5" cards per page. The cards will always be printed in landscape.</para>
</formalpara>
<screenshot>
  <screeninfo>Print Flashcards</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-print-flashcard.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Print Flashcards</phrase>
    </textobject>
  </mediaobject>
</screenshot>

</chapter>

<chapter id="dialogs">
<title>Dialogs</title>
<sect1 id="dlg-config-editor">
<title>Configure Editor</title>
<screenshot>
  <screeninfo>Configure Editor</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-configure-editor.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Configure Editor</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
You can configure the behavior of the <keycap>Enter</keycap> key when working in the editor.
</para>
<para>
You can also select if the functions for <link linkend="fill-in-the-blank">Fill-in-the-blank</link> should be activated. Turning them off will speed up performance a little.
</para>
<para>
Select <guibutton>Defaults</guibutton> to restore all settings to predefined defaults. Select <guibutton>Apply</guibutton> to make your changes without closing the dialog. Select <guibutton>OK</guibutton> to make your changes and close the dialog. Select <guibutton>Cancel</guibutton> to close the dialog without making any changes.
</para>
</sect1>

<sect1 id="dlg-config-quiz">
<title>Configure Quiz</title>
<screenshot>
  <screeninfo>Configure Quiz</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-configure-quiz.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Configure Quiz</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
For flashcard sessions you can select if the cards should be flipped automatically, and if they should be counted as correct or incorrect. Enter a time delay in seconds for the automatic flipping.
</para>
<para>
For multiple choice sessions you can select if your choice should be checked immediately or if you have to select <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Check</guimenuitem></menuchoice> first.
</para>
<para>
For question &amp; answer sessions you can select if questions where you use  <menuchoice><guimenu>Quiz</guimenu><guimenuitem>Hint</guimenuitem></menuchoice> should be counted as incorrect.
</para>
<para>
For all sessions you can select if the scores should be displayed as percent instead of absolute numbers.
</para>
<para>
Select <guibutton>Defaults</guibutton> to restore all settings to predefined defaults. Select <guibutton>Apply</guibutton> to make your changes without closing the dialog. Select <guibutton>OK</guibutton> to make your changes and close the dialog. Select <guibutton>Cancel</guibutton> to close the dialog without making any changes.
</para>

</sect1>

<sect1 id="dlg-config-appearance">
<title>Configure Flashcard Appearance</title>
<screenshot>
  <screeninfo>Configure Flashcard Appearance</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-configure-appearance.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Configure Flashcard Appearance</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
For flashcard sessions you can select the <guilabel>Font:</guilabel> and the colors of text, card and frames. Click the <guibutton>Flip</guibutton> to switch between the <guilabel>Front</guilabel> and the <guilabel>Back</guilabel> of the cards.
</para>
<para>Select <guibutton>Defaults</guibutton> to restore all settings to predefined defaults. Select <guibutton>Apply</guibutton> to make your changes without closing the dialog. Select <guibutton>OK</guibutton> to make your changes and close the dialog. Select <guibutton>Cancel</guibutton> to close the dialog without making any changes.
</para>

</sect1>

<sect1 id="dlg-config-characters">
<title>Configure Special Characters</title>
<screenshot>
  <screeninfo>Configure Special Characters</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-configure-characters.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Configure Special Characters</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Nine configurable actions are available for insertion of special characters into the vocabulary. Select one of the actions in the list and then click the <guibutton>Character...</guibutton> button to <link linkend="dlg-special-characters">select</link> a character for that action. A larger preview of the current character is displayed.
</para>
<para>
Changing the keyboard shortcut associated with each action can be done by selecting <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure Shortcuts...</guimenuitem></menuchoice>.
</para>

<para>
Select <guibutton>Defaults</guibutton> to restore all settings to predefined defaults. Select <guibutton>Apply</guibutton> to make your changes without closing the dialog. Select <guibutton>OK</guibutton> to make your changes and close the dialog. Select <guibutton>Cancel</guibutton> to close the dialog without making any changes.
</para>

</sect1>

<sect1 id="dlg-languages">
<title>Column Titles</title>
<screenshot>
  <screeninfo>Column Titles</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-languages.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Column Titles</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Use this dialog to define the column titles of the vocabulary. Select <guibutton>OK</guibutton> to make your changes or <guibutton>Cancel</guibutton> to discard any changes.
</para>
</sect1>

<sect1 id="dlg-special-characters">
<title>Special Characters</title>
<screenshot>
  <screeninfo>Special Characters</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-characters.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Special Characters</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Use this dialog to select any special character you want to associate with the current special character <link linkend="dlg-config-characters">action</link>.
</para>

</sect1>

<sect1 id="dlg-rows-columns">
<title>Rows/Columns</title>
<screenshot>
  <screeninfo>Rows/Columns</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-rowscolumns.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Rows/Columns</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Use this dialog to specify the number of rows you want in the vocabulary. You can also adjust the width (in pixels) of the selected columns and the height (in pixels) of the selected rows. Select <guibutton>OK</guibutton> to make your changes or <guibutton>Cancel</guibutton> to discard any changes.
</para>
<warning>
<para>
Specifying a number of rows lower than what currently is in the vocabulary may lead to loss of data.
</para>
</warning>

</sect1>

<sect1 id="dlg-sort">
<title>Sort</title>
<screenshot>
  <screeninfo>Sort</screeninfo>
  <mediaobject>
    <imageobject>
      <imagedata fileref="kwq-dlg-sort.png" format="PNG" />
    </imageobject>
    <textobject>
      <phrase>Sort</phrase>
    </textobject>
  </mediaobject>
</screenshot>
<para>
Use this dialog to sort the vocabulary alphabetically. You can specify if the sort should be based on the left (French in this example) or right (English in this example) column and if it should be in ascending or descending order. Select <guibutton>OK</guibutton> to do the sort or <guibutton>Cancel</guibutton> to leave the vocabulary unchanged.
</para>
</sect1>

</chapter>

<chapter id="faq">
<title>Questions and Answers</title>

&reporting.bugs;
&updating.documentation;

<qandaset id="faqlist">

  <qandaentry>
    <question>
      <para>
        Can I combine several vocabularies to one.
      </para>
    </question>
    <answer>
      <para>
        Yes, when you select <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice> you can highlight more than one file in the dialog. By default they will be opened in separate windows, but if you select the check box <guibutton>Join selected files into one list</guibutton>, then the data in all files will be combined into one new list.
      </para>
    </answer>
  </qandaentry>

</qandaset>
</chapter>

<chapter id="credits">

<title>Credits and License</title>

<para>
&kwordquiz;
</para>
<para>
Program copyright 2003-2004 Peter B. Hedlund <email>peter.hedlund@kdemail.net</email>
</para>

<para>
Documentation copyright 2003-2004 Peter B. Hedlund <email>peter.hedlund@kdemail.net</email>
</para>

<!-- TRANS:CREDIT_FOR_TRANSLATORS -->

&underFDL;   <!-- FDL: do not remove -->
&underGPL;   <!-- GPL License -->

</chapter>

<appendix id="installation">
<title>Installation</title>

<sect1 id="getting-kwordquiz">
<title>How to obtain &kwordquiz;</title>

&install.intro.documentation;

</sect1>

<sect1 id="compilation">
<title>Compilation and installation</title>

&install.compile.documentation;

</sect1>
</appendix>

&documentation.index;
</book>
<!--
Local Variables:
mode: sgml
sgml-minimize-attributes: nil
sgml-general-insert-case: lower
sgml-indent-step:0
sgml-indent-data:nil
End:
-->