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

@ -1,7 +1,7 @@
% 3/4 Balmoral (seconds)
% Pipes
\version "2.18.2"
composerPipessecnd = ""
composerPipesSecnd = ""
pipessecndglobal = {
\bagpipeKey
}

View file

@ -1,7 +1,7 @@
% 3/4 Balmoral (thirds)
% Pipes
\version "2.18.2"
composerPipesthrd = ""
composerPipesThrd = ""
pipesthrdglobal = {
\bagpipeKey
}

View file

@ -7,44 +7,54 @@
\include "./notes.pipes.seconds.ily"
\include "./notes.pipes.thirds.ily"
\layout {
indent = 8.0
short-indent = 2.0
}
\score {
\new StaffGroup <<
\new Staff = "pipes" {
\new Staff = "pipes" \with{
instrumentName = \markup{ \instrumentPipes }
shortInstrumentName = \markup{ \shortInstrumentPipes }
} {
\global
\pipeglobal
\set Staff.instrumentName = \markup{ \instrumentPipes }
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes }
<<
{
\new NullVoice = "format" {
\repeat volta 2 { \line }
\break
\repeat volta 2 { \line }
}%Format
{
\new Voice = "pipes" {
\pipesA
\pipesB
}%Pipes
>>
}
\new Staff = "seconds" {
\new Staff = "seconds" \with {
instrumentName = \markup{ \instrumentPipesSecnd }
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd}
} {
\pipessecndglobal
\set Staff.instrumentName = \markup{ \instrumentPipes Seconds }
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
\pipessecndA
\pipessecndB
}
\new Staff = "thirds" {
\new Staff = "thirds" \with {
instrumentName = \markup{ \instrumentPipesThrd }
shortInstrumentName = \markup{ \shortInstrumentPipesThrd}
} {
\pipesthrdglobal
\set Staff.instrumentName = \markup{ \instrumentPipes Thirds }
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 3rd }
\pipesthrdA
\pipesthrdB
}
>>
\header {
title = \title
@ -63,3 +73,48 @@
}
}
}
\score {
\new StaffGroup <<
\global
\new Staff = "pipes" \with {
midiInstrument = #"bagpipe"
instrumentName = \markup{ \instrumentPipes }
shortInstrumentName = \markup{ \shortInstrumentPipes }
} {
\pipeglobal
%%Tune
\pipesA
\pipesB
}
\new Staff = "seconds" \with {
midiInstrument = #"bagpipe"
instrumentName = \markup{ \instrumentPipesSecnd }
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
} {
\pipessecndglobal
%% Seconds
\pipessecndA
\pipessecndB
}
\new Staff = "thirds" \with {
midiInstrument = #"bagpipe"
instrumentName = \markup{ \instrumentPipesThrd }
shortInstrumentName = \markup{ \shortInstrumentPipesThrd }
} {
\pipesthrdglobal
%% Thirds
\pipesthrdA
\pipesthrdB
}
>>
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}

View file

@ -29,3 +29,24 @@
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\repeat unfold 2 {
\pipesA
}
\repeat unfold 2 {
\pipesB
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}

View file

@ -25,7 +25,28 @@
\header {
title = \title
meter = \meter
instrument = \instrumentPipessecnd
composer = \composerPipessecnd
instrument = \instrumentPipesSecnd
composer = \composerPipesSecnd
}
}
\score {
\new Staff { \global \pipessecndglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\repeat unfold 2 {
\pipessecndA
}
\repeat unfold 2 {
\pipessecndB
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentSecnd
composer = \composerPipesSecnd
arranger = \arrangerPipesSecnd
}
}

View file

@ -25,7 +25,28 @@
\header {
title = \title
meter = \meter
instrument = \instrumentPipesthrd
composer = \composerPipesthrd
instrument = \instrumentPipesThrd
composer = \composerPipesThrd
}
}
\score {
\new Staff { \global \pipesthrdglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\repeat unfold 2 {
\pipesthrdA
}
\repeat unfold 2 {
\pipesthrdB
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentThrd
composer = \composerPipesthrd
arranger = \arrangerPipesthrd
}
}