From 136900c9b3c04c231b0f65623f54dd6dc7ac6e85 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Thu, 7 Nov 2019 14:22:39 +0100 Subject: [PATCH] New Tune: Mary Willie's --- airs/blue_remembered_hills.ly | 8 +-- book/book.lytex | 8 +++ slides/mary_willies.ly | 94 +++++++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+), 3 deletions(-) create mode 100644 slides/mary_willies.ly diff --git a/airs/blue_remembered_hills.ly b/airs/blue_remembered_hills.ly index 6f37681..2a9a836 100644 --- a/airs/blue_remembered_hills.ly +++ b/airs/blue_remembered_hills.ly @@ -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 } } } diff --git a/book/book.lytex b/book/book.lytex index 9d6fb87..ddc491b 100644 --- a/book/book.lytex +++ b/book/book.lytex @@ -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} diff --git a/slides/mary_willies.ly b/slides/mary_willies.ly new file mode 100644 index 0000000..0ca5928 --- /dev/null +++ b/slides/mary_willies.ly @@ -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 + } +}