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

New Tunes: Cuidich 'n Righ, Lillibulero, PM Donald MacLean of Lewis, Lady Madelina Sinclair

New Tenor Score: Rakes of Mallow
This commit is contained in:
Eric Teunis de Boone 2019-03-29 14:05:51 +01:00
parent d27ca35b85
commit 355e5053cc
22 changed files with 1123 additions and 31 deletions

View file

@ -0,0 +1,84 @@
\version "2.19.0"
\include "lilydrum.ly"
\include "./config.ily"
%\include "./notes.bass.ily"
\include "./notes.tenor.ily"
\include "./notes.side.ily"
\layout {
indent = 5.0
short-indent = 2.0
}
\score {
\new StaffGroup <<
\new PipeBandDrumStaff = "side" \with {
instrumentName = \markup{ \instrumentSide }
shortInstrumentName = \markup{ \shortInstrumentSide }
} {
\global
\sideglobal
<<
\new NullVoice = "format" {
\part
\line
\break
\line
\bar "||"
\break
\part
\line
\break
\line
\bar "|."
}%End of Format
\new DrumVoice = "side" {
\snareA
\tutti { \removeWithTag #'tutti \snareA s8 }
\snareB
\tutti { \removeWithTag #'tutti \snareB s8 }
}%End of side
>>
}
\new PipeBandDrumStaff = "tenor" \with {
instrumentName = \markup{ \instrumentTenor }
shortInstrumentName = \markup{ \shortInstrumentTenor }
} {
\tenorglobal
\repeat unfold 2 {
s8 \tenorAA
\tenorAB
}
}
%{ \new PipeBandDrumStaff = "bass" \with {
instrumentName = \markup{ \instrumentBass }
shortInstrumentName = \markup{ \shortInstrumentBass}
} {
\bassglobal
}
%}
>>
\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 }}#} )
}
}
}
}

View file

@ -0,0 +1,30 @@
% 2/4 Rakes of Mallow
% Tenor
\version "2.18.2"
composerTenor = "N. Kuijkhoven, 2018"
arrangerTenor = ""
tenorglobal = {}
% Special Character
click = \andrewStop
% Music
tenorAA = \drummode {
d4 g4 d8 g d4 |
d4 g4 d8 g d4 |
d4 g4 d8 g d4 |
d4 g4 d8 g\click d4\click |
}
tenorAB = \drummode {
\flourish {
d4 d4
g g
d d
g g
d d
g g
d g
}
d \up g \up
}

View file

@ -0,0 +1,34 @@
\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
\break
\line
}
}%Format
\new DrumVoice = "tenor" {
\tenorAA
\tenorAB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentTenor
composer = \composerTenor
arranger = \arrangerTenor
}
}