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,7 +7,7 @@ confTempo = {
\tempo 4 = 90
}
%% Format
part = { \partial 8 s8 }
part = { \partial 8 \grace {s4} s8 }
measure = { \grace { s4 } s2 | }
halfline = { \repeat unfold 4 { \measure } }
line = { \repeat unfold 2 { \halfline } }

View file

@ -1,37 +1,41 @@
% 2/4 Teribus
% Pipes
\version "2.18.2"
composerPipes = "Trad., arr. PM G.J. van Achterbergh"
composerPipes = "Trad."
arrangerPipes = "PM G.J. van Achterbergh"
pipeglobal = {
\bagpipeKey
}
pipesA = {
a8 |
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ] |
\grg f8 [ A8 ] \hdblf f8 [ d8 ] |
\dblg g8. [ f16 ] \dble e8. [ d16 ] |
\dblc c8 [ e8 ] \dblc c8 [ a8 ] |
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ] |
\grg f8 [ A8 ] \hdblf f8 [ d8 ] |
\dblg g8. [ f16 ] \dble e8. [ A16 ] |
\hdblf f8 [ d8 ] \dbld d8 |
\hdblf f8 [ d8 ] \dbld d8
}
pipesB = {
\dblg g8
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ d16 ]
\dblg g8
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ d16 ]
\dblc c8 [ e8 ] \dblc c8 [ a8 ]
}
pipesBA = {
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
}
pipesBB = {
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
}

View file

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