2016-10-25 08:17:17 +02:00
|
|
|
\version "2.19.0"
|
|
|
|
|
2016-11-29 15:24:03 +01:00
|
|
|
\include "bagpipe.ly"
|
|
|
|
\include "lilydrum.ly"
|
|
|
|
|
2016-11-29 17:06:42 +01:00
|
|
|
\include "./config.ily"
|
|
|
|
%\include "./notes.bass.ily"
|
|
|
|
%\include "./notes.tenor.ily"
|
|
|
|
\include "./notes.side.ily"
|
|
|
|
\include "./notes.pipes.ily"
|
|
|
|
\include "./notes.lyrics.ily"
|
2016-10-25 08:17:17 +02:00
|
|
|
|
2019-03-02 00:18:36 +01:00
|
|
|
\layout {
|
|
|
|
indent = 5.0
|
|
|
|
short-indent = 2.0
|
|
|
|
}
|
|
|
|
|
2016-10-25 08:17:17 +02:00
|
|
|
\score {
|
|
|
|
\new StaffGroup <<
|
2019-03-02 00:18:36 +01:00
|
|
|
\new Staff \with {
|
|
|
|
instrumentName = \markup{ \instrumentPipes }
|
|
|
|
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
|
|
|
} {
|
2016-10-25 08:17:17 +02:00
|
|
|
\global
|
|
|
|
\pipeglobal
|
|
|
|
<<
|
|
|
|
\new Voice = "format" { \line \line
|
|
|
|
\break
|
|
|
|
\line \line
|
|
|
|
\break
|
|
|
|
\bar "|."
|
|
|
|
}%Format
|
|
|
|
\new Voice = "pipes"{
|
|
|
|
\pipes
|
|
|
|
}%Pipes
|
|
|
|
>>
|
|
|
|
}
|
|
|
|
\new Lyrics = "verse1" {
|
|
|
|
\lyricsto "pipes" {
|
|
|
|
\verseA
|
|
|
|
}
|
|
|
|
}
|
2019-03-02 00:18:36 +01:00
|
|
|
\new PipeBandDrumStaff = "side" \with {
|
|
|
|
instrumentName = \markup \column {\instrumentSide}
|
|
|
|
shortInstrumentName = \markup{\shortInstrumentSide}
|
|
|
|
} {
|
2016-10-25 08:17:17 +02:00
|
|
|
\sideglobal
|
|
|
|
|
|
|
|
\repeat unfold 3 { \snareAA }
|
|
|
|
\snareAB
|
|
|
|
}
|
|
|
|
% \new PipeBandDrumStaff = "tenor" {
|
|
|
|
% \tenorglobal
|
|
|
|
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentTenor }
|
|
|
|
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentTenor }
|
|
|
|
%
|
|
|
|
% }
|
|
|
|
% \new PipeBandDrumStaff = "bass" {
|
|
|
|
% \bassglobal
|
|
|
|
% \set PipeBandDrumStaff.instrumentName = \markup{ \instrumentBass }
|
|
|
|
% \set PipeBandDrumStaff.shortInstrumentName = \markup{ \shortInstrumentBass}
|
|
|
|
%
|
|
|
|
% }
|
|
|
|
>>
|
|
|
|
\header {
|
|
|
|
title = \title
|
|
|
|
meter = \meter
|
|
|
|
composer = \markup \large {
|
|
|
|
\column \right-align {
|
|
|
|
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { \composerLyrics ":" } } #} )
|
2019-03-04 02:38:56 +01:00
|
|
|
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes \arrangerPipes ":" }} #} )
|
2016-10-25 08:17:17 +02:00
|
|
|
$(if (not (string=? "" composerSide)) #{ \markup {\line { \composerSide ":" }} #} )
|
|
|
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \composerTenor ":" }} #} )
|
|
|
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \composerBass ":" }} #} )
|
|
|
|
}
|
|
|
|
\column \right-align {
|
|
|
|
$(if (not (string=? "" composerLyrics)) #{ \markup { \line { "Lyrics" } } #} )
|
|
|
|
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
|
|
|
$(if (not (string=? "" composerSide)) #{ \markup {\line { \instrumentSide }}#} )
|
|
|
|
$(if (not (string=? "" composerTenor)) #{ \markup {\line { \instrumentTenor }}#} )
|
|
|
|
$(if (not (string=? "" composerBass)) #{ \markup {\line { \instrumentBass }}#} )
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|