-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.php
executable file
·50 lines (35 loc) · 2.9 KB
/
faq.php
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
<?php
/*
This file is part of verb-o-matic. Copyright 2008 Luzius Thöny.
verb-o-matic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
verb-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with verb-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
header('Content-Type: text/html; charset=utf-8');
include 'header.php';
?>
<div class="mono">
<h1>Frequently asked questions (FAQ)</h1>
<p>
</p>
<h2>Why do some special characters not display properly? Why don't I see the IPA-symbols? </h2>
<p>You need to have fonts installed that support these special characters. Most modern operating systems have fonts installed by default that support a wide range of symbols, including the letters of the international phonetic alphabet (IPA). However, in some cases it might be necessary to install additional fonts. I recommend to install <a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=Gentium">Gentium</a>, <a href="http://junicode.sourceforge.net/">Junicode</a>, <a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=DoulosSILfont">Doulos</a> or <a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=CharisSILfont">Charis</a>.
</p>
<h2>Where did you get the content from?</h2>
<p>Greek verb exercises: these have been designed by me. They are based on the grammars by <a href="http://www.buch.ch/shop/bch_start_startseite/suchartikel/griechische_grammatik/eduard_bornemann/ISBN3-425-06850-4/ID3023264.html?jumpId=2762020">Bornemann/Risch</a> and <a href="http://www.buch.ch/shop/bch_buc_startseite/suchartikel/grammateion_kurz_gefasst/karl_lahmer/ISBN3-12-670170-1/ID1129893.html?jumpId=2762075">Grammateion</a>.</p>
<p>Latin vocabulary exercises: I took the words of these from the school books "Latinum" and "Adeo".</p>
<p>Greek vocabulary exercises: these have been copied by hand from the book "Kantharos" by some fellow students at my university (thanks!).</p>
<p>Japanese exercises: these have been copied by me from the book "Minna no nihongo".</p>
<h2>Is it possible to use the keyboard to navigate verb-o-matic?</h2>
<p>To some degree, yes. On most browsers, you can move to the next stage of the exercise by pressing the ENTER key on your keyboard, even if there is no input field. For the vocabulary test pages, this means that you don't have to touch the mouse at all to complete the exercise.</p>
<br>
<a href="index.php">Back to the index</a>
</div>
<?php include 'footer.php';?>