New Tune: Gliding to Arnhem

This commit is contained in:
Eric Teunis de Boone 2019-09-20 01:42:53 +02:00
parent 5d8d6b96d4
commit 4abdf0dde3
3 changed files with 141 additions and 0 deletions

View File

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key a \mixolydian
\time 6/8
}
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 = "Gliding to Arnhem"
meter = "March"

View File

@ -0,0 +1,60 @@
% 6/8 Gliding to Arnhem
% Pipes
\version "2.18.2"
composerPipes = "D. MacArthur"
arrangerPipes = ""
pipeglobal = {
\key a \mixolydian
}
% Music
pipesA = {
\hslurg g8 |
\dblA A8. [ e16 c8 ] \grg a8. [ \grd c16 e8 ] |
\grg f8. [ d16 f8 ] \dble e8. [ c16 \grG a8 ] |
\dblA A8. [ e16 c8 ] \grg a8. [ \grd c16 e8 ] |
\grg f8. [ b16 \grG b8 ] \slurb b4 \dblg g8 |
\dblA A8. [ e16 c8 ] \grg a8. [ \grd c16 e8 ] |
\grg f8. [ d16 f8 ] \dble e8. [ c16 \grG a8 ] |
\thrwd d8. [ \grg f16 A8 ] \hdble e8. [ \grg c16 e8 ] |
\grg a8. [ \grd b16 \gre a8 ] \wbirl a4
}
pipesB = {
\thrwd d8 |
\grg c8. [ e16 A8 ] \thrwd d8. [ \grg f16 A8 ] |
\grg c8. [ e16 A8 ] \dble e8. [ c16 \grG a8 ] |
\thrwd d8. [ \grg f16 A8 ] \hdble e8. [ \grg c16 e8 ] |
\dblc c8. [ b16 \grG b8 ] \grg b8. [ c16 d8 ] |
\grg c8. [ e16 A8 ] \thrwd d8. [ \grg f16 A8 ] |
\hdble e8. [ \grg c16 e8 ] \dblc c8. [ b16 \grG a8 ] |
\thrwd d8. [ \grg f16 A8 ] \hdble e8. [ \grg c16 e8 ] |
\grg a8. [ \grd b16 \gre a8 ] \wbirl a4
}
pipesC = {
e8 |
\dblc c8. [ b16 \grG a8 ] \dble e8. [ c16 \grG a8 ] |
\grg f8. [ d16 A8 ] \hdble e8. [ c16 \grG a8 ] |
\dblc c8. [ b16 \grG a8 ] \dble e8. [ c16 \grG a8 ] |
\grg f8. [ b16 \grG b8 ] \grg b8. [ c16 d8 ] |
\dblc c8. [ b16 \grG a8 ] \dble e8. [ c16 \grG a8 ] |
\grg f8. [ d16 A8 ] \hdble e8. [ c16 \grG a8 ] |
\thrwd d8. [ \grg f16 A8 ] \hdble e8. [ \grg c16 e8 ] |
\grg a8. [ \grd b16 \gre a8 ] \wbirl a4
}
pipesD = {
\hslurg g8 |
A4 \grip A8 f8. [ g16 A8 ] |
\hdble e8. [ \grg c16 e8 ] \dblc c8. [ b16 \grG a8 ] |
A4 \grip A8 f8. [ g16 A8 ] |
\hdble e8. [ \grg c16 e8 ] \slurb b4 \hslurg g8 |
A4 \grip A8 f8. [ g16 A8 ] |
\hdble e8. [ \grg c16 e8 ] \dblc c8. [ b16 \grG a8 ] |
\thrwd d8. [ \grg f16 A8 ] \hdble e8. [ \grg c16 e8 ] |
\grg a8. [ \grd b16 \gre a8 ] \wbirl a4
}

View File

@ -0,0 +1,63 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\repeat volta 2 {
\partial 8 \pipesA
}
\break
\repeat volta 2 {
\partial 8 \pipesB
}
\break
\repeat volta 2 {
\partial 8 \pipesC
}
\break
\repeat volta 2 {
\partial 8 \pipesD
}
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA \pipesA
\pipesB \pipesB
\pipesC \pipesC
\pipesD \pipesD
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}