New Tune: Garb of old Gaul

This commit is contained in:
Eric Teunis de Boone 2020-07-31 16:26:40 +02:00
parent bc8f1757ab
commit 8a1a50a1e0
3 changed files with 156 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 4 \grace{s4.} s4 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Garb of old Gaul"
meter = "March"

View File

@ -0,0 +1,44 @@
% 4/4 Garb of old Gaul
% Pipes
\version "2.18.2"
composerPipes = "R. Reid"
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesAA = {
a4 |
\thrwd d4 \wslurd d8. e16 d4 \grg f8. e16 |
\grg d8 a \grg G8 a \grd d4 \wslurd d8. e16 |
\grg f4 \gre f8. g16 \grA f4 \dblA A8. g16 |
\grA f8. e16 \grg d8. e16 \grg f4 \gre f8. g16 |
\dblA A4 \grip A4 \grg A4 f16 A8. |
\grf g4 \grf g8. A16 \grf g4 A8. g16 |
\grA f8. e16 \grg d8. e16 \grg f8 A \grf g8 f |
\grg e4 \gra e8. f16
}
pipesABA = {
\dble e4
}
pipesABB = {
\dble e8 d \dblc c8 b |
}
pipesBA = {
\grg a8. b16 \grg a8. b16 \grg c8. d16 \grg c8. d16 |
\grg e4 \grip e8. f16 \dblg g4 \grA f8. e16 |
\thrwd d8. e16 \grg d8. e16 \grg f4 \grip f8. g16 |
\dblA A8. g16 \grA f8. e16 \dblA A4 f8. g16 |
\dblA A8 f \grg d8 e16 f \dblg g8 e \grg c8 e |
\grG e8 g \grA f8 e \dbld d8 c \dblb b a |
\grg b8. c16 \thrwd d8. e16 \grg f8. A16 \tuplet 3/2 { g8 f e } |
\thrwd d4 \wslurd d8. e16
}
pipesBBA = {
\thrwd d8. \grg e16 \tuplet 3/2 { d8 c b }
}
pipesBBB = {
\thrwd d2 |
}

View File

@ -0,0 +1,94 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part
\halfline
\repeat unfold 3 {
\measure
}
s2
}
\alternative {
{ \grace {s4} s4 }
{ \grace {s4} s2 }
}
\bar "||"
\break
\repeat volta 2 {
\halfline
\repeat unfold 3 {
\measure
}
s2
}
\alternative {
{ \grace {s4} s2 }
{ \grace {s4} s2 }
}
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesAA
\pipesABA
\pipesABB
\pipesBA
\pipesBBA
\pipesBBB
}
>>
}
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 4
\repeat volta 2 {
\pipesAA
} \alternative {
\pipesABA
\pipesABB
}
\break
\repeat volta 2 {
\pipesBA
} \alternative {
\pipesBBA
\pipesBBB
}
}
\midi { \confTempo }
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}