1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2024-09-28 12:44:42 +02:00
pipeband-music/4-4_marches/wings/side.ly
Eric Teunis de Boone 14f0332b28 Various Tune Fixes
Most are fixing (gracing) alignment by restructuring the Staff.
2019-03-04 04:26:04 +01:00

51 lines
926 B
Text

\version "2.18.2"
\include "lilydrum.ly"
\include "./config.ily"
\include "./notes.side.ily"
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
#})
\score {
\new PipeBandDrumStaff {
\global
\sideglobal
<<
\new NullVoice = "format" {
\partial 8 s8
\repeat volta 2 {
\quartline
} \alternative {
\quartline
{ \quartline
\markTextEol "Fine"
}
}\bar "|."
\break
\partial 8 s8
\halfline
\markTextEol "D.C. al Fine"
\bar "||"
}%Format
\new DrumVoice = "side" {
\snareAA
\snareABA
\snareABB r8 s8
\snareBA
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentSide
composer = \composerSide
}
}