pipeband-music/4-4_marches/wings/side.ly

52 lines
919 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
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
<<
\new NullVoice = "format" {
2016-01-07 14:47:02 +01:00
\partial 8 s8
\repeat volta 2 {
\quartline
} \alternative {
\quartline
{ \quartline
\markTextEol "Fine"
}
}\bar "|."
\break
2016-01-07 14:47:02 +01:00
\partial 8 s8
\line
\markTextEol "D.C. al Fine"
\bar "||"
}%Format
\new DrumVoice = "side" {
2016-01-07 14:47:02 +01:00
\snareAA
\snareABA s4
2016-01-07 14:47:02 +01:00
\snareABB
\snareBA
2016-01-07 14:47:02 +01:00
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
}
}