Added Riff: Blues Brothers - Peter Gunn Theme

This commit is contained in:
Eric Teunis de Boone 2019-09-08 20:21:36 +02:00
parent 2e13c67f12
commit b4958cfef3
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
\version "2.19.82"
\header {
title = "Peter Gunn Theme"
instrument = "Electric Bass"
}
\paper {
#(set-paper-size "a4")
}
global = {
\key c \major
\time 4/4
}
electricBass = \relative c, {
\global
% Muziek volgt hier.
\repeat unfold 2 {
e8 e8 fis8 e8 g8 e8 a8 g8 |
e8 e8 fis8 e8 g8 e8 a8 g8 |
}
}
\score {
\new StaffGroup \with {
\consists "Instrument_name_engraver"
instrumentName = "E.Bs."
} <<
\new Staff \with {
midiInstrument = "electric bass (finger)"
} { \clef "bass_8" \electricBass }
\new TabStaff \with {
stringTunings = #bass-tuning
} \electricBass
>>
\layout { }
\midi {
\tempo 4=100
}
}