New Tune: Stumpie

This commit is contained in:
Eric Teunis de Boone 2020-07-06 01:38:54 +02:00
parent 1e2127ced0
commit 074ae13720
3 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key a \mixolydian
\time 4/4
}
confTempo = {
\tempo 4 = 120
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Stumpie"
meter = "Strathspey"

View File

@ -0,0 +1,31 @@
% 4/4 Stumpie
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key a \mixolydian
}
% Music
pipesA = {
d8 |
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
c16 [ e8. ] \dblA A8. [ e16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
}
pipesBA = {
d8 |
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
\grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
\grg c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
}
pipesBB = {
d8 |
\grg c16 [ e8. ] \dble e8. [ c16 ] \thrwd d8. [ f16 ] \grg f8. [ d16 ] |
\grg c16 [ e8. ] \dble e8. [ c16 ] \dblf f8. [ G16 ] \grG b8. [ d16 ] |
c16 [ e8. ] \dblA A4 g16 [ f16 e8 ] \dblA A4 |
c16 [ e8. ] \grg b8. [ d16 ] \dblc c16 [ \gre a8. ] \wbirl a8
}

View File

@ -0,0 +1,62 @@
\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
}
\break
\part
\line
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesBA
\pipesBB
}
>>
}
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\unfoldRepeats {
\repeat volta 2 {
\partial 8
\pipesA
}
\pipesBA
\pipesBB
}
}
\midi { \confTempo }
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}