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-03-14 23:22:23 +01: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-03-01 18:48:48 +01:00
|
|
|
\sideglobal
|
2016-01-07 14:47:02 +01:00
|
|
|
<<
|
|
|
|
{
|
2017-03-14 23:22:23 +01:00
|
|
|
\repeat volta 2 { \part \line \markTextEol "Fine" } \break
|
|
|
|
\part \line \markTextEol "D.C. al Fine" \bar "||"
|
2016-01-07 14:47:02 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
\snareA s8
|
|
|
|
|
|
|
|
\snareBA
|
|
|
|
}
|
|
|
|
>>
|
|
|
|
}
|
|
|
|
\header {
|
|
|
|
title = \title
|
|
|
|
meter = \meter
|
|
|
|
instrument = \instrumentSide
|
|
|
|
composer = \composerSide
|
|
|
|
}
|
2016-02-22 00:36:34 +01:00
|
|
|
}
|