mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-01 01:53:31 +01:00
Eric Teunis de Boone
66598fa2ac
This is in preparation for drumscores. \pipesB now contains 12 (=3*4) measures instead of 10 (=2*4 + 2)
84 lines
1.5 KiB
Text
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
|
|
}
|
|
}
|