# Solfege - ear training for GNOME # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 Tom Cato Amundsen # License is GPL, see file COPYING include("include/progression-elements") header { lesson_id = "e413101c-93c0-4cad-95d0-17abf6d70749" module = elembuilder title = _("Easy harmonic progressions") lesson_heading = _("Enter the harmonic progression") elements = auto have_music_displayer = yes music_displayer_stafflines = 2 } 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-V-I" elements = progI, progII, progV, progI tonic = chord("c g e' c''") music = s % "c'' a b c" + a % "e' d d e" + t % "g' f g g" + b % "c d g, c" } question { name = "I-IV-V-I" elements = progI, progIV, progV, progI tonic = chord("c g e' c''") music = s % "c'' c b c" + a % "e' f d e" + t % "g' a g g" + b % "c f g c," } question { name = "I-V-IV-I" elements = progI, progV, progIV, progI tonic = chord("c e' g' c''") music = s % "c'' b c c" + a % "e' d f e" + t % "g' g a g" + b % "c g f c'" } question { name= "I-VI-V-I" elements = progI, progVI, progV, progI tonic = chord("c g e' c''") music = s % "c'' c d c" + a % "e' e g e" + t % "g' a b g" + b % "c a g c" }