2016-04-27 03:00:40 +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-04-27 03:00:40 +02:00
|
|
|
|
2023-08-24 14:21:12 +02:00
|
|
|
\layout {
|
|
|
|
indent = 5.0
|
|
|
|
short-indent = 2.0
|
|
|
|
}
|
|
|
|
|
|
|
|
pBreak = {\break}
|
2016-04-27 03:00:40 +02:00
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
2023-08-24 14:21:12 +02:00
|
|
|
\new PipeBandDrumStaff = "side" \with {
|
|
|
|
instrumentName = \markup{ \instrumentSide }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentSide }
|
|
|
|
} {
|
2016-04-27 03:00:40 +02:00
|
|
|
\global
|
|
|
|
<<
|
2023-08-24 14:21:12 +02:00
|
|
|
\new NullVoice = "format" {
|
|
|
|
\halfline
|
|
|
|
\pBreak
|
|
|
|
\halfline
|
2016-07-15 00:30:51 +02:00
|
|
|
\break
|
2023-08-24 14:21:12 +02:00
|
|
|
\section
|
|
|
|
\halfline
|
|
|
|
\pBreak
|
|
|
|
\halfline
|
|
|
|
\fine
|
|
|
|
}%End of Format
|
|
|
|
\new DrumVoice = "side" {
|
|
|
|
\sideglobal
|
|
|
|
\snareA
|
|
|
|
\snareB
|
|
|
|
}%End of side
|
2016-04-27 03:00:40 +02:00
|
|
|
>>
|
|
|
|
}
|
2023-08-24 14:21:12 +02:00
|
|
|
\new PipeBandDrumStaff = "tenor" \with {
|
|
|
|
instrumentName = \markup{ \instrumentTenor }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
} {
|
2016-04-27 03:00:40 +02:00
|
|
|
\tenorglobal
|
2023-08-24 14:21:12 +02:00
|
|
|
\tenorAA \tenorAB
|
|
|
|
\tenorBA \tenorBB
|
2016-04-27 03:00:40 +02:00
|
|
|
}
|
2023-08-24 14:21:12 +02:00
|
|
|
\new PipeBandDrumStaff = "bass" \with {
|
|
|
|
instrumentName = \markup{ \instrumentBass }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentBass }
|
|
|
|
} {
|
2016-04-27 03:00:40 +02:00
|
|
|
\bassglobal
|
2023-08-24 14:21:12 +02:00
|
|
|
\bassAA \bassAB
|
|
|
|
\bassBA \bassBB
|
2016-04-27 03:00:40 +02:00
|
|
|
}
|
|
|
|
>>
|
|
|
|
\header {
|
|
|
|
title = \title
|
2023-08-24 14:21:12 +02:00
|
|
|
subtitle = \subtitle
|
2016-04-27 03:00:40 +02: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 }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|