1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +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 2/2
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 2 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Lady Seaforth"
meter = "Reel"

View file

@ -0,0 +1,30 @@
% 2/2 Lady Seaforth
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key a \major
}
% Music
pipesA = {
A8 |
c16 \grd a8. \grg e8 a8 \grg c16 \grd a8. \dblg g4 |
b16 \grd a8. \dbld d8 a8 \grg b8. \grd b16 \gre b8 A8 |
c16 \grd a8. \grg e8 a8 \grg c16 \grd a8. \dblg g4 |
\hdble e4 \grg d8 b8 \grg c8. \grd a16 \gre a8
}
pipesBA = {
e8 |
\dblA A4 e8. A16 g16 A8. \hdble e8. g16 |
\dblg g4 \grA d8. g16 \grA b16 g8. d8. e16 |
}
pipesBBA = {
\dblA A4 e16 A8. g16 A8. \hdble e8. A16 |
g8 e \grg d b \gra c8. \grd a16 \gre a8
}
pipesBBB = {
A8 f g e \grg f8 d \grg e16 A8. |
g8 e \grg d b \gra c8. \grd a16 \gre a8
}

View file

@ -0,0 +1,54 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
\repeat volta 2 {
\partial 8
\pipesA s8
}
\break
\repeat volta 2 {
\partial 8
\pipesBA
} \alternative {
{ \pipesBBA }
{ \pipesBBB s8 }
}
\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
\pipesA
\pipesBA \pipesBBA
\pipesBA \pipesBBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}