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 6/8
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace {s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "MacDonald of the Isles"
meter = "March"

View file

@ -0,0 +1,85 @@
% 6/8 MacDonald of the Isles
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
A8. f16 |
\grg e4 \taor a8 \dblf f8.[ e16 \whslurd d8] |
\grg e4 \taor a8 \dblA A4 f8 |
\grg e4 \taor a8 \dblf f8.[ e16 \whslurd d8] |
\grg d8. \grd G16 \gre G8 \hdblg g4
f8 |
\grg e4 \taor a8 \dblf f8.[ e16 \whslurd d8] |
\grg e4 \taor a8 \dblA A8. e16 f8 |
\dblg g8. A16 g8 \hdblf f4 e8 |
\dbld d8. b16 \grd G8
}
pipesABA = {
\dblG G8. A8 f16
}
pipesABB = {
\dblG G4
}
pipesB = {
b8 |
\gbirl a4 A8 \grg A8. e16 f8 |
\grg A8. e16 A8 \grg A8. e16 c8 |
\gbirl a4 A8 \grg A8. e16 f8 |
\dblg g8. f16 e8 \dbld d8. c16
b8 |
\gbirl a4 A8 \grg A8. e16 f8 |
\grg A8. e16 A8 \grg A8. e16 d8 |
\dblg g8. A16 g8 \hdblf f4 e8 |
\dbld d8. b16 \grd G8
}
pipesBBA = {
\dblG G4 b8
}
pipesBBB = {
\dblG G8.
}
pipesC = {
A8 f16 |
\grg e4 \taor a8 \grg f4 \taor a8 |
\gre e4 \taor a8 A4 \taor a8 |
\grg e4 \taor a8 \grg f4 \taor a8 |
\grg b8. \grd G16 \gre G8 \hdblg g4
f8 |
\grg e4 \taor a8 \grg f4 \taor a8 |
\gre e4 \taor a8 \dblf f8.[ e16 \whslurd d8] |
\dblg g8. A16 g8 \hdblf f8[ e8 \hslurg g8] |
\hdbld d8. b16 \gre G8
}
pipesCBA = {
\dblG G8. A8 g16
}
pipesCBB = {
\dblG G4
}
pipesD = {
\grd b8 |
\gbirl a4 A8 \grg A8 \tuplet 3/2 { e8 f g } |
A4 \grip A8 \grg A8. G16 \grd b8 |
\gbirl a4 A8 \grg A8. e16 f8 |
\dblg g8[ G8 \whslurd d8] \dblb b8. \grg a16
\grd G8 |
\gbirl a4 A8 \grg A8 \tuplet 3/2 { e8 f g } |
A4 \grip A8 \grg A8. e16 f8 |
\dblg g4 \taor a8 \grg e4 \taor a8 |
\dbld d8. b16 \grd G8 \dblG G4
}

View file

@ -0,0 +1,98 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\partial 4 \grace { s4 } s4
\repeat volta 2 {
\repeat unfold 7 {
\measure
}
\grace { s4. } s4.
} \alternative {
{ \grace { s4. } s4. }
{ \grace { s4. } s4. }
}
\break
\partial 8 \grace { s4 } s8
\repeat volta 2 {
\repeat unfold 7 {
\measure
}
\grace { s4. } s4.
} \alternative {
{ \grace { s4. } s4. }
{ \grace { s4. } s4. }
}
\break
\partial 4 \grace { s4 } s4
\repeat volta 2 {
\repeat unfold 7 {
\measure
}
\grace { s4. } s4.
} \alternative {
{ \grace { s4. } s4. }
{ \grace { s4. } s4. }
}
\break
\repeat volta 2 {
\partial 8 \grace { s4 } s8
\halfline
\break
\halfline
}
}%Format
\new Voice = "pipes" {
\pipesA
\pipesABA
\pipesABB s8
\pipesB
\pipesBBA
\pipesBBB s4
\pipesC
\pipesCBA
\pipesCBB s8
\pipesD s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}