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

A lot of new Tunes

Still work to do on the Anthems and Jim Thomson of flagstaff
This commit is contained in:
Eric Teunis de Boone 2016-11-07 23:33:04 +01:00
parent f24876228f
commit 76e6d0ffa1
53 changed files with 2225 additions and 7 deletions

View file

@ -0,0 +1,17 @@
\version "2.19.0"
%% Globals
global = {
\time 9/8
}
confTempo = {
\tempo 4. = 80
}
%% Format
part = { \partial 8 s8 }
measure = { \grace {s1} s4.*3 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Battle of the Somme"
meter = "Advance in Review Order"

View file

@ -0,0 +1,33 @@
% 9/8 the Battle of the Somme
% Pipes
\version "2.18.2"
composerPipes = "W. Laurie"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
a8 |
\grg f16 [ A8. f8 ] \thrwd d4. \dbld d8. [ c16 d8 ] |
\grg e8. [ d16 \gre G8 ] \dblb b4. \grG a4. |
\grg b16 [ \grd G8. \grd b8 ] \grG a4. \thrwd d4. |
\grg f16 [ A8. f8 ] \dble e4. \gra e4 a8 |
\grg f16 [ A8. f8 ] \thrwd d4. \dbld d8. [ c16 d8 ] |
\grg e8. [ d16 \gre G8 ] \dblb b4. \grG a4. |
\grg b16 [ \grd G8. \grd b8 ] \grG a4. \grip f4. |
\grg e8. [ f16 \grg e8 ] \thrwd d4. \dbld d4
}
pipesB = {
d8
\dbld d8. [ c16 d8 ] \dble e4. \wbirl a4. |
\grg e8. [ f16 g8 ] \grA f16 [ A8. A8 ] \thrwd d4. |
\dblf f8. [ e16 f8 ] \dblg g4. \wbirl a4. |
\grg f16 [ A8. f8 ] \dble e4. \gra e4 A8 |
f16 [ A8. f8 ] \thrwd d4. \dbld d8. [ c16 d8 ] |
\grg e8. [ d16 \gre G8 ] \dblb b4. \grG a4. |
\grg b16 [ \grd G8. \grd b8 ] \grG a4. \grip f4. |
\grg e8. [ f16 \grg e8 ] \thrwd d4. \dbld d4
}

View file

@ -0,0 +1,55 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part
\line
}
\break
\repeat volta 2 {
\part
\line
}
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesB s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesA
\pipesB
\pipesB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}