diff options
author | rekado <rekado@elephly.net> | 2016-12-06 14:29:58 +0100 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-12-06 14:29:58 +0100 |
commit | 2f55df039d30e80e3be386ae7601b2a390b17ae0 (patch) | |
tree | 52c4136ebfa57ba95393a8442cfa23b2cc44c9a1 /04-white-noise | |
parent | a3156b5fa02b2bbbda4d84714d964e325fa22f37 (diff) |
white noise: stick: Use StaffTab notation.
Diffstat (limited to '04-white-noise')
-rw-r--r-- | 04-white-noise/music/stick.ly | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/04-white-noise/music/stick.ly b/04-white-noise/music/stick.ly index a1af610..bd6a84e 100644 --- a/04-white-noise/music/stick.ly +++ b/04-white-noise/music/stick.ly @@ -1,3 +1,5 @@ +\include "../stafftab.ly" + stickIntro = { \time 4/4 { R1*8 } %% silly but I have to mimick the repeats for the other voices to @@ -218,6 +220,12 @@ stick = << \set PianoStaff.midiInstrument = #"electric guitar (jazz)" \set PianoStaff.pedalSustainStyle = #'bracket - \new Staff \stickRight - \new Staff \stickLeft + \new StaffTab = "stick right" { + \set Staff.stringTunings = #stick-matched-reciprocal-tuning + \stickRight + } + \new StaffTab = "stick left" { + \set Staff.stringTunings = #stick-matched-reciprocal-tuning + \stickLeft + } >> |