2016-01-07 14:47:02 +01: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-01-07 14:47:02 +01:00
|
|
|
|
2019-01-03 23:34:05 +01:00
|
|
|
|
|
|
|
\layout {
|
|
|
|
indent = 5.0
|
|
|
|
short-indent = 2.0
|
|
|
|
}
|
|
|
|
|
2016-01-07 14:47:02 +01:00
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
2017-05-04 23:00:05 +02:00
|
|
|
\new PipeBandDrumStaff = "side" \with {
|
|
|
|
instrumentName = \markup{ \instrumentSide }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentSide }
|
|
|
|
} {
|
2016-01-07 14:47:02 +01:00
|
|
|
\global
|
|
|
|
<<
|
2016-11-07 09:27:20 +01:00
|
|
|
\new NullVoice = "format" {
|
|
|
|
|
|
|
|
}%End of Format
|
|
|
|
\new DrumVoice = "side" {
|
2022-03-30 15:29:52 +02:00
|
|
|
\sideglobal
|
2016-11-07 09:27:20 +01:00
|
|
|
|
|
|
|
}%End of side
|
2016-01-07 14:47:02 +01:00
|
|
|
>>
|
|
|
|
}
|
2017-05-04 23:00:05 +02:00
|
|
|
\new PipeBandDrumStaff = "tenor" \with {
|
|
|
|
instrumentName = \markup{ \instrumentTenor }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
} {
|
2016-02-19 11:57:29 +01:00
|
|
|
\tenorglobal
|
2016-01-07 14:47:02 +01:00
|
|
|
|
|
|
|
}
|
2017-05-04 23:00:05 +02:00
|
|
|
\new PipeBandDrumStaff = "bass" \with {
|
|
|
|
instrumentName = \markup{ \instrumentBass }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentBass}
|
|
|
|
} {
|
2016-03-15 15:46:32 +01:00
|
|
|
\bassglobal
|
|
|
|
|
|
|
|
}
|
2016-01-07 14:47:02 +01:00
|
|
|
>>
|
|
|
|
\header {
|
|
|
|
title = \title
|
2020-07-05 21:43:13 +02:00
|
|
|
subtitle = \subtitle
|
2016-01-07 14:47:02 +01:00
|
|
|
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 }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-19 11:57:29 +01:00
|
|
|
}
|