32c7e6dc9b
Included build wrapper script. It adds lib/tinwhistle to search path (so .../tinwhistle.ily can be easily included) And invokes the stylesheet at lib/styles/tinwhistle.ily
80 lines
1.3 KiB
Text
80 lines
1.3 KiB
Text
\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
|
|
}
|
|
}
|