2016-01-07 14:47:02 +01:00
|
|
|
\version "2.18.2"
|
|
|
|
|
2016-11-29 15:24:03 +01:00
|
|
|
\include "lilydrum.ly"
|
|
|
|
|
2016-11-29 17:06:42 +01:00
|
|
|
\include "./config.ily"
|
|
|
|
\include "./notes.side.ily"
|
2016-01-07 14:47:02 +01:00
|
|
|
|
2017-05-29 17:11:04 +02:00
|
|
|
markTextEol = #(define-music-function (parser location text) (string?) #{
|
|
|
|
\once \override Score.RehearsalMark #'break-visibility = #end-of-line-visible
|
|
|
|
\once \override Score.RehearsalMark #'self-alignment-X = #RIGHT
|
|
|
|
\mark \markup $text
|
|
|
|
#})
|
|
|
|
|
2016-01-07 14:47:02 +01:00
|
|
|
\score {
|
|
|
|
\new PipeBandDrumStaff {
|
|
|
|
\global
|
2016-11-28 08:27:26 +01:00
|
|
|
\sideglobal
|
|
|
|
<<
|
|
|
|
\new NullVoice = "format" {
|
2016-01-07 14:47:02 +01:00
|
|
|
\partial 8 s8
|
|
|
|
\repeat volta 2 {
|
2016-11-28 08:27:26 +01:00
|
|
|
\quartline
|
|
|
|
} \alternative {
|
|
|
|
\quartline
|
2017-05-29 17:11:04 +02:00
|
|
|
{ \quartline
|
|
|
|
\markTextEol "Fine"
|
|
|
|
}
|
2016-11-28 08:27:26 +01:00
|
|
|
}\bar "|."
|
|
|
|
\break
|
|
|
|
|
2016-01-07 14:47:02 +01:00
|
|
|
\partial 8 s8
|
2019-03-04 04:23:31 +01:00
|
|
|
\halfline
|
2017-05-29 17:11:04 +02:00
|
|
|
\markTextEol "D.C. al Fine"
|
|
|
|
\bar "||"
|
2016-11-28 08:27:26 +01:00
|
|
|
}%Format
|
|
|
|
|
|
|
|
\new DrumVoice = "side" {
|
2016-01-07 14:47:02 +01:00
|
|
|
\snareAA
|
2018-01-30 16:23:53 +01:00
|
|
|
\snareABA
|
|
|
|
\snareABB r8 s8
|
2016-11-28 08:27:26 +01:00
|
|
|
\snareBA
|
2016-01-07 14:47:02 +01:00
|
|
|
}
|
|
|
|
>>
|
|
|
|
}
|
|
|
|
\header {
|
|
|
|
title = \title
|
|
|
|
meter = \meter
|
|
|
|
instrument = \instrumentSide
|
|
|
|
composer = \composerSide
|
|
|
|
}
|
2016-07-15 00:30:51 +02:00
|
|
|
}
|