diff --git a/pink_floyd - money/bass.tabs.ly b/pink_floyd - money/bass.tabs.ly new file mode 100644 index 0000000..2c35fd1 --- /dev/null +++ b/pink_floyd - money/bass.tabs.ly @@ -0,0 +1,37 @@ +\version "2.19.82" + +\header { + title = "Money" + composer = "Pink Floyd" +} + +global = { + \key c \major +} + +electricBass_pinkfloyd_money = \relative c, { + \time 7/4 + % Muziek volgt hier. + \repeat volta 4 { + b4 b'8 fis8 b,8 r8 fis4 a b d | + } +} + +\score { + \new StaffGroup \with { + \consists "Instrument_name_engraver" + instrumentName = "E.Bs." + } << + \new Staff \with { + midiInstrument = "electric bass (finger)" + } { \clef "bass_8" \electricBass_pinkfloyd_money } + \new TabStaff \with { + stringTunings = #bass-tuning + } \electricBass_pinkfloyd_money + >> + \layout { } + \midi { + \tempo 4=100 + } +} +