%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%% MASTER TEMPLATE FOR LILYPOND WORKS %%%%% %%%%% SEE ALSO: ~/Documents/Music/LilyPond Works/LilyPond Common Modifications.txt %%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \header { title = "Chromatic and Related Scales" composer = "Scott Russell" } %%%%% MUSIC GOES HERE %%%%% generalSettings = { \override Score.BarNumber #'transparent = ##t %% hide bar numbers \override Staff.TimeSignature #'break-visibility = #'#(#f #t #t) %% end of line, middle of line, beginning of line } wholetone = \relative c' { \time 3/4 %% set time signature g8^\markup {"#1. Chromatic Scale in Eighth Notes; downbeats produce ..."} gis a ais b c cis d dis e f fis | g8 gis a ais b c cis d dis e f fis | g8 ges f e ees d des c b bes a aes | g8 ges f e ees d des c b bes a aes | g2 r4 \bar "||" \break g4^\markup {"... Major Seconds = Whole Tone Scale"} a b cis dis f | g4 a b cis dis f | g4 f ees des b a | g4 f ees des b a | g2 r4 \bar "|." \break } minorthirds = \relative c' { \time 12/8 g8^\markup {"#2. Chromatic Scale in Triplets; downbeats produce ..."} gis a ais b c cis d dis e f fis | g8 gis a ais b c cis d dis e f fis | g8 ges f e ees d des c b bes a aes | g8 ges f e ees d des c b bes a aes | g2. r2. \bar "||" \break \time 4/4 g4^\markup {"... Minor Thirds = Fully-Diminished Seventh Chords"} ais cis e | g4 ais cis e | g4 e des bes | g4 e des bes | g2. r4 \bar "|." \break } augmented = \relative c' { \time 3/4 %% set time signature g16^\markup {"#3. Chromatic Scale in Sixteenth Notes; downbeats produce ..."} gis a ais b c cis d dis e f fis | g16 gis a ais b c cis d dis e f fis | g16 ges f e ees d des c b bes a aes | g16 ges f e ees d des c b bes a aes | g2 r4 \bar "||" \break g4^\markup {"... Major Thirds = Augmented Triads"} b dis | g4 b dis | g4 ees b | g4 ees b | g2 r4 \bar "|." \break } music = { \generalSettings \wholetone \minorthirds \augmented } %%%%% PUT IT ALL TOGETHER %%%%% \score { \music } \layout { %%% INSERT LAYOUT OPTIONS HERE %%% } \paper { #(set-paper-size "letter") } \version "2.12.2" % necessary for upgrading to future LilyPond versions.