[go: up one dir, main page]

File: diatonic-2

package info (click to toggle)
solfege 3.10.3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 12,408 kB
  • ctags: 4,270
  • sloc: python: 22,161; xml: 7,536; ansic: 4,442; makefile: 685; sh: 308
file content (108 lines) | stat: -rw-r--r-- 1,727 bytes parent folder | download | duplicates (2)
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
# Solfege - ear training for GNOME
# Copyright (C) 2001, 2002, 2003, 2004, 2005  Giovanni Chierico
# License is GPL, see file COPYING

header {
    lesson_id = "de9be08c-ca53-40e3-814f-ac68d11c2e3f"
    module = idproperty
    flavour = "chord"
    title = _("Diatonic chords & inversions")
}

##################################################
question {
 name = _i("chord|maj7")
 inversion = 0
 chord("c' e' g' b'")
}

question {
 name = _i("chord|maj7")
 inversion = 1
 chord("e c' g' b'")
}

question {
 name = _i("chord|maj7")
 inversion = 2
 chord("g c' e' b'")
}

question {
 name = _i("chord|maj7")
 inversion = 3
 chord("b c' e' g'")
}
##################################################
question {
 name = _i("chord|m7")
 inversion = 0
 chord("c' ees' g' bes'")
}

question {
 name = _i("chord|m7")
 inversion = 1
 chord("ees c' g' bes'")
}

question {
 name = _i("chord|m7")
 inversion = 2
 chord("g c' ees' bes'")
}

question {
 name = _i("chord|m7")
 inversion = 3
 chord("bes c' ees' g'")
}
##################################################
question {
 name = _i("chord|7")
 inversion = 0
 chord("c' e' g' bes'")
}

question {
 name = _i("chord|7")
 inversion = 1
 chord("e c' g' bes'")
}

question {
 name = _i("chord|7")
 inversion = 2
 chord("g c' e' bes'")
}

question {
 name = _i("chord|7")
 inversion = 3
 chord("bes c' e' g'")
}
##################################################
question {
 name = _i("chord|m7b5")
 inversion = 0
 chord("c' ees' ges' bes'")
}

question {
 name = _i("chord|m7b5")
 inversion = 1
 chord("ees c' ges' bes'")
}

question {
 name = _i("chord|m7b5")
 inversion = 2
 chord("ges c' ees' bes'")
}

question {
 name = _i("chord|m7b5")
 inversion = 3
 chord("bes c' ees' ges'")
}