~ubuntu-branches/ubuntu/saucy/solfege/saucy

« back to all changes in this revision

Viewing changes to exercises/standard/lesson-files/interval_in_key_min

  • Committer: Bazaar Package Importer
  • Author(s): Tom Cato Amundsen
  • Date: 2010-03-28 06:34:28 UTC
  • mfrom: (1.1.10 upstream) (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100328063428-wg2bqvoce2aq4xfb
Tags: 3.15.9-1
* New upstream release.
* Redo packaging. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim: set fileencoding=iso-8859-1 :
 
2
# Solfege - ear training for GNOME
 
3
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005  Tom Cato Amundsen
 
4
# License is GPL, see file COPYING
 
5
 
 
6
# AUTHOR: Tarmo Johannes tarmo@otsakool.edu.ee
 
7
# The exercise plays tonic chord and then an interval in that key. User should enter the name of the interval an guess (write down on paper) the notes.
 
8
 
 
9
header {
 
10
    lesson_id = "intervals_in_minor"
 
11
    module = harmonicprogressiondictation
 
12
    title = _("Interval in a key (minor)")
 
13
    title[et] = "Intervall helistikus (minoor)"
 
14
   # help = "intervall-helistikus"
 
15
    lesson_heading = _("Indetify the interval played after tonic")
 
16
    lesson_heading[et] = "Määrake intervall, mis kõlab peale toonikaakordi"
 
17
    
 
18
        
 
19
}
 
20
 
 
21
 
 
22
tempo = 60/4
 
23
 
 
24
 
 
25
 
 
26
 
 
27
# 1) SEKUNDID / SECONDS: v2 - väike sekund / minor second,  s2- suur sekund / major second
 
28
 
 
29
 
 
30
question {
 
31
   name = _("m2")
 
32
   name[et] = "v2"
 
33
        tonic = chord("a c' e' a'")
 
34
        "\staff \relative c' { <a1 c e a>  <b c>  } "  
 
35
}
 
36
 
 
37
question {
 
38
   name = _("m2")
 
39
   name[et] = "v2"
 
40
        tonic = chord("a c' e' a'")
 
41
        "\staff \relative c' { <a1 c e a>  <gis' a>  } "  
 
42
}
 
43
 
 
44
question {
 
45
   name = _("m2")
 
46
   name[et] = "v2"
 
47
        tonic = chord("a c' e' a'")
 
48
        "\staff \relative c' { <a1 c e a>  <e f>  } "  
 
49
}
 
50
 
 
51
question {
 
52
 name = _("M2")
 
53
 name[et] = "s2"
 
54
        tonic = chord("a c' e' a'")
 
55
        "\staff \relative c' { <a1 c e a>  <a b>  } "  
 
56
}
 
57
 
 
58
 
 
59
question {
 
60
 name = _("M2")
 
61
 name[et] = "s2"
 
62
        tonic = chord("a c' e' a'")
 
63
        "\staff \relative c' { <a1 c e a>  <c d>  } "  
 
64
}
 
65
 
 
66
 
 
67
question {
 
68
 name = _("M2")
 
69
 name[et] = "s2"
 
70
        tonic = chord("a c' e' a'")
 
71
        "\staff \relative c' { <a1 c e a>  <d e>  } "  
 
72
}
 
73
 
 
74
 
 
75
question {
 
76
name = _("M2")
 
77
 name[et] = "s2"
 
78
        tonic = chord("a c' e' a'")
 
79
        "\staff \relative c' { <a1 c e a>  <f g>  } "  
 
80
}
 
81
 
 
82
 
 
83
 
 
84
 
 
85
 
 
86
# Tertsid / Thirds: s3 - major 3rd v3 - minor third
 
87
 
 
88
question {
 
89
 name = _("m3")
 
90
 name[et] = "v3"
 
91
        tonic = chord("a c' e' a'")
 
92
        "\staff \relative c' { <a1 c e a>  <a c>  } "  
 
93
}
 
94
 
 
95
question {
 
96
 name = _("m3")
 
97
 name[et] = "v3"
 
98
        tonic = chord("a c' e' a'")
 
99
        "\staff \relative c' { <a1 c e a>  <b d>  } "  
 
100
}
 
101
 
 
102
question {
 
103
 name = _("m3")
 
104
 name[et] = "v3"
 
105
        tonic = chord("a c' e' a'")
 
106
        "\staff \relative c' { <a1 c e a>  <d f>  } "  
 
107
}
 
108
 
 
109
 
 
110
question {
 
111
 name = _("M3")
 
112
 name[et] = "s3"
 
113
        tonic = chord("a c' e' a'")
 
114
        "\staff \relative c' { <a1 c e a>  <c e>  } "  
 
115
}
 
116
 
 
117
 
 
118
question {
 
119
 name = _("M3")
 
120
 name[et] = "s3"
 
121
        tonic = chord("a c' e' a'")
 
122
        "\staff \relative c' { <a1 c e a>  <f a>  } "  
 
123
}
 
124
 
 
125
 
 
126
 
 
127
 
 
128
# Kvardid / Fourth: p4 - perfect fourth <4 - augmented fourth
 
129
 
 
130
question {
 
131
  name = _("4")
 
132
 name[et] = "p4"
 
133
        tonic = chord("a c' e' a'")
 
134
        "\staff \relative c' { <a1 c e a>  <a d>  } "  
 
135
}
 
136
 
 
137
question {
 
138
 name = _("4")
 
139
 name[et] = "p4"
 
140
        tonic = chord("a c' e' a'")
 
141
        "\staff \relative c' { <a1 c e a>  <b e>  } "  
 
142
}
 
143
 
 
144
question {
 
145
  name = _("4")
 
146
  name[et] = "p4"
 
147
        tonic = chord("a c' e' a'")
 
148
        "\staff \relative c' { <a1 c e a>  <c f>  } "  
 
149
}
 
150
 
 
151
 
 
152
question {
 
153
 name = _("4")
 
154
 name[et] = "p4"
 
155
        tonic = chord("a c' e' a'")
 
156
        "\staff \relative c' { <a1 c e a>  <e a>  } "  
 
157
}
 
158
 
 
159
question {
 
160
  name = _("a4")
 
161
  name[et] = "<4"
 
162
        tonic = chord("a c' e' a'")
 
163
        "\staff \relative c' { <a1 c e a>  <d gis>  } "  
 
164
}
 
165
 
 
166
# Kvindid - Fifth: p5 - perfect fifth, >5 - diminished fifth
 
167
 
 
168
question {
 
169
 name = _("5")
 
170
 name[et] = "p5"
 
171
        tonic = chord("a c' e' a'")
 
172
        "\staff \relative c' { <a1 c e a>  <a e'>  } "  
 
173
}
 
174
 
 
175
 
 
176
question {
 
177
 name = _("5")
 
178
 name[et] = "p5"
 
179
        tonic = chord("a c' e' a'")
 
180
        "\staff \relative c' { <a1 c e a>  <d a'>  } "  
 
181
}
 
182
 
 
183
question {
 
184
 name = _("5")
 
185
 name[et] = "p5"
 
186
        tonic = chord("a c' e' a'")
 
187
        "\staff \relative c' { <a1 c e a>  <e b'>  } "  
 
188
}
 
189
 
 
190
question {
 
191
 name = _("d5")
 
192
 name[et] = ">5"
 
193
        tonic = chord("a c' e' a'")
 
194
        "\staff \relative c' { <a1 c e a>  <gis d'>  } "  
 
195
}
 
196
 
 
197
 
 
198
# Sekstid / Sixths: v6 - minor 6, s6 - major 6
 
199
 
 
200
question {
 
201
 name = _("m6")
 
202
 name[et] = "v6"
 
203
        tonic = chord("a c' e' a'")
 
204
        "\staff \relative c' { <a1 c e a>  <a f'>  } "  
 
205
}
 
206
 
 
207
question {
 
208
 name = _("m6")
 
209
 name[et] = "v6"
 
210
        tonic = chord("a c' e' a'")
 
211
        "\staff \relative c' { <a1 c e a>  <b g'>  } "  
 
212
}
 
213
 
 
214
question {
 
215
 name = _("m6")
 
216
 name[et] = "v6"
 
217
        tonic = chord("a c' e' a'")
 
218
        "\staff \relative c' { <a1 c e a>  <e c'>  } "  
 
219
}
 
220
 
 
221
 
 
222
question {
 
223
 name = _("M6")
 
224
 name[et] = "s6"
 
225
        tonic = chord("a c' e' a'")
 
226
        "\staff \relative c' { <a1 c e a>  <c a'>  } "  
 
227
}
 
228
 
 
229
question {
 
230
 name = _("M6")
 
231
 name[et] = "s6"
 
232
        tonic = chord("a c' e' a'")
 
233
        "\staff \relative c' { <a1 c e a>  <d b'>  } "  
 
234
}
 
235
 
 
236
 
 
237
# Septimid / Sevenths: v7 - minor 7, s6 - major 7
 
238
 
 
239
question {
 
240
 name = _("m7")
 
241
 name[et] = "v7"
 
242
        tonic = chord("a c' e' a'")
 
243
        "\staff \relative c' { <a1 c e a>  <e, d'>  } "  
 
244
}
 
245
 
 
246
 
 
247
question {
 
248
 name = _("m7")
 
249
 name[et] = "v7"
 
250
        tonic = chord("a c' e' a'")
 
251
        "\staff \relative c' { <a1 c e a>  <e d'>  } "  
 
252
}
 
253
 
 
254
question {
 
255
 name = _("m7")
 
256
 name[et] = "v7"
 
257
        tonic = chord("a c' e' a'")
 
258
        "\staff \relative c' { <a1 c e a>  <b a'>  } "  
 
259
}
 
260
 
 
261
 
 
262
 
 
263
question {
 
264
 name = _("M7")
 
265
 name[et] = "s7"
 
266
        tonic = chord("a c' e' a'")
 
267
        "\staff \relative c'' { <a1 c e a>  <a gis'>  } "  
 
268
}
 
269
 
 
270
 
 
271
question {
 
272
 name = _("M7")
 
273
 name[et] = "s7"
 
274
        tonic = chord("a c' e' a'")
 
275
        "\staff \relative c'' { <a1 c e a>  <c b'>  } "  
 
276
}
 
277