From a82edb8fe84874e6dc4ee21288cb69f6ef306427 Mon Sep 17 00:00:00 2001 From: rekado Date: Fri, 30 Oct 2015 21:47:03 +0100 Subject: song2: Start it! --- 02-song2/parts/stick.ly | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 02-song2/parts/stick.ly (limited to '02-song2/parts/stick.ly') diff --git a/02-song2/parts/stick.ly b/02-song2/parts/stick.ly new file mode 100644 index 0000000..37bc7aa --- /dev/null +++ b/02-song2/parts/stick.ly @@ -0,0 +1,44 @@ +stickIntroLeft = \relative c { + 8 r16 8 r16 + 4 b8 ~ b | + 8 r16 8 r16 + 4 b8 ~ 4 | + + 8 r16 8 r16 + 4 b8 ~ b | + 8 r16 8 r16 + 8 ~ 2 | +} + +stickIntroRight = \relative c' { + fis8. fis e4 r16 ais,16 b cis d gis, | + e'8. e d4 r4. | + fis8. fis e4 r4. | + d8. cis b4 r4. | +} + + +stick = \new PianoStaff << + \set PianoStaff.midiInstrument = #"clav" + \set PianoStaff.pedalSustainStyle = #'bracket + + \new Staff \relative c' { + \key b \minor + \clef "treble_8" + + %% intro + \time 4/4 + \stickIntroRight + } + + %% staff for left hand side + \new Staff \relative c { + \key b \minor + \clef "bass" + + %% intro + \time 4/4 + \repeat unfold 2 \stickIntroLeft + } +>> + -- cgit v1.2.3