scores-tinwhistle/reels/the_bag_of_spuds.ly

75 lines
1.2 KiB
Plaintext

\version "2.19.80"
\header {
title = "The Bag of Spuds"
meter = "Reel"
enteredby = "kastdeur"
number = "27"
source = "Ireland's Best Tin Whistle Tunes Volume 1"
}
global = {
\key g \major
\time 4/4
}
bpm = \tempo 2 = 60
fluteA = \relative c'' {
% Muziek volgt hier.
b8 d d b c8 e e d |
b8 d d b a4 g4 \breathe |
b8 d d b c8 e e d |
g8 a b g a4 g4 \breathe |
}
fluteB = \relative c''' {
g8 a b g e8 a a4 |
g8 a b g e4 d4 \breathe |
g8 a b g e8 a a4 |
g8 e d b a4 g4 \breathe |
}
flute = \relative c'' {
\global
\repeat volta 2 {\fluteA}
\repeat volta 2 {\fluteB}
}
chordA = \chordmode {
g2 c2 g2 d4 g2. c2 g2 d4 g4
}
chordB = \chordmode {
g2 a2:m e2:m c4 d4 g2 a2:m c2 d4 g4
}
chordNames = \chordmode {
\global
% Akkoordnamen volgen.
\repeat volta 2 {\chordA}
\repeat volta 2 {\chordB}
}
chordsPart = \new ChordNames \with {
chordChanges = ##t
} \chordNames
flutePart = \new Staff \with {
instrumentName = "Fl."
midiInstrument = "flute"
} \flute
\score {
<<
\chordsPart
\flutePart
>>
\layout { }
}
\score {
\unfoldRepeats \removeWithTag #'midiRemove <<
\chordsPart
\flutePart
>>
\midi {
\bpm
}
}