1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2024-09-28 12:44:42 +02:00
pipeband-music/2-4_marches/caller_herrin/pipes.cairns.ly
Eric Teunis de Boone 66598fa2ac [tune] Modify length of pipesB for Caller Herrin
This is in preparation for drumscores. \pipesB now contains 12 (=3*4) measures instead of 10 (=2*4 + 2)
2022-11-07 20:46:37 +01:00

84 lines
1.5 KiB
Text

\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
markTextEolDown = #(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
\once \override Score.RehearsalMark #'direction = #DOWN
\mark \markup $text
#})
fine = {\markTextEolDown "Fine" }
dsalfine = {\markTextEolDown "D.S. al Fine" }
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part
\halfline
\mark \markup { \musicglyph "scripts.segno"}
%\inStaffSegno
\halfline
\fine
}
\break
\part
\halfline
\halfline
\dsalfine
\bar "||"
%\break
%\halfline
%\break
%\halfline
%\bar "|."
} % Format
\new Voice = "pipes" {
\pipesAvI s8
\removeWithTag #'fine \pipesBvI
} % Pipes
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipesvI
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\unfoldRepeats {
\repeat volta 2 {
\pipesAvI
}
\removeWithTag #'fine \pipesBvI
\removeWithTag #'fineRemove \pipesAvI
}
}
\midi { \confTempo }
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipesvI
}
}