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

CMPD: Side scores update

Highland Laddie
Auld Lang Syne
Green Glens of Antrim
When the Pipers play
Bells of Dunblane
Rose of Kelvingrove
Cullen Bay
Standards
This commit is contained in:
Eric Teunis de Boone 2019-02-02 12:23:54 +01:00
parent 7b25a087aa
commit 1c05f8ba65
34 changed files with 1312 additions and 106 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 = "Rose of Kelvingrove"
meter = "Air"

View file

@ -0,0 +1,11 @@
% 4/4 The Rose of Kelvingrove
% Pipes
\version "2.18.2"
composerPipes = "D. Knox"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
}

View file

@ -0,0 +1,36 @@
% 4/4 The Rose of Kelvingrove
% Side
\version "2.18.2"
composerSide = ""
arrangerSide = ""
sideglobal = {
\sixteenthBeaming
}
% Music
snareA = \drummode {
\repeat percent 3 {
d4:32(\< d:32)( d4)\! \flam d4 |
}
d4:32(\< d:32)( d8)\! g8 \flam d8 \flam g |
\repeat percent 2 {
d4:32(\< d:32)( d4)\! \flam d4 |
}
d4:32(\< d:32)( d8)\! g8 \flam d8 \flam g |
d4:32(\< d:32)( d4)\! \flam d4 |
}
snareB = \drummode {
\repeat percent 2 {
d4:32(\< d:32)( d4)\! \flam d4 |
d4:32(\< d:32)( d8)\! g8 \flam d8 \flam g |
}
\repeat percent 2 {
d4:32(\< d:32)( d4)\! \flam d4 |
}
d4:32(\< d:32)( d8)\! g8 \flam d8 \flam g |
d4:32(\< d:32)( d4)\! \flam d4 |
}
snareC = \drummode {
\snareA
}

View file

@ -0,0 +1,35 @@
\version "2.18.2"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.side.ily"
\score {
\new PipeBandDrumStaff {
\global
\sideglobal
\repeat volta 2 {
\unfoldRepeats
\snareA
}
\break
\repeat volta 2 {
\unfoldRepeats
\snareB
}
\break
\repeat volta 2 {
\unfoldRepeats
\snareC
}
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
arranger = \arrangerSide
}
}