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'")
}
|