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 4/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 = "The Accordion Man"
meter = "March"

View file

@ -0,0 +1,33 @@
% 4/4 The Accordion Man
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "PM F.J. de Boone"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg e8 \bar "|"
\grg f4 \grg e8 [ d8 ] \dblg g4 \grA f8 [ e8 ] \bar "|"
\grg d8 [ f8~ ] f8 [ d8 ] \grg a4~ a8 [ \wbirl a8 ] \bar "|"
\grg b8 [ \grd G8~ ] G8 [ \grd b8 ] \grg a8 [ \thrwd d8 ] \grg f8 [ A8 ] \bar "|"
\grf g8 [ \grA f8~ ] f8 [ d8 ] \dble e4 \grg a8 [ d8 ] \bar "|" \break
\grg f4 \grg e8 [ d8 ] \dblg g4 \grA f8 [ e8 ] \bar "|"
\grg d8 [ f8~ ] f8 [ d8 ] \grg a4~ a8 [ \wbirl a8 ] \bar "|"
\grg b8 [ e8~ ] e8 [ d8 ] \grg c8 [ \gre a8~ ] a8 [ e8 ] \bar "|"
\thrwd d4~ d4 \dbld d4~ d8
}
pipesB = {
a8
\grg d8 [ f8~ ] f8 [ A8 ] \grf g4 \grA f8 [ e8 ] \bar "|"
\grg d8 [ f8~ ] f8 [ d8 ] \grg a4~ a8 [ \wbirl a8 ] \bar "|"
\grg b8 [ g8~ ] g8 [ f8 ] \dble e4 \thrwd d4 \bar "|"
\grg c8 [ \gre a8~ ] a8 [ \wbirl a8 ] A8. [ g16 ] \grA f8 [ e8 ] \bar "|" \break
\grg d8 [ f8~ ] f8 [ A8 ] \grf g4 \grA f8 [ e8 ] \bar "|"
\grg d8 [ f8~ ] f8 [ d8 ] \grg a4~ a8 [ \wbirl a8 ] \bar "|"
\grg b8 [ e8~ ] e8 [ d8 ] \grg c8 [ \gre a8~ ] a8 [ e8 ] \bar "|"
\thrwd d4~ d4 \dbld d4~ d8
}

View file

@ -0,0 +1,47 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\partial 8
\pipesA
\bar "||"
\break
\partial 8
\pipesB
\bar "|."
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}