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

Various new scores

The Royal Scots Polka
Heroes of Oosterbeek
The Accordion Man
MacDonald of the Isles
Jimmy Blue
Muss i denn
Lady Seaforth
This commit is contained in:
Eric Teunis de Boone 2019-03-04 02:29:49 +01:00
parent 3613a49d89
commit 736a01c6a3
21 changed files with 955 additions and 0 deletions

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 3/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Heroes of Oosterbeek"
meter = "Retreat"

View file

@ -0,0 +1,39 @@
% 3/4 Heroes of Oosterbeek
% Pipes
\version "2.18.2"
composerPipes = "Angus Lawrie"
arrangerPipes = "PM F.J. de Boone"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a8. [ b16 ] \thrwd d4 \dbld d8. [ f16 ] |
\grg e8. [ f16 ] \thrwd d2 |
\grg d8. [ f16 ] \dblg g4 \hdblf f8. [ e16 ] |
\grg d8 [ e8 ] \gra e2 |
\grg f8. [ g16 ] \dblA A4 \hdblf f8. [ e16 ] |
\thrwd d8 [ \gre b8 ] \grG a4 \wbirl a4 |
\thrwd d8. [ e16 ] \grg f4~ f8 [ g8 ] |
\grA e8. [ f16 ] \thrwd d2
}
pipesBA = {
\grg f8. [ g16 ] \dblA A4 \hdblf f8. [ e16 ] |
\thrwd d8 [ e8 ] \gra e2 |
\grg e8. [ f16 ] \dblg g4 \grf g8. [ e16 ] |
A8. [ g16 ] \grA f2
}
pipesBBA = {
\grg f8. [ g16 ] \dblA A4 \hdblf f8. [ e16 ] |
\grg d8 [ \gre b8 ] \grG a4 \wbirl a4 |
\thrwd d8. [ e16 ] \grg f4~ f8 [ g8 ] |
\grA e8. [ f16 ] \thrwd d2
}
pipesBBB = {
\grg f8. [ g16 ] \hdblf f4 \grg f8. [ e16 ] |
\grg d8 [ \gre b8 ] \grG a4 \wbirl a4 |
\thrwd d8. [ e16 ] \grg f4~ f8 [ g8 ] |
\grA e8. [ f16 ] \thrwd d2
}

View file

@ -0,0 +1,56 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\repeat volta 2 {
\pipesA
}
\break
\repeat volta 2 {
\pipesBA
} \alternative {
\pipesBBA
\pipesBBB
}
\bar "|."
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\unfoldRepeats {
\repeat volta 2 {
\pipesA
}
\repeat volta 2 {
\pipesBA
} \alternative {
\pipesBBA
\pipesBBB
}
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}