2016-10-25 23:36:32 +02:00
|
|
|
\version "2.18.2"
|
|
|
|
|
2016-11-29 15:24:03 +01:00
|
|
|
\include "bagpipe.ly"
|
|
|
|
|
2016-11-29 17:06:42 +01:00
|
|
|
\include "./config.ily"
|
|
|
|
\include "./notes.pipes.ily"
|
|
|
|
\include "./notes.lyrics.ily"
|
2016-10-25 23:36:32 +02:00
|
|
|
|
2022-07-26 23:43:19 +02:00
|
|
|
% From Svenax's bagpipemusic
|
|
|
|
markText = #(define-music-function (parser location text) (string?) #{
|
|
|
|
\once \override Score.RehearsalMark #'self-alignment-X = #LEFT
|
|
|
|
\mark \markup $text
|
|
|
|
#})
|
|
|
|
|
2016-10-25 23:36:32 +02:00
|
|
|
\score {
|
|
|
|
\new Staff {
|
|
|
|
\global
|
|
|
|
\lyricsglobal
|
|
|
|
<<
|
|
|
|
\new Voice = "format"
|
|
|
|
{
|
|
|
|
\repeat volta 2 {
|
|
|
|
% Refrain
|
|
|
|
\repeat unfold 6 {
|
|
|
|
\measure
|
|
|
|
}
|
|
|
|
\bar "||"
|
|
|
|
\break
|
|
|
|
% Couplet
|
|
|
|
\repeat unfold 4 {
|
|
|
|
\measure
|
|
|
|
}
|
|
|
|
\break
|
|
|
|
\repeat unfold 4 {
|
|
|
|
\measure
|
|
|
|
}
|
2022-07-26 23:43:19 +02:00
|
|
|
|
2016-10-25 23:36:32 +02:00
|
|
|
\measure
|
|
|
|
\break
|
|
|
|
|
|
|
|
}
|
|
|
|
% Dunno
|
2022-07-26 23:43:19 +02:00
|
|
|
\markText "Fine"
|
2016-10-25 23:36:32 +02:00
|
|
|
\repeat unfold 6 {
|
|
|
|
\measure
|
|
|
|
}
|
|
|
|
\bar "|."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}%Format
|
|
|
|
\new Voice = "tune"
|
|
|
|
{
|
|
|
|
\pipesA
|
|
|
|
\pipesB
|
|
|
|
|
|
|
|
\pipesE
|
|
|
|
|
|
|
|
}
|
|
|
|
\new Lyrics = "lyrics" {
|
|
|
|
\lyricsto "tune" {
|
|
|
|
\refrain
|
|
|
|
|
|
|
|
\coupletA
|
|
|
|
}
|
|
|
|
}
|
|
|
|
>>
|
|
|
|
}
|
|
|
|
\header {
|
|
|
|
title = \title
|
|
|
|
meter = \meter
|
|
|
|
instrument = \instrumentLyrics
|
|
|
|
composer = \markup \large {
|
|
|
|
\column \right-align {
|
|
|
|
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \composerPipes ":" } } #} )
|
|
|
|
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
|
|
|
|
}
|
|
|
|
\column \right-align {
|
|
|
|
$(if (not (string=? "" composerPipes)) #{ \markup { \line { \instrumentPipes } } #} )
|
|
|
|
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
%\markup {
|
|
|
|
% \fill-line{
|
|
|
|
% \column {
|
|
|
|
% \verseAblock
|
|
|
|
% \combine \null \vspace #0.5
|
|
|
|
% \verseBblock
|
|
|
|
% }
|
|
|
|
% }
|
|
|
|
%}
|
|
|
|
|