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
87 lines
1.4 KiB
Text
87 lines
1.4 KiB
Text
\version "2.19.80"
|
|
|
|
\header {
|
|
title = "Gander in the Pratie Hole"
|
|
meter = "Jig"
|
|
enteredby = "kastdeur"
|
|
number = "31"
|
|
source = "Ireland's Best Tin Whistle Tunes Volume 1"
|
|
}
|
|
|
|
global = {
|
|
\key d \major
|
|
\time 6/8
|
|
}
|
|
bpm = \tempo 4. = 100
|
|
|
|
fluteA = \fixed c' {
|
|
fis8 a d fis a d |
|
|
g8 fis g e fis g |
|
|
fis8 a d fis a d |
|
|
g8 e d d4. \breathe |
|
|
|
|
fis8 a d fis a d |
|
|
g8 fis g e[ \breathe fis g] |
|
|
fis'8 e' d' e' cis' a |
|
|
g8 e d d4. \breathe
|
|
}
|
|
fluteB = \fixed c'' {
|
|
a,8 d d d e d |
|
|
c8 a, b, c a, g, |
|
|
a,8 d d d e d |
|
|
c8 a, b, c4. \breathe |
|
|
|
|
a,8 d d d e d |
|
|
c8 a, b, c d e |
|
|
fis8 e d e cis a, |
|
|
g,8 e, d, d,4. \breathe
|
|
}
|
|
|
|
flute = \relative c'' {
|
|
% Muziek volgt hier.
|
|
\global
|
|
\repeat volta 2 { \fluteA }
|
|
\break
|
|
\repeat volta 2 { \fluteB }
|
|
}
|
|
chordA = \chordmode {
|
|
d2. | g2. | d2. | g4. d4. |
|
|
d2. | g2. | d4. a4. | g4. d4.
|
|
}
|
|
chordB = \chordmode {
|
|
d2. | c2. | d2. | c2. |
|
|
d2. | c2. | d4. a4. | g4. d4. |
|
|
}
|
|
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
|
|
}
|
|
}
|