\version "2.12.2" #(set-default-paper-size "letter") \paper { bottom-margin = 14\mm } \header { title = "Liquidy" composer = "chri d. d." } common = { \override Staff.TimeSignature #'stencil = #'() \cadenzaOn } nbar = { \bar "|" \break } melodya = { c'2 d' e' b'4 d'' e''4. f''2 e''4. d''4 b' e'2 d' c' r2. \nbar } melodyal = { s1*3 r1*3 \bar "|" } melodyb = { c'1 d'2. e'2 f'4. g'4 b'8 d'' e'' f''4 g''2 a''1\glissando \tag #'midi { g''32 f'' e'' d'' c'' b' a' g' f' e' d' } c'1 \nbar } melodybl = { s1*3 r1*3 \bar "|" } melodyc = { c'4 d' e' g'2 c''2.\glissando \tag #'midi { b'32 a' g' f' e' d' } c'1 \bar "|." \break } melodycl = { c'4 b4 a f2 c2.\glissando \tag #'midi { d32 e f g a b } c'1 \bar "|." } melodyam = { c'2 d' es' bes'4 d'' es''4. f''2 es''4. d''4 bes' es'2 d' c' r2. \nbar } melodybm = { c'1 d'2. es'2 f'4. g'4 bes'8 d'' es'' f''4 g''2 as''1\glissando \tag #'midi { g''32 f'' es'' d'' c'' bes' as' g' f' es' d' } c'1 \nbar } melodycm = { c'4 d' es' g'2 c''2.\glissando \tag #'midi { bes'32 as' g' f' es' d' } c'1 \bar "|." \break } melodyclm = { c'4 bes4 as f2 c2.\glissando \tag #'midi { d32 es f g aes bes } c'1 \bar "|." } % c d e f g a b c % c b a g f e d c melodyai = { c''2 b' a' d'4 b a4. g2 a4. b4 d' a'2 b' c'' r2. \nbar } melodybi = { c''1 b'2. a'2 g'4. f'4 d'8 b a g4 f2 e1\glissando \tag #'midi { f32 g a b c' d' e' f' g' a' b' } c''1 \nbar } melodyci = \transpose c c' \melodyc melodycli = \transpose c c' \melodycl \book { \markup { All rhythms are approximate. Hold notes for their full value before starting glissandi. } \markup {\fill-line {"1. Liquidy Major"}} \noPageBreak \score { \new PianoStaff \removeWithTag #'midi << \new Staff { \common \clef treble \melodya \melodyb \melodyc } \new Staff { \common \clef bass \melodyal \melodybl \melodycl } >> \layout {} } \markup {\fill-line {"2. Liquidy Minor"}} \noPageBreak \score { \new PianoStaff \removeWithTag #'midi << \new Staff \transpose c a { \common \clef treble \melodyam \melodybm \melodycm } \new Staff \transpose c a { \common \clef treble \melodyal \melodybl \melodyclm } >> \layout {} } \markup {\fill-line {"3. Liquidy Mirror"}} \noPageBreak \score { \new PianoStaff \removeWithTag #'midi << \new Staff { \common \clef treble \melodyai \melodybi \melodyci } \new Staff { \common \clef treble \melodyal \melodybl \melodycli } >> \layout {} } \score { \new Staff { \tempo 4=100 \melodya \melodyb << \melodyc \melodycl >> r2 \transpose c a { \melodyam \melodybm << \melodycm \melodyclm >> r2 } \melodyai \melodybi << \melodyci \melodycli >> } \midi {} } }