\header { title = "Minor Scales (Natural)" 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' { \key c \major \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 "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 }