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

New Tunes + small fixes

Banks of the Lee
Hills of Glenorchy
The Panda

fixes:
Sands of Kuwait
When the Pipers Play side
This commit is contained in:
Eric Teunis de Boone 2019-02-14 09:59:54 +01:00
parent 65870e6ff1
commit 3613a49d89
12 changed files with 435 additions and 37 deletions

18
jigs/the_panda/config.ily Normal file
View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 6/8
}
confTempo = {
\tempo 4. = 120
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Panda"
meter = "Jig"

View file

@ -0,0 +1,33 @@
% 6/8 The Panda
% Pipes
\version "2.18.2"
composerPipes = "R. Mathieson"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesAA = {
\grg c8 [ a8 \grd a8 ] \grg d8 [ a8 \grd a8 ] |
e8 [ \grg e8 \gra e8 ] \grg e8 [ d8 c8 ] |
\grg c8 [ d8 \slurc d8 ] \grg G8 [ d8 G8 ] |
\grg c8 [ d8 e8 ] \grg e8 [ d8 b8 ] |
}
pipesAB = {
\grg c8 [ a8 \grd a8 ] \grg d8 [ a8 \grd a8 ] |
e8 [ \grg e8 \gra e8 ] \grg e8 [ d8 c8 ] |
\grg c8 [ d8 \slurc d8 ] \grg e8 [ d8 b8 ] |
\grg b8 [ a8 G8 ] \grg a4.
}
pipesBA = {
\grA g8 [ e8 \gra e8 ] \grg e8 [ f8 g8 ] |
A8 [ a8 A8 ] g8 [ e8 \gra e8 ] |
\grg c8 [ d8 \slurc d8 ] \grg G8 [ d8 G8 ] |
\grg c8 [ d8 e8 ] \grg e8 [ d8 b8 ] |
}
pipesBBA = {
\grA g8 [ e8 \gra e8 ] \grg e8 [ f8 g8 ] |
A8 [ a8 A8 ] g8 [ e8 \gra e8 ] |
\grg c8 [ d8 \slurc d8 ] \grg e8 [ d8 b8 ] |
\grg b8 [ a8 G8 ] \grg a4.
}

65
jigs/the_panda/pipes.ly Normal file
View file

@ -0,0 +1,65 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
IIofII = \markup { "2." \text \small" of 2" }
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\halfline
\set Score.repeatCommands = #(list (list 'volta IIofII))
\halfline
\bar ":|."
\set Score.repeatCommands = #'((volta #f))
\break
\halfline
\set Score.repeatCommands = #'((volta "1."))
\halfline
\bar ":|."
\set Score.repeatCommands = #'((volta #f))
}%Format
\new Voice = "pipes" {
\pipesAA
\pipesAB
\pipesBA
\pipesBBA
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\repeat unfold 2 {
\pipesAA \pipesAB
}
\pipesBA \pipesBBA
\pipesBA \pipesAB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}