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 12/8
}
confTempo = {
\tempo 4. = 80
}
%% Format
part = { \partial 4. \grace{s4.} s4. }
measure = { \grace {s1} s1. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Bonnie Black Isle"
meter = "Slow March"

View file

@ -0,0 +1,38 @@
% 12/8 Bonnie Black Isle
% Pipes
\version "2.18.2"
composerPipes = "D. Knox"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a8 [ d8 e8 ] |
\dblf f4. \grg d2. \grA g8 [ f8 e8 ] |
\dblf f4. \grg d2. \grg a8 [ d8 e8 ] |
\dblf f4. \grg d2. \grA g8 [ f8 d8 ] |
\dble e2.~ e4. \grg e8 [ f8 g8 ] |
\dblA A4. \hdblf f4.~ f4 A8 [ g8 f8 e8 ] |
\dblf f4. \grg d4.~ d4 f8 [ \grg a8 d8 e8 ] |
\dblf f4. \dblA A4.~ A4 a8 [ \grg a8 f8 e8 ] |
\thrwd d2. \dbld d4.
}
pipesB = {
\grg d4 c8 |
\dblb b4. \grg b8 [ c8 d8 ] \grg c4. \grg c8 [ b8 a8 ] |
\grg b4. \grg b8 [ a8 G8 ] \grg a4. \grg d4 c8 |
\dblb b4. \grg b8 [ c8 d8 ] \grg e4. \gra e8 [ d8 e8 ] |
\hdblf f4. \grg f8 [ e8 d8 ] \dble e4. \grg e8 [ f8 g8 ] |
\dblA A4. \hdblf f4.~ f4 A8 [ g8 f8 e8 ] |
\dblf f4. \grg d4.~ d4 f8 [ \grg a8 g8 e8 ] |
\dblf f4. \dblA A4.~ A4 a8 [ \grg a8 g8 e8 ] |
\thrwd d2. \dbld d4.
}
pipesC = {
\pipesA
}

View file

@ -0,0 +1,69 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
markTextEol = #(define-music-function (parser location text) (string?) #{
\once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
\once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
\mark \markup $text
#})
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part
\line
\markTextEol "Fine"
}
\break
\part
\line
\markTextEol "D.C. al Fine"
\bar "||"
}%Format
\new Voice = "pipes" {
\pipesA s4.
\pipesB s4.
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 4.
\pipesA
\pipesA
\pipesB
\pipesA
\pipesA
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}