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 4/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 s8 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Keel Row"
meter = "Strathspey"

View file

@ -0,0 +1,20 @@
% 4/4 the Keel Row
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\dblf f4 \thrwd d8. [ f16 ] \dblg g4 \hdble e8. [ g16 ] |
\hdblf f4 \thrwd d8. [ f16 ] \dble e8. [ c16 ] \grg a8. [ g16 ] |
\hdblf f4 \thrwd d8. [ f16 ] \dblg g4 \hdble e8. [ g16 ] |
\hdblf f8. [ d16 ] \dble e8. [ c16 ] \thrwd d4 \dbld d4
}
pipesB = {
\grg c16 [ e8. ] \gra e16 [ A8. ] \hdblf f4 \dble e8. [ d16 ] |
\dblc c4 \grg a8. [ \grd c16 ] \dblb b8. [ a16 ] \grg G8. [ d16 ] |
\grg c16 [ e8. ] \gra e16 [ A8. ] \hdblf f4 \dble e8. [ d16 ] |
\grg c16 [ \grd a8. ] \grg b16 [ \grd G8. ] \grg a4 \wbirl a4
}

View file

@ -0,0 +1,53 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\halfline
}
\break
\repeat volta 2 {
\halfline
}
}%Format
\new Voice = "pipes" {
\pipesA
\pipesB
}
>>
}
\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
}
}