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,18 @@
\version "2.19.0"
%% Globals
global = {
\time 2/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace {s1} s8 }
measure = { \grace {s1} s2 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "(79th H.L.I. Farewell to) the Barren Rocks of Aden"
%title = "The Barren Rocks of Aden"
meter = "March"

View file

@ -0,0 +1,59 @@
% 2/4 The Barren Rocks of Aden
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg e8 |
\grg f8. [ g16 ] \hdblf f8. [ e16 ] |
\thrwd d8 [ \grg f8 ] \birl a8 [ \thrwd d8 ] |
\dblc c8 [ e8 ] \birl a8. [ e16 ] |
\grg f8 [ \birl a8 ] \thrwd d8. [ e16 ] |
\grg f8. [ g16 ] \hdblf f8. [ e16 ] |
\thrwd d8 [ \grg f8 ] \birl a8 [ \thrwd d8 ] |
\dblc c8 [ e8 ] \birl a8 [ \grg f16. e32 ] |
\thrwd d4 \dbld d8
}
pipesB = {
\dblg g8 |
\dblA A8. [ f16 ] \thrwd d8. [ f16 ] |
\dble e8 [ \grg f8 ] \birl a8 [ \grg e16 f16 ] |
\dblg g8. [ e16 ] \dblc c8 [ a8 ] |
\thrwd d8 [ f8 ] \wbirl a8 [ \dblg g8 ] |
\dblA A8. [ f16 ] \thrwd d8. [ f16 ] |
\grg e8 [ \grg f8 ] \birl a8 [ \grg e16 f16 ] |
\dblg g8. [ e16 ] \dblc c8 [ \gre a8 ] |
\thrwd d4 \dbld d8
}
pipesC = {
\dblg g8 |
A16. [ f32 \grg d32 f16. ] \grg f32 [ A16. d32 f16. ] |
\dble e8 [ f8 ] \birl a8 [ \grg e16 f16 ] |
\grA g16. [ e32 \grg c32 e16. ] \grg e32 [ A16. c32 e16. ] |
\thrwd d8 [ f8 ] \birl a8 [ \dblg g8 ] |
A16. [ f32 \grg d32 f16. ] \grg f32 [ A16. d32 f16. ] |
\dble e8 [ f8 ] \birl a8 [ \grg e16 f16 ] |
\grA g16. [ e32 \grg c32 e16. ] \grg e32 [ A16. c32 e16. ] |
\thrwd d4 \dbld d8
}
pipesD = {
\dblg g8 |
A16. [ f32 d16. f32 ] \grg a16. [ f32 \grg d32 f16. ] |
A16. [ f32 d16. f32 ] \grg a16. [ f32 \grg d32 f16. ] |
\grA g16. [ e32 \grg c32 \grd e16. ] \grg a16. [ e32 \grg c32 e16. ] |
\grA g16. [ e32 \grg c32 \grd e16. ] \grg a16. [ e32 \grg c32 e16. ] |
A16. [ f32 d16. f32 ] \grg a16. [ f32 \grg d32 f16. ] |
A16. [ f32 d16. f32 ] \grg a16. [ f32 \grg d32 f16. ] |
\grA g16. [ e32 \grg c32 \grd e16. ] \grg a16. [ e32 \grg c32 A16. ] |
\thrwd d4 \dbld d8
}

View file

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