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

New Tune: The Soldier's Return

Changed Side for Cabar Feidh and Mackenzie Highlanders
Added Parts to Jolly Beggarman
This commit is contained in:
Eric Teunis de Boone 2019-06-25 09:57:27 +02:00
parent 636120eaf9
commit c46910bdfc
10 changed files with 208 additions and 39 deletions

View file

@ -7,6 +7,12 @@ arrangerSideSimple = "E.T. de Boone, 2018"
sideglobal = {
\eighthBeaming
}
%% Optional Flams in Ending
optflamd = \drummode { \drumgrace { \parenthesize g8 } }
optflamg = \drummode { \drumgrace { \parenthesize d8 } }
optflam = #(autohandFunc optflamg optflamd)
% Music
simpleSnarepone = \drummode {
g8 |
@ -43,9 +49,9 @@ simpleSnareEndingI = \drummode { \tutti {
}}
simpleSnareEndingII = \drummode {
g8 |
\flam d16 g d \flam g
d16 g \flam d g
d16 \flam g d g
\flam d16 g \optflam d \flam g
d16 \optflam g \flam d g
\optflam d16 \flam g d \optflam g
d4:32(
|
d8) \flam g8

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 4/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 4 \grace{s4.} s4 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 2 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Soldier's Return"
meter = "March"

View file

@ -0,0 +1,31 @@
% 4/4 the Soldier's Return
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg d8. [ e16 ] |
\dblf f4 a4 \wbirl a4 \thrwd d8. [ c16 ] |
\dblb b8 [ \gre a8 ] \grg b16 [ d8. ] \dble e4
\thrwd d8. [ e16 ] |
\dblf f4 \wbirl a4 \grA g8 [ f8 ] \dble e8 [ d8 ] |
\dblb b4. c8 \thrwd d4
}
pipesBA = {
a4 |
\thrwd d8. [ e16 ] \grg f8 [ g8 ] \dblA A4. f8 |
\dblg g8. [ f16 ] \grg e8 [ d8 ] \dble e4 \wbirl a4 |
\thrwd d8. [ e16 ] \grg f8 [ g8 ] \dblA A4. g8 |
\grA f4. g8 \dblA A4 \wbirl a4
}
pipesBB = {
\thrwd d8. [ e16 ] \grg f8 [ g8 ] \dblA A4. f8 |
\dblg g8. [ f16 ] \grg e8 [ d8 ] \dble e4 \thrwd d8. [ e16 ] |
\dblf f4 \wbirl a4 \grA g8 [ f8 ] \dble e8 [ d8 ] |
\dblb b4. c8 \thrwd d4
}

View file

@ -0,0 +1,50 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\repeat volta 2 {
\partial 4
\pipesA s4
}
\break
\partial 4
\pipesBA
\break
\pipesBB
\bar "|."
}
\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
\pipesBA
\pipesBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}