1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +02:00

CMPD: added tunes

Bloody Fields of Flanders
I See Mull (Land of My Youth)
48th Highlanders of Holland
The Battle of Waterloo
Bonnie Black Isle
Rose of Kelvingrove
Highland Laddie
This commit is contained in:
Eric Teunis de Boone 2019-02-12 05:29:41 +01:00
parent 067544c5ee
commit ae5d3758ce
25 changed files with 1355 additions and 6 deletions

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 3/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Bloody Fields of Flanders"
meter = "Retreat"

View file

@ -0,0 +1,34 @@
% 3/4 Bloody Fields of Flanders
% Pipes
\version "2.18.2"
composerPipes = "John MacLellan"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesAA = {
\dble e8. [ c16 ] \grg a4 \taor a8. [ b16 ] |
\dblc c8 [ e8 ] \dblf f4 \dble e4 |
\grg \tuplet 3/2 { f8 [ g8 A8 ] } \hdble e4 \thrwd d8. [ e16 ] |
\dblc c8 [ \gre a8 ] \grg c8 [ \grg d16. c32 ] \dblb b4 |
}
pipesAB = {
\dble e8. [ c16 ] \grg a4 \taor a8. [ b16 ] |
\grip c8 [ e8 ] \dblf f4 \grg e4 |
\grg \tuplet 3/2 { f8 [ g8 A8 ] } \hdble e4 \gra e16. [ f32 ] \grg a16. [ b32 ] |
\grip c8. [ b16 ] \grG a4 \wbirl a4 |
}
pipesBA = {
\grg f8. [ g16 ] \dblA A4 \grg A8 [ e8 ] |
\grg f8 [ A8 ] \hdble e4 \dblc c4 |
\grg \tuplet 3/2 { f8 [ g8 A8 ] } \hdble e4 \thrwd d8. [ e16 ] |
\dblc c8 [ \gre a8 ] \grg c8 [ \grg d16. c32 ] \dblb b4 |
}
pipesBBA = {
\grg f8. [ g16 ] \dblA A4 \grg A8 [ e8 ] |
\grg f8 [ A8 ] \hdble e4 \dblc c4 |
\grg \tuplet 3/2 { f8 [ g8 A8 ] } \hdble e4 \gra e16. [ f32 ] \grg a16. [ b32 ] |
\grip c8. [ b16 ] \grG a4 \wbirl a4 |
}

View file

@ -0,0 +1,74 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\halfline
\break
\halfline
}
\break
\repeat volta 2 {
\halfline
\break
} \alternative {
{\halfline \break}
\halfline
}
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesAA
\pipesAB
\pipesBA
\pipesBBA
\pipesAB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\unfoldRepeats {
\repeat volta 2 {
\pipesAA
\pipesAB
}
\repeat volta 2 {
\pipesBA
} \alternative {
\pipesBBA
\pipesAB
}
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}