New Tune: Wi' A Hundred Pipers

This commit is contained in:
Eric Teunis de Boone 2019-06-18 17:37:41 +02:00
parent f1036984d8
commit ee63cd518c
3 changed files with 104 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. = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Wi' A Hundred Pipers"
meter = "March"

View File

@ -0,0 +1,34 @@
% 6/8 Wi' A Hundred Pipers
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key a \mixolydian
}
% Music
pipesA = {
d32 e16. |
\dblf f4 a8 \grg a8. b16 \grG a8 |
\dblb b4 d8 \dbld d4 \hdblg g8 |
\dblA A4 f8 \dblf f8. e16 d8 |
\dblf f4 e8 \grg e8. d16 e8 |
\dblf f4 a8 \grg a8. b16 \grG a8 |
\dblb b4 d8 \dbld d4 \hdblg g8 |
\dblA A4 f8 \grg e8. d16 e8 |
\grg d4. \grG d4
}
pipesB = {
c32 d16. |
\grg e4 \grip e8 \grg e8. c16 e8 |
\dblf f4 A8 \grg A4 f8 |
\dble e4 c8 \dblc c8. b16 \grG a8 |
\dblc c4 \gre b8 \grG b8. c16 d8 |
\grg e4 \grip e8 \grg e8. c16 e8 |
A4 \grip A8 \grg A8. g16 f8 |
\dble e4 c8 \dblb b8. a16 b8 |
\grg a4. \wbirl a4
}

View File

@ -0,0 +1,52 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
}
\new Voice = "pipes" {
\repeat volta 2 {
\partial 8 \pipesA
}
\break
\repeat volta 2 {
\partial8 \pipesB
}
}
>>
}
\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
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}