pipeband-music/2-4_marches/black_bear/side.ly

38 lines
701 B
Plaintext
Raw Normal View History

2016-01-07 14:47:02 +01:00
\version "2.18.2"
\include "lilydrum.ly"
\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
\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
}