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

New Tunes: Hills of Alva, Bugle Horn,

Waters of Kylesku, Thunderhead
This commit is contained in:
Eric Teunis de Boone 2019-10-17 01:30:49 +02:00
parent 034181bccf
commit d99208f1b1
12 changed files with 514 additions and 0 deletions

View file

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

View file

@ -0,0 +1,77 @@
% 4/4 The Hills of Alva
% Pipes
\version "2.18.2"
composerPipes = "T. Muirhead"
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesA = {
\repeat unfold 2 {
\gre a8 |
\grg f4 \dblf f8 [ A8 ] \slurf g4 \grA e8. [ f16 ] |
\dblg g8 [ e8 ] \grg a8 [ e8 ] \thrwd d4 \gre a4 |
}
\alternative {
{
\grg b16 [ d8. ] \gre G8 [ \grd b8 ] \gre a4 \dblA A4 |
\slurf g8. [ f16 ] \dble e8 [ d8 ] \dbld d8. [ c16 ] \dblb b8
}
{
\grg b8. [ d16 ] \dblg g8 [ b8 ] \grg a8 [ A8 ] \grg A8. [ g16 ] |
\grA f8 [ e8 ] A8 [ a8 ] \thrwd d4 \dbld d8
}
}
}
pipesB = {
a8|
\repeat unfold 2 {
A4 \grip A8. [ g16 ] \grA f8 [ d8 ] \gre a4 |
\grg a8. [ b16 ] \grg d8 [ f8 ] \dble e4 \birl a4 |
}
\alternative {
{
\grA g4 \grip g8. [ \grA f16 ] \dble e8 [ c8 ] \grg a4 |
\grA g8. [ f16 ] \dble e8 [ d8 ] \dbld d8. [ c16 ] \dblb b8 [ \gre a8 ] |
}
{
\grg b8. [ d16 ] \dblg g8 [ b8 ] \grg a8 [ A8 ] \grg A8. [ g16 ] |
\grA f8 [ e8 ] A8 [ a8 ] \thrwd d4 \dbld d8
}
}
}
pipesC = {
f8 |
\repeat unfold 2 {
\grg a8. [ b16 ] \grG a4 \grg d8. [ e16 ] \thrwd d4 |
\grg f8. [ g16 ] \hdblf f8 [ e8 ] \thrwd d4 \grg a4 |
}
\alternative {
{
\grg b8. [ d16 ] \dblg g4 \grg a8. [ d16 ] \dblf f4 |
\grA g8. [ f16 ] \dble e8 [ d8 ] \dbld d8. [ c16 ] \dblb b8 [ \gre a8 ] |
}
{
\grg b8. [ d16 ] \dblg g8 [ b8 ] \grg a8 [ A8 ] \grg A8. [ g16 ] |
\grA f8 [ e8 ] A8 [ a8 ] \thrwd d4 \dbld d8
}
}
}
pipesD = {
g8 |
\repeat unfold 2 {
\dblA A8. [ f16 ] \dblg g8 [ e8 ] \thrwd d8 [ f8 ] \grg a4 |
\grg a8. [ b16 ] \dble e8 [ d8 ] \dblb b4 \gre a4 |
}
\alternative {
{
\dblg g8. [ f16 ] \dble e8 [ a8 ] \dblc c8 [ e8 ] \dblA A4 |
g8. [ f16 ] \dble e8 [ d8 ] \dbld d8. [ c16 ] \dblb b8 [ \gre a8 ] |
}
{
\grg b8. [ d16 ] \dblg g8 [ b8 ] \grg a8 [ A8 ] \grg A8. [ g16 ] |
\grA f8 [ e8 ] A8 [ a8 ] \thrwd d4 \dbld d8
}
}
}

View file

@ -0,0 +1,75 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\part \halfline
\break
\halfline
\bar "||"
\break
\part \halfline
\break
\halfline
\bar "||"
\break
\part \halfline
\break
\halfline
\bar "||"
\break
\part \halfline
\break
\halfline
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesB s8
\pipesC s8
\pipesD s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesB
\pipesC
\pipesD
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}