New Tune: Mary Willie's

This commit is contained in:
Eric Teunis de Boone 2019-11-07 14:22:39 +01:00
parent 531bb20f10
commit 136900c9b3
3 changed files with 107 additions and 3 deletions

View File

@ -1,5 +1,7 @@
\version "2.19.80"
\include "tinwhistle.ily"
\header {
title = "The Blue Remembered Hills"
composer = "S. Hannigan"
@ -19,7 +21,7 @@ bpm = \tempo 4 = 80
fluteA = \relative c'' {
% b4 |
e2 b4 |
fis2 b4 |
fis'2 b,4 |
g'4. fis8 e8 es8 |
b4\fermata r4 b8 a8 |
g2 fis8 g8 |
@ -62,8 +64,8 @@ flute = \relative c'' {
\break
\repeat volta 2 { \fluteB }
\alternative {
{ g2 fis4 }
{ e2. \bar "|." e2 r4 }
{ g'2 fis4 }
{ e2. \bar "|." e2 r4 }
}
}

View File

@ -331,4 +331,12 @@
\end{minipage}%
\vspace{.5in}
\noindent
\begin{minipage}{\columnwidth}
\noindent
\addcontentsline{toc}{subsection}{Mary Willie's Slide}
\lilypondfile{./slides/mary_willies.ly}%
\end{minipage}%
\vspace{.5in}
\end{document}

94
slides/mary_willies.ly Normal file
View File

@ -0,0 +1,94 @@
\version "2.19.80"
\include "tinwhistle.ily"
\header {
title = "Mary Willie's"
meter = "Slide"
enteredby = "kastdeur"
number = "107"
source = "Ireland's Best Tin Whistle Tunes Volume 2"
}
global = {
\key d \major
\time 12/8
}
bpm = \tempo 4. = 90
fluteA = \relative c'' {
d4 e8 \grace{ a8 } fis4 e8
d8 cis d b8 a b
|
g'4 a,8 cis8 b a
e'4 a,8 cis8 b a
|
d4 \breathe e8 \grace{ a8 } fis4 e8
d8 cis d b4.\lroll
|
g'4 a,8 cis8 b a
d4. \grace{ a'8 } d,4 \breathe a8
}
fluteB = \relative c'' {
d4 \breathe e8 \grace{ a8 } fis4 a8
b8 a fis a4 fis8
|
\grace{ a8 } e4 a,8 cis8 b a
e'4 a,8 cis8 b a
|
\grace{ a'8 } d,4 \breathe e8 fis4 a8
b8 a fis a4 fis8
|
e4 a,8 cis8 b a
d4. \grace{ a'8 } d,4. \breathe
}
flute = \relative c'' {
\global
\repeat volta 2 { \fluteA }
\repeat volta 2 { \fluteB }
}
chordA = \chordmode {
d1. | g2. a2. |
d1. | g2. d2. |
}
chordB = \chordmode {
d1. | a1. |
d1. | g4. a4. d2. |
}
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
}
}