2016-10-14 21:12:28 +02:00
|
|
|
\version "2.19.0"
|
|
|
|
|
2016-11-29 15:24:03 +01:00
|
|
|
\include "lilydrum.ly"
|
|
|
|
|
2016-11-29 17:06:42 +01:00
|
|
|
\include "./config.ily"
|
|
|
|
\include "./notes.bass.ily"
|
|
|
|
\include "./notes.tenor.ily"
|
|
|
|
\include "./notes.side.ily"
|
2016-10-14 21:12:28 +02:00
|
|
|
|
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
|
|
|
\new PipeBandDrumStaff = "side" {
|
|
|
|
\global
|
|
|
|
\sideglobal
|
|
|
|
\set PipeBandDrumStaff.instrumentName = \markup{\instrumentSide}
|
|
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{\shortInstrumentSide}
|
|
|
|
|
|
|
|
<<
|
|
|
|
{
|
|
|
|
\repeat volta 2 { \part \halfline \break \halfline } \break
|
|
|
|
\repeat volta 2 { \part \halfline \break }
|
|
|
|
\alternative{ {\part \halfline \break}{\part \halfline \break} }
|
|
|
|
\bar "|."
|
|
|
|
}%Format
|
|
|
|
{
|
|
|
|
\snareAA \snareAB s8
|
|
|
|
|
|
|
|
\snareBA s8
|
|
|
|
\snareBB s8
|
|
|
|
\snareAB s8
|
|
|
|
}%Music
|
|
|
|
>>
|
|
|
|
}
|
|
|
|
\new PipeBandDrumStaff = "tenor" {
|
|
|
|
\tenorglobal
|
|
|
|
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
|
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
|
2016-10-27 12:03:24 +02:00
|
|
|
s8 \tenorAA \tenorAB s8
|
|
|
|
|
|
|
|
s8 \tenorBA s8
|
2016-10-14 21:12:28 +02:00
|
|
|
\tenorBB s8
|
2016-10-27 12:03:24 +02:00
|
|
|
r8 \tenorAB s8
|
|
|
|
}
|
|
|
|
\new PipeBandDrumStaff = "bass" {
|
|
|
|
\bassglobal
|
|
|
|
\set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
|
|
|
\set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
|
|
|
|
|
|
|
s8 \bassAA \bassAB
|
|
|
|
s8 \bassBA
|
|
|
|
s8 \bassBB
|
|
|
|
s8 \bassAB
|
2016-10-14 21:12:28 +02:00
|
|
|
}
|
|
|
|
>>
|
|
|
|
\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 }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|