2016-12-21 01:41:50 +01:00
|
|
|
\version "2.19.0"
|
|
|
|
|
|
|
|
\include "lilydrum.ly"
|
|
|
|
|
|
|
|
\include "./config.ily"
|
|
|
|
\include "./notes.bass.ily"
|
|
|
|
\include "./notes.tenor.ily"
|
|
|
|
|
2019-01-03 23:34:05 +01:00
|
|
|
\layout {
|
|
|
|
indent = 5.0
|
|
|
|
short-indent = 2.0
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:41:50 +01:00
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
2017-05-04 23:00:05 +02:00
|
|
|
\new PipeBandDrumStaff = "tenor" \with {
|
|
|
|
instrumentName = \markup{ \instrumentTenor }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
} {
|
2016-12-21 01:41:50 +01:00
|
|
|
\global
|
|
|
|
<<
|
2022-03-30 15:29:52 +02:00
|
|
|
\new NullVoice = "format" {
|
2016-12-21 01:41:50 +01:00
|
|
|
|
|
|
|
}%Format
|
2022-03-30 15:29:52 +02:00
|
|
|
\new Voice = "tenor" {
|
|
|
|
\tenorglobal
|
2016-12-21 01:41:50 +01:00
|
|
|
|
2022-03-30 15:29:52 +02:00
|
|
|
}%Tenor
|
2016-12-21 01:41:50 +01:00
|
|
|
}
|
2017-05-04 23:00:05 +02:00
|
|
|
\new PipeBandDrumStaff = "bass" \with {
|
|
|
|
instrumentName = \markup{ \instrumentBass }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentBass }
|
|
|
|
} {
|
2016-12-21 01:41:50 +01:00
|
|
|
\bassglobal
|
|
|
|
|
|
|
|
}
|
|
|
|
>>
|
|
|
|
\header {
|
|
|
|
title = \title
|
2020-07-05 21:43:13 +02:00
|
|
|
subtitle = \subtitle
|
2016-12-21 01:41:50 +01:00
|
|
|
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 }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|