1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +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

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 3/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Banks of the Lee"
meter = "Air"

View file

@ -0,0 +1,29 @@
% 3/4 Banks of the Lee
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "D. Rickard"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\repeat volta 2 {
\grg b8 d8 |
\grg e4. f8 \grg e8 d8 |
e8 \grg a8~ a4. b8 |
\grg d8 e8~ e4 \grg d8 b8 |
\grg a8 \grd G8~ G4 \grg e8 g8 |
A4. g8 A8 g8 |
e8 \grg G8~ G4. a8 |
} \alternative {
{
\grg b4. a8 \grg b8 d8 |
\dble e2
}
{
\grg b8 \grG a8~ a4. \wbirl a8 |
\gre a2
}
}
}

View file

@ -0,0 +1,40 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\partial 4
\pipesA
\bar "|."
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 4
%\unfoldRepeats \pipesA
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}