mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-01 10:03:32 +01:00
116 lines
2.6 KiB
Text
116 lines
2.6 KiB
Text
|
\version "2.19.0"
|
||
|
|
||
|
\include "bagpipe.ly"
|
||
|
|
||
|
\include "./config.ily"
|
||
|
\include "./notes.pipes.ily"
|
||
|
\include "./notes.pipes.seconds.ily"
|
||
|
%\include "./notes.pipes.thirds.ily"
|
||
|
|
||
|
\layout {
|
||
|
indent = 8.0
|
||
|
short-indent = 2.0
|
||
|
}
|
||
|
|
||
|
\score {
|
||
|
\new StaffGroup <<
|
||
|
\new Staff = "pipes" \with {
|
||
|
instrumentName = \markup{ \instrumentPipes }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||
|
} {
|
||
|
\global
|
||
|
\pipeglobal
|
||
|
<<
|
||
|
\new NullVoice = "format" {
|
||
|
\repeat volta 2 {
|
||
|
\part
|
||
|
\line
|
||
|
}
|
||
|
}%Format
|
||
|
\new Voice = "pipes" {
|
||
|
\pipesA s8*3
|
||
|
}%Pipes
|
||
|
>>
|
||
|
}
|
||
|
\new Staff = "seconds" \with {
|
||
|
instrumentName = \markup{ \instrumentPipesSecnd }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
|
||
|
} {
|
||
|
\pipessecndglobal
|
||
|
|
||
|
\pipessecndA s8*3
|
||
|
|
||
|
}
|
||
|
%{ \new Staff = "thirds" \with {
|
||
|
instrumentName = \markup{ \instrumentPipesThrd }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipeTthrd }
|
||
|
} {
|
||
|
\pipesthrdglobal
|
||
|
|
||
|
}
|
||
|
%}
|
||
|
>>
|
||
|
\header {
|
||
|
title = \title
|
||
|
meter = \meter
|
||
|
composer = \markup \large {
|
||
|
\column \right-align {
|
||
|
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
|
||
|
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
|
||
|
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \composerPipesthrd ":" }} #} )
|
||
|
}
|
||
|
\column \right-align {
|
||
|
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
|
||
|
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
|
||
|
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \instrumentPipesthrd }}#} )
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
\score {
|
||
|
\new StaffGroup <<
|
||
|
\global
|
||
|
\new Staff = "pipes" \with {
|
||
|
midiInstrument = #"bagpipe"
|
||
|
instrumentName = \markup{ \instrumentPipes }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipes }
|
||
|
} {
|
||
|
\pipeglobal
|
||
|
%%Tune
|
||
|
\partial 8*3
|
||
|
\pipesA
|
||
|
\pipesA
|
||
|
|
||
|
}
|
||
|
\new Staff = "seconds" \with {
|
||
|
midiInstrument = #"bagpipe"
|
||
|
instrumentName = \markup{ \instrumentPipesSecnd }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipesSecnd }
|
||
|
} {
|
||
|
\pipessecndglobal
|
||
|
%% Seconds
|
||
|
|
||
|
\partial 8*3
|
||
|
\pipessecndA
|
||
|
\pipessecndA
|
||
|
|
||
|
}
|
||
|
%{ \new Staff = "thirds" \with {
|
||
|
midiInstrument = #"bagpipe"
|
||
|
instrumentName = \markup{ \instrumentPipesThrd }
|
||
|
shortInstrumentName = \markup{ \shortInstrumentPipeThrd }
|
||
|
} {
|
||
|
\pipesthrdglobal
|
||
|
%% Thirds
|
||
|
}
|
||
|
%}
|
||
|
>>
|
||
|
\midi { \confTempo }
|
||
|
\header {
|
||
|
title = \title
|
||
|
meter = \meter
|
||
|
instrument = \instrumentPipes
|
||
|
composer = \composerPipes
|
||
|
}
|
||
|
}
|