scores-tinwhistle/reels/the_sunny_banks.ly

81 lines
1.3 KiB
Plaintext

\version "2.19.80"
\header {
title = "The Sunny Banks"
meter = "Reel"
enteredby = "kastdeur"
number = "42"
source = "Ireland's Best Tin Whistle Tunes Volume 1"
}
global = {
\key d \major
\time 4/4
}
bpm = \tempo 2 = 60
fluteA = \relative c'' {
\repeat unfold 2 {
b8 |
a8 fis4.\turn d'4 cis8 a |
\tuplet 3/2 { b8 cis d } a8 fis
}
\alternative {
{ g4.\turn }
{ d4.\breathe }
}
}
fluteB = \relative c'' {
e8 |
\repeat unfold 2 {
fis8 d e d cis8 a4.\turn |
}
\alternative {
{ fis'8 d e fis g4 \breathe a8 g | }
{ b,8 d a fis d4. \breathe }
}
}
flute = \relative c'' {
% Muziek volgt hier.
\global
\tupletUp
\repeat volta 2 {\partial 8 \fluteA s8}
\repeat volta 2 {\partial 8 \fluteB s8}
}
chordA = \chordmode {
s8 |
d1 d2 g2 | d1 g4 a4 d4.
}
chordB = \chordmode {
s8 |
d2 a2 d2 g2 | d2 a2 g4 a4 d4.
}
chordNames = \chordmode {
\global
% Akkoordnamen volgen.
\repeat volta 2 {\partial 8 \chordA s8}
\repeat volta 2 {\partial 8 \chordB s8}
}
chordsPart = \new ChordNames \with {
chordChanges = ##t
} \chordNames
flutePart = \new Staff \with {
instrumentName = "Fl."
midiInstrument = "flute"
} \flute
\score {
<<
\chordsPart
\flutePart
>>
\layout { }
\midi {
\bpm
}
}