\header { title = "Minor Scales (Natural)" subtitle = "Flats (2 octaves)" arranger = "Scott Russell" } \version "2.6.3" %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % DEFINE the variable "scale" to have these characteristics: % use relative pitch notation, % key of C Major, % don't print bar numbers at line beginnings, and % scale printed with quarter note "do" at beginning, middle, and end. scale = \relative c' { \key c \major \time 4/4 \override Staff.TimeSignature #'transparent = ##t \override Score.BarNumber #'transparent = ##t a b8 c d e f g a4 b8 c d e f g a4 g8 f e d c b a4 g8 f e d c b a2. r4 \break } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % DEFINE the variable "flatScales" to contains transposed versions of "scale" flatScales = { \transpose c f, \scale \bar "||" \transpose c bes, \scale \bar "||" \transpose c ees, \scale \bar "||" \transpose c aes, \scale \bar "||" \transpose c des \scale \bar "||" \transpose c ges, \scale \bar "||" \transpose c ces \scale \bar "|." } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % DEFINE the variable "music" to concatenate "scale" and "flatScales" music = { \scale \flatScales } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Create the complete score, printing "music" \score { \music }