mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 12:29:22 +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:
parent
067544c5ee
commit
ae5d3758ce
25 changed files with 1355 additions and 6 deletions
18
3-4_marches/bloody_fields_of_flanders/config.ily
Normal file
18
3-4_marches/bloody_fields_of_flanders/config.ily
Normal 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"
|
34
3-4_marches/bloody_fields_of_flanders/notes.pipes.ily
Normal file
34
3-4_marches/bloody_fields_of_flanders/notes.pipes.ily
Normal 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 |
|
||||
}
|
74
3-4_marches/bloody_fields_of_flanders/pipes.ly
Normal file
74
3-4_marches/bloody_fields_of_flanders/pipes.ly
Normal 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
|
||||
}
|
||||
}
|
17
3-4_marches/i_see_mull/config.ily
Normal file
17
3-4_marches/i_see_mull/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\key d \major
|
||||
\time 3/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
measure = { \grace {s1} s2. | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "I See Mull (Land of My Youth)"
|
||||
meter = "Retreat"
|
31
3-4_marches/i_see_mull/notes.pipes.ily
Normal file
31
3-4_marches/i_see_mull/notes.pipes.ily
Normal file
|
@ -0,0 +1,31 @@
|
|||
% 3/4 I See Mull
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = "PM M.D. Roy"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg f8 [ g8 ] \grA e4~ e4 |
|
||||
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ g8 ] \hdble e4 \birl a4 |
|
||||
\grg e8 [ f8 ] \thrwd d4~ d4
|
||||
}
|
||||
pipesB = {
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
\grg f8 [ g8 ] \grA e4~ e4 |
|
||||
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ g8 ] \hdble e4 \birl a4 |
|
||||
\grg e8 [ f8 ] \thrwd d4~ d4
|
||||
}
|
54
3-4_marches/i_see_mull/notes.pipes.seconds.ily
Normal file
54
3-4_marches/i_see_mull/notes.pipes.seconds.ily
Normal file
|
@ -0,0 +1,54 @@
|
|||
% 3/4 I See Mull
|
||||
% Pipes (Seconds)
|
||||
\version "2.18.2"
|
||||
composerPipesSecnd = ""
|
||||
arrangerPipesSecnd = "PM M.D. Roy"
|
||||
pipessecndglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipessecndAA = {
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg f8 [ g8 ] \grA e4~ e4 |
|
||||
|
||||
\grg f8 [ A8 ] \hdblf f4 \thrwd d4 |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ g8 ] \hdble e4 \birl a4 |
|
||||
\grg e8 [ f8 ] \thrwd d4~ d4
|
||||
}
|
||||
pipessecndAB = {
|
||||
\grg d8 [ f8 ] \thrwd d4 \gre b4 |
|
||||
\grg c8 [ b8 ] \grg G4 \grg f4 |
|
||||
\grg d8 [ f8 ] \thrwd d4 \dblf f4 |
|
||||
\grg d8 [ e8 ] \grg c4~ c4 |
|
||||
|
||||
\grg d8 [ f8 ] \thrwd d4 \gre b4 |
|
||||
\grg c8 [ b8 ] \grg G4 \grg f4 |
|
||||
\grg d8 [ e8 ] \grg c4 \grip c4 |
|
||||
\dblg g8 [ A8 ] \hdblf f4~ f4
|
||||
}
|
||||
|
||||
pipessecndBA = {
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
\grg e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
\grg f8 [ g8 ] \grA e4~ e4 |
|
||||
|
||||
\grg f8 [ A8 ] \grg A4 \hdblf f8 [ d8 ] |
|
||||
e8 [ d8 ] \grg b4 \grG a4 |
|
||||
\grg f8 [ g8 ] \hdble e4 \birl a4 |
|
||||
\grg e8 [ f8 ] \thrwd d4~ d4
|
||||
}
|
||||
pipessecndBB = {
|
||||
\grg d8 [ f8 ] \gre f4 \dbld d8 [ b8 ] |
|
||||
\grg c8 [ b8 ] \grg G4 \grg f4 |
|
||||
\grg d8 [ f8 ] \gre f4 \dble e8 [ b8 ] |
|
||||
\grg d8 [ e8 ] \grg c4~ c4 |
|
||||
|
||||
\grg d8 [ f8 ] \gre f4 \dbld d8 [ b8 ] |
|
||||
\grg c8 [ b8 ] \grg G4 \grg f4 |
|
||||
\grg d8 [ e8 ] \grg c4 \grip c4 |
|
||||
\dblg g8 [ A8 ] \hdblf f4~ f4
|
||||
}
|
129
3-4_marches/i_see_mull/pipes.full.ly
Normal file
129
3-4_marches/i_see_mull/pipes.full.ly
Normal file
|
@ -0,0 +1,129 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "bagpipe.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.pipes.ily"
|
||||
\include "./notes.pipes.seconds.ily"
|
||||
%\include "./notes.pipes.thirds.ily"
|
||||
|
||||
\layout {
|
||||
indent = 8.0
|
||||
short-indent = 2.0
|
||||
}
|
||||
|
||||
\score {
|
||||
\new StaffGroup \with {
|
||||
\override VerticalAxisGroup #'remove-first = ##t
|
||||
} <<
|
||||
\new Staff = "pipes" \with {
|
||||
instrumentName = \markup{ \instrumentPipes }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
} {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\line
|
||||
\line \bar "||"
|
||||
\break
|
||||
\line
|
||||
\line \bar "|."
|
||||
|
||||
}%Format
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
\pipesB
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
\new Staff = "seconds" \with {
|
||||
instrumentName = \markup{ \instrumentPipesSecnd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
|
||||
\RemoveEmptyStaves
|
||||
} {
|
||||
\pipessecndglobal
|
||||
|
||||
R2.*8
|
||||
\pipessecndAB
|
||||
|
||||
R2.*8
|
||||
\pipessecndBB
|
||||
}
|
||||
%{ \new Staff = "thirds" \with {
|
||||
instrumentName = \markup{ \instrumentPipesThrd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipeTthrd }
|
||||
} {
|
||||
\pipesthrdglobal
|
||||
|
||||
}
|
||||
%}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
|
||||
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \composerPipesthrd ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
|
||||
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \instrumentPipesthrd }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\global
|
||||
\new Staff = "pipes" \with {
|
||||
midiInstrument = #"bagpipe"
|
||||
instrumentName = \markup{ \instrumentPipes }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
} {
|
||||
\pipeglobal
|
||||
%%Tune
|
||||
|
||||
\pipesA
|
||||
\pipesA
|
||||
\pipesB
|
||||
\pipesB
|
||||
|
||||
}
|
||||
\new Staff = "seconds" \with {
|
||||
midiInstrument = #"bagpipe"
|
||||
instrumentName = \markup{ \instrumentPipesSecnd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
|
||||
} {
|
||||
\pipessecndglobal
|
||||
%% Seconds
|
||||
\pipessecndAA
|
||||
\pipessecndAB
|
||||
\pipessecndBA
|
||||
\pipessecndBB
|
||||
|
||||
}
|
||||
%{ \new Staff = "thirds" \with {
|
||||
midiInstrument = #"bagpipe"
|
||||
instrumentName = \markup{ \instrumentPipesThrd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipeThrd }
|
||||
} {
|
||||
\pipesthrdglobal
|
||||
%% Thirds
|
||||
}
|
||||
%}
|
||||
>>
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
55
3-4_marches/i_see_mull/pipes.ly
Normal file
55
3-4_marches/i_see_mull/pipes.ly
Normal file
|
@ -0,0 +1,55 @@
|
|||
\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 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
|
||||
\pipesA
|
||||
\pipesB
|
||||
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
54
3-4_marches/i_see_mull/pipes.seconds.ly
Normal file
54
3-4_marches/i_see_mull/pipes.seconds.ly
Normal file
|
@ -0,0 +1,54 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "bagpipe.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.pipes.seconds.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipessecndglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\line
|
||||
\line \bar "||"
|
||||
\break
|
||||
\line
|
||||
\line \bar "|."
|
||||
|
||||
}%Format
|
||||
|
||||
\new Voice = "seconds" {
|
||||
\pipessecndAA
|
||||
\pipessecndAB
|
||||
|
||||
\pipessecndBA
|
||||
\pipessecndBB
|
||||
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSecnd
|
||||
composer = \composerPipesSecnd
|
||||
arranger = \arrangerPipesSecnd
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipessecndglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSecnd
|
||||
composer = \composerPipesSecnd
|
||||
arranger = \arrangerPipesSecnd
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue