# Solfege - ear training for GNOME
# Copyright (C) 2001, 2004 Tom Cato Amundsen
# License is GPL, see file COPYING

header {
    lesson_id = "6fd0da37-54d4-4b17-97bd-90665ab73303"
        version = "1.1.3"
        module = idbyname
        labelformat=progression
        title = "Short online description"
        description = "Longer description with html tags"
}
tempo = 60/4
s = "\staff\relative c{ \stemUp %s}"
a = "\addvoice\relative c{ \stemDown %s}"
t = "\staff\relative c{ \clef bass \stemUp %s}"
b = "\addvoice\relative c{ \stemDown %s}"

question {
 name = "I-II-I"
 music = s % "g'' f g"
       + a % "e' d e"
       + t % "c' a c"
       + b % "c d c"
}

question {
 name = "I-III-I"
 music = s % "g'' g g"
       + a % "e' e e"
       + t % "c' b c"
       + b % "c e c"
}


question {
 name = "I-IV-I"
 music = s % "g'' a g"
       + a % "e' f e"
       + t % "c' c c"
       + b % "c f, c'"
}

question {
 name = "I-V-I"
 music = s % "g'' g g"
       + a % "e' d e"
       + t % "c' b c"
       + b % "c g c"
}

question {
 name = "I-VI-I"
 music = s % "e' e e"
       + a % "c' c c"
       + t % "g' a g"
       + b % "c a c"
}


