stickIntro = { \time 4/4 { R1*8 } %% silly but I have to mimick the repeats for the other voices to %% make the notes line up. \time 5/4 \repeat volta 2 { r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | } \alternative { {r2. r2 | } {r2. r2 | } } } %% TODO stickThunderLeft = \relative c { fis8 e16 fis8 e16 fis8 e16 fis8 e16 fis8 e | fis8 e16 fis8 e16 fis8 e16 fis8 e16 fis8 e | fis8 e16 fis8 e16 fis8 e16 fis8 e16 fis8 e | d-. d-. d-. d-. d-. d-. d-. d-. | } %% TODO stickThunderRight = \relative c'' { a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis | a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis | a8 gis16 a8 gis16 a8 gis16 a8 gis16 a8 gis | d-. d-. d-. d-. d-. d-. d-. d-. | } %% TODO stickThemeLeft = \relative c { r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | r2. r2 | } %% TODO stickThemeRight = \relative c { fis'4. cis a' cis8 ~ | cis2. d2 | gis,4. e d' cis8 ~ | cis2. a4 gis | fis4. d gis a8 ~ | a2. ~ a4. r8 | fis4. d gis e8 ~ | e2 gis4 a4. r8 | } stickLeft = { \key fis \minor \clef "bass_8" \stickIntro \whiteNoise \stickThunderLeft \repeat volta 2 \stickThemeLeft \stickThunderLeft \repeat volta 2 \stickThemeLeft } stickRight = { \key fis \minor \stickIntro \whiteNoise \stickThunderRight \repeat volta 2 \stickThemeRight \stickThunderRight \repeat volta 2 \stickThemeRight %% TODO: this is terrible and I would never play this \repeat volta 2 \relative c' { 2 2 2 2 d,1 cis } } stick = \new PianoStaff << \set PianoStaff.midiInstrument = #"electric guitar (jazz)" \set PianoStaff.pedalSustainStyle = #'bracket \new Staff \stickRight \new Staff \stickLeft >>