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-21 02:07:22 +01:00
|
|
|
\layout {
|
|
|
|
indent = 5.0
|
|
|
|
short-indent = 2.0
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:41:50 +01:00
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
2019-01-21 02:07:22 +01:00
|
|
|
\new PipeBandDrumStaff = "tenor" \with {
|
|
|
|
instrumentName = \markup{ \instrumentTenor }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
} {
|
|
|
|
\tenorglobal
|
2016-12-21 01:41:50 +01:00
|
|
|
\global
|
|
|
|
<<
|
|
|
|
{
|
2019-01-21 02:07:22 +01:00
|
|
|
\repeat volta 2 {
|
|
|
|
\part \line
|
|
|
|
}
|
|
|
|
\break
|
2016-12-21 01:41:50 +01:00
|
|
|
|
2019-01-21 02:07:22 +01:00
|
|
|
\part \line \bar "||"
|
|
|
|
\break
|
2016-12-21 01:41:50 +01:00
|
|
|
\line \bar "|."
|
2019-01-21 02:07:22 +01:00
|
|
|
|
|
|
|
}%Format
|
|
|
|
{
|
2016-12-21 01:41:50 +01:00
|
|
|
r8 \tenorA s8
|
|
|
|
|
|
|
|
\tenorB
|
|
|
|
\tenorA s8
|
|
|
|
|
2019-01-21 02:07:22 +01:00
|
|
|
}%Music
|
|
|
|
>>
|
2016-12-21 01:41:50 +01:00
|
|
|
}
|
2019-01-21 02:07:22 +01:00
|
|
|
\new PipeBandDrumStaff = "bass" \with {
|
|
|
|
instrumentName = \markup{ \instrumentBass }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentBass }
|
|
|
|
} {
|
2016-12-21 01:41:50 +01:00
|
|
|
\bassglobal
|
|
|
|
|
|
|
|
r8 \bassA s8
|
|
|
|
\bassB
|
|
|
|
\bassA s8
|
|
|
|
|
|
|
|
}
|
|
|
|
>>
|
|
|
|
\header {
|
|
|
|
title = \title
|
|
|
|
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 }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|