mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 12:29:22 +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:
parent
7b25a087aa
commit
1c05f8ba65
34 changed files with 1312 additions and 106 deletions
47
airs/when_the_pipers_play/bass.ly
Normal file
47
airs/when_the_pipers_play/bass.ly
Normal file
|
@ -0,0 +1,47 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.bass.ily"
|
||||
|
||||
\layout {
|
||||
indent = 6.0
|
||||
short-indent = 6.0
|
||||
}
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new PipeBandDrumStaff = "bass" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
} {
|
||||
\global
|
||||
\bassglobal
|
||||
<<
|
||||
\new NullVoice = "format"
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
|
||||
}%Format
|
||||
\new DrumVoice {
|
||||
\bassA
|
||||
}
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "center" \with {
|
||||
instrumentName = \markup \right-column { "Center" \instrumentBass }
|
||||
shortInstrumentName = \markup { "C.B.D." }
|
||||
}{
|
||||
\centerbassA
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentBass
|
||||
composer = \composerBass
|
||||
arranger = \arrangerBass
|
||||
}
|
||||
}
|
94
airs/when_the_pipers_play/drums.ly
Normal file
94
airs/when_the_pipers_play/drums.ly
Normal file
|
@ -0,0 +1,94 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.bass.ily"
|
||||
\include "./notes.tenor.ily"
|
||||
\include "./notes.side.ily"
|
||||
|
||||
|
||||
\layout {
|
||||
indent = 6.0
|
||||
short-indent = 6.0
|
||||
}
|
||||
makePercent =
|
||||
#(define-music-function (parser location note) (ly:music?)
|
||||
"Make a percent repeat the same length as NOTE."
|
||||
(make-music 'PercentEvent
|
||||
'length (ly:music-length note)))
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new PipeBandDrumStaff = "side" \with {
|
||||
instrumentName = \markup{ \instrumentSide }
|
||||
shortInstrumentName = \markup{ \shortInstrumentSide }
|
||||
} {
|
||||
\global
|
||||
\sideglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\partial 4 s4
|
||||
\repeat volta 2 {
|
||||
\halfline
|
||||
\measure
|
||||
\measure
|
||||
\measure
|
||||
}
|
||||
\alternative {
|
||||
{ \measure }
|
||||
{ \measure }
|
||||
}
|
||||
\bar "|."
|
||||
}%End of Format
|
||||
\new DrumVoice = "side" {
|
||||
\snareAA
|
||||
\snareAEndingI
|
||||
\snareAEndingII
|
||||
}%End of side
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" \with {
|
||||
instrumentName = \markup{ \instrumentTenor }
|
||||
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
} {
|
||||
\tenorglobal
|
||||
s4
|
||||
\tenorA r4
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass}
|
||||
} {
|
||||
\bassglobal
|
||||
s4
|
||||
\bassA
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "center" \with {
|
||||
instrumentName = \markup \right-column { "Center" \instrumentBass }
|
||||
shortInstrumentName = \markup{ "C.B.D." }
|
||||
} {
|
||||
\bassglobal
|
||||
s4
|
||||
\centerbassA
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
151
airs/when_the_pipers_play/full.ly
Normal file
151
airs/when_the_pipers_play/full.ly
Normal file
|
@ -0,0 +1,151 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "bagpipe.ly"
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.bass.ily"
|
||||
\include "./notes.tenor.ily"
|
||||
\include "./notes.side.ily"
|
||||
\include "./notes.pipes.ily"
|
||||
\include "./notes.pipes.seconds.ily"
|
||||
%\include "./notes.lyrics.ily"
|
||||
|
||||
\layout {
|
||||
indent = 6.0
|
||||
short-indent = 2.0
|
||||
%\context {
|
||||
% \Score
|
||||
% \remove "Volta_engraver"
|
||||
%}
|
||||
}
|
||||
makePercent =
|
||||
#(define-music-function (parser location note) (ly:music?)
|
||||
"Make a percent repeat the same length as NOTE."
|
||||
(make-music 'PercentEvent
|
||||
'length (ly:music-length note)))
|
||||
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new Staff \with {
|
||||
instrumentName = \markup{ \instrumentPipes }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||||
\RemoveAllEmptyStaves
|
||||
} {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
\measure
|
||||
\measure
|
||||
\measure
|
||||
} \alternative {
|
||||
\measure
|
||||
\measure
|
||||
}
|
||||
\bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s8*3
|
||||
\makePercent s1
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
%{ \new Staff = "song" {
|
||||
\lyricsglobal
|
||||
\new Voice = "lyrics" {
|
||||
|
||||
}
|
||||
}
|
||||
}%
|
||||
%{ \new Lyrics = "verse1" {
|
||||
\lyricsglobal
|
||||
\lyricsto "lyrics" {
|
||||
\verseA
|
||||
}
|
||||
}
|
||||
%}
|
||||
\new Staff = "seconds" \with {
|
||||
instrumentName = \markup{ \instrumentPipes \instrumentSecnd }
|
||||
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
|
||||
|
||||
} {
|
||||
\pipessecndglobal
|
||||
\pipessecndA s8*3
|
||||
\makePercent s1
|
||||
|
||||
}
|
||||
|
||||
\new PipeBandDrumStaff = "side" \with {
|
||||
instrumentName = \markup { \instrumentSide }
|
||||
shortInstrumentName = \markup{ \shortInstrumentSide }
|
||||
% \consists "Volta_engraver"
|
||||
} {
|
||||
\sideglobal
|
||||
|
||||
s8
|
||||
\snareAA
|
||||
\snareAEndingI
|
||||
\snareAEndingII
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "tenor" \with {
|
||||
instrumentName = \markup{ \instrumentTenor }
|
||||
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
} {
|
||||
\tenorglobal
|
||||
|
||||
s8*3
|
||||
\tenorA r4
|
||||
\makePercent s1
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||
} {
|
||||
\bassglobal
|
||||
s8*3
|
||||
\bassA
|
||||
\makePercent s1
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "center" \with {
|
||||
instrumentName = \markup \right-column { "Center" \instrumentBass }
|
||||
shortInstrumentName = \markup{ "C.B.D." }
|
||||
} {
|
||||
\bassglobal
|
||||
s8*3
|
||||
\centerbassA
|
||||
\makePercent s1
|
||||
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup \large {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
|
||||
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||||
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
|
||||
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
64
airs/when_the_pipers_play/mid.ly
Normal file
64
airs/when_the_pipers_play/mid.ly
Normal file
|
@ -0,0 +1,64 @@
|
|||
\version "2.19.0"
|
||||
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.bass.ily"
|
||||
\include "./notes.tenor.ily"
|
||||
|
||||
\layout {
|
||||
indent = 5.0
|
||||
short-indent = 2.0
|
||||
}
|
||||
|
||||
\score {
|
||||
\new StaffGroup <<
|
||||
\new PipeBandDrumStaff = "tenor" \with {
|
||||
instrumentName = \markup{ \instrumentTenor }
|
||||
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
||||
} {
|
||||
\tenorglobal
|
||||
\global
|
||||
<<
|
||||
{
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
{
|
||||
\tenorA
|
||||
}%Music
|
||||
>>
|
||||
}
|
||||
\new PipeBandDrumStaff = "bass" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||
} {
|
||||
\bassglobal
|
||||
\bassA
|
||||
|
||||
}
|
||||
\new PipeBandDrumStaff = "center" \with {
|
||||
instrumentName = \markup{ \instrumentBass }
|
||||
shortInstrumentName = \markup{ \shortInstrumentBass }
|
||||
} {
|
||||
\bassglobal
|
||||
\centerbassA
|
||||
|
||||
}
|
||||
>>
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
composer = \markup {
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
||||
}
|
||||
\column \right-align {
|
||||
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
||||
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
25
airs/when_the_pipers_play/notes.bass.ily
Normal file
25
airs/when_the_pipers_play/notes.bass.ily
Normal file
|
@ -0,0 +1,25 @@
|
|||
% 4/4 When the Pipers play
|
||||
% Bass
|
||||
\version "2.18.2"
|
||||
composerBass = "T. Hachmang"
|
||||
arrangerBass = "E.T. de Boone, 2019"
|
||||
bassglobal = {}
|
||||
% Music
|
||||
bassEnding = \drummode {
|
||||
bd4 r4 r4 r4
|
||||
}
|
||||
bassA = \drummode {
|
||||
\repeat unfold 7 {
|
||||
bd4 r8 bd8 r8 bd8 bd4
|
||||
}
|
||||
\bassEnding
|
||||
}
|
||||
|
||||
centerbassEnding = \drummode {
|
||||
bd4 bd4 bd4 bd4
|
||||
}
|
||||
centerbassA = \drummode {
|
||||
\repeat unfold 8 {
|
||||
bd4 bd4 bd4 bd4
|
||||
}
|
||||
}
|
65
airs/when_the_pipers_play/notes.side.ily
Normal file
65
airs/when_the_pipers_play/notes.side.ily
Normal file
|
@ -0,0 +1,65 @@
|
|||
% 4/4 When the Pipers Play
|
||||
% Side
|
||||
\version "2.18.2"
|
||||
composerSide = "T. Hachmang"
|
||||
arrangerSide = "E.T. de Boone, 2019"
|
||||
sideglobal = {
|
||||
}
|
||||
% Music
|
||||
snareAAupbeat = \drummode {
|
||||
d8 g |
|
||||
}
|
||||
snareAA = \drummode {
|
||||
\tag #'upbeat \snareAAupbeat
|
||||
|
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
\flam d16. g32 d16. g32
|
||||
|
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
d4:32(
|
||||
|
|
||||
|
||||
d16.) g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
\flam d16. g32 d16. g32
|
||||
|
|
||||
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d8
|
||||
d2:32(
|
||||
|
||||
%%
|
||||
d16.) g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
\flam d16. g32 d16. g32
|
||||
|
|
||||
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
d4:32(
|
||||
|
|
||||
|
||||
|
||||
d16.) g32 d16. \flam g32
|
||||
d16. g32 \flam d16. g32
|
||||
d16. \flam g32 d16. g32
|
||||
\flam d16. g32 d16. g32
|
||||
|
|
||||
}
|
||||
snareAEndingI = \drummode {
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d8
|
||||
d2:32\laissezVibrer
|
||||
}
|
||||
snareAEndingII = \drummode {
|
||||
\flam d16. g32 d16. \flam g32
|
||||
d16. g32 \flam d8
|
||||
\flam g8
|
||||
}
|
21
airs/when_the_pipers_play/notes.tenor.ily
Normal file
21
airs/when_the_pipers_play/notes.tenor.ily
Normal file
|
@ -0,0 +1,21 @@
|
|||
% 4/4 When the Pipers play
|
||||
% Tenor
|
||||
\version "2.18.2"
|
||||
composerTenor = "T. Hachmang"
|
||||
arrangerTenor = "E.T. de Boone, 2019"
|
||||
tenorglobal = {}
|
||||
% Music
|
||||
tenorEnd = \drummode {
|
||||
d8.. g32
|
||||
r8 d8
|
||||
d4
|
||||
}
|
||||
tenorA = \drummode {
|
||||
\repeat unfold 7 {
|
||||
d8.. g32
|
||||
r8 d8
|
||||
r16. g32 d8
|
||||
g4 |
|
||||
}
|
||||
\tenorEnd
|
||||
}
|
42
airs/when_the_pipers_play/side.ly
Normal file
42
airs/when_the_pipers_play/side.ly
Normal file
|
@ -0,0 +1,42 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.side.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
\sideglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\partial 4 s4
|
||||
\repeat volta 2 {
|
||||
\halfline
|
||||
\measure
|
||||
\measure
|
||||
\measure
|
||||
}
|
||||
\alternative {
|
||||
{ \measure }
|
||||
{ \measure }
|
||||
}
|
||||
\bar "|."
|
||||
}%Format
|
||||
|
||||
\new DrumVoice = "side" {
|
||||
\snareAA
|
||||
\snareAEndingI
|
||||
\snareAEndingII
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSide
|
||||
composer = \composerSide
|
||||
arranger = \arrangerSide
|
||||
}
|
||||
}
|
32
airs/when_the_pipers_play/tenor.ly
Normal file
32
airs/when_the_pipers_play/tenor.ly
Normal file
|
@ -0,0 +1,32 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "lilydrum.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.tenor.ily"
|
||||
|
||||
\score {
|
||||
\new PipeBandDrumStaff {
|
||||
\global
|
||||
\tenorglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
|
||||
}%Format
|
||||
|
||||
\new DrumVoice = "tenor" {
|
||||
\tenorA
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentTenor
|
||||
composer = \composerTenor
|
||||
arranger = \arrangerTenor
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue