1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 12:29:22 +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 6/8
}
confTempo = {
\tempo 4. = 60
}
%% Format
part = { \partial 8 \grace {s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Waters of Kylesku"
meter = "Slow Air"

View file

@ -0,0 +1,31 @@
% 6/8 Waters of Kylesku
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesA = {
e8 |
\dblc c4 b8 \grG a4 \grd c8 |
\dble e4 \gra e8 \dblc c4 e8 |
A4 \grg A8 \slurf g4 f8 |
\dble e4. \gra e4 A8 |
\hdble e4 \gra e8 \grg f4 e8 |
\dble e4 c8 \grG a4 \grd c8 |
\dble e4 \gra e8 \thrwd d4 c8 |
\grg b4. \taor b4 d8 |
\dblc c4 b8 \grG a4 \grd c8 |
\dble e4 \gra e8 \dblc c4 e8 |
A4 \grg A8 \slurf g4 f8 |
\dble e4. \gra e4 c8 |
\dble e4 \gra e8 \grg f4 g8 |
\dblA A4 f8 \dble e4 d8 |
\grg c8 e4 \dblc c4 b8 |
\grG a4. \wbirl a4.
}

View file

@ -0,0 +1,48 @@
\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
}%Format
\new Voice = "pipes" {
\pipesA
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}