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 6/8
}
confTempo = {
\tempo 4. = 40
}
%% Format
part = { \partial 8 \grace {s1} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Dark Island"
meter = "Slow Air"

View file

@ -0,0 +1,33 @@
% 6/8 Dark Island
% Pipes
\version "2.18.2"
composerPipes = "I. McLaughlan"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a16. [ \grd b32 ] |
\dble e4 \grg a16. [ e32 ] \thrwd d4 \grg e16. [ d32 ] |
\dblb b4 \gre a32 [ \grd G16. ] \grg a4 \thrwd d16. [ e32 ] |
\grg f4 e32 [ \grg d16. ] \grg f16 [ A8. \birl a8 ] |
\dblf f4 A16. [ f32 ] \dble e4 \grg a16. [ \grd b32 ] |
\dble e4 \grg a16. [ e32 ] \thrwd d4 \grg e16. [ d32 ] |
\dblb b4 \gre a32 [ \grg G16. ] \grg a4 \thrwd d16. [ e32 ] |
\dblf f8. [ a16 A16. f32 ] \dble e8.[ a16 f16. e32 ] |
\thrwd d4. \slurd d4
}
pipesB = {
\grg f16. [ g32 ] |
\dblA A4 \birl a8 \dblf f4 e32 [ \grg d16. ] |
\grg b16 [ \grd G8. \grd b8 ] \grG a4 \thrwd d16. [ e32 ] |
\grg f4 e32 [ \grg d16. ] \grg f16 [ A8. \birl a8 ] |
\dblf f4 A16. [ f32 ] \dble e4 \grg f16. [ g32 ] |
\dblA A4 \birl a8 \dblf f4 e32 [ \grg d16. ] |
\grg b16 [ \grd G8. \grd b8 ] \grG a4 \thrwd d16. [ e32 ] |
\grg f8. [ a16 A16. f32 ] \grg e8. [ a16 \grg f16. e32 ] |
\thrwd d4. \slurd d4
}

54
airs/dark_island/pipes.ly Normal file
View file

@ -0,0 +1,54 @@
\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
\pipesA
\pipesA
\pipesB
\pipesB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}