1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +02:00

Updated/Fixed 2/4 Marches and 3/4 Marches (+ template)

This commit is contained in:
Eric Teunis de Boone 2019-01-21 02:07:22 +01:00
parent a63a7cdc6c
commit 27b5a9f0c8
52 changed files with 648 additions and 433 deletions

View file

@ -7,11 +7,12 @@ confTempo = {
\tempo 4 = 90
}
%% Format
part = { \partial 8 s8 }
partspacer = { \grace {s4} s8 }
part = { \partial 8 }
measure = { \grace { s4 } s2 | }
halfline = { \repeat unfold 4 { \measure } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Piper's Cave"
meter = "March"
title = "The Piper's Cave"
meter = "March"

View file

@ -2,17 +2,21 @@
% Pipes
\version "2.18.2"
composerPipes = "PM J. Sutherland, 1936"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
pipesA = {
\dblc c16. [ b32 ] |
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8 [ c8 ] \dblc c8 [ \grg b16 \grd a16 ] |
\dblc c8 [ \grg b8 ] \taor b8 [ \dblc c16. b32 ] | \break
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a8
\grg a4 \wbirl a8
}
pipesB = {
@ -20,19 +24,19 @@ pipesB = {
\dblA A8 [ f8 ] \dblf f8 [ e16 f16 ] |
\dblA A8 [ c8 ] \grip c8 [ A16 f16 ] |
\dble e8 [ c8 ] \dblc c8 [ \grg b16 \grd a16 ] |
\dblc c8 [ \grg b8 ] \taor b8
\dblc c8 [ \grg b8 ] \taor b8
}
pipesBA = {
\dblg g8 |
\dblA A8 [ f8 ] \dblf f8 [ e16 f16 ] |
\dblA A8 [ c8 ] \grip c8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a8
\grg a4 \wbirl a8
}
pipesBB = {
\dblc c16. [ b32 ] |
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a4
\grg a4 \wbirl a8
}

View file

@ -8,24 +8,25 @@
\score {
\new Staff {
\global
\bagpipeKey
\pipeglobal
<<
{
\new NullVoice = "format" {
\repeat volta 2 {
\part \line
\part \partspacer \line
}
\break
\repeat volta 2 {
\part s2*3 s4 s8
}
\alternative {
{s8 \halfline}
{s8 \halfline}
\part \partspacer s2*3 s4 s8
}
\alternative {
{\partspacer | \halfline}
{\partspacer | \halfline}
}
\bar "|."
}
{
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesB
@ -39,5 +40,30 @@
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\unfoldRepeats {\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\repeat volta 2 {
\part \pipesA
}
\repeat volta 2 {
\part \pipesB
} \alternative {
\pipesBA
\pipesBB
}
} }
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}