\header { title = "Major Scales" subtitle = "Sharps (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' { % \override Staff.TimeSignature #'transparent = ##t \override Score.BarNumber #'transparent = ##t \key c \major c d8 e f g a b c4 d8 e f g a b c4 b8 a g f e d c4 b8 a g f e d c2. r4 \bar "||" \break } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % DEFINE the variable "sharpScales" to contains transposed versions of "scale" sharpScales = { \transpose c g, \scale \bar "||" \transpose c d, \scale \bar "||" \transpose c a, \scale \bar "||" \transpose c e, \scale \bar "||" \transpose c b, \scale \bar "||" \transpose c fis, \scale \bar "||" \transpose c cis, \scale \bar "|." } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % DEFINE the variable "music" to concatenate "scale" and "sharpScales" music = { \scale \sharpScales } %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Create the complete score, printing "music" \score { << \music \new Lyrics \lyricmode { C Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 G Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 D Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 A Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 E Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 B Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 \markup { F\sharp } Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 \markup { C\sharp } Major \skip 2 \skip 1 \skip 1 \skip 1 \skip 1 } >> }