mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-11-12 14:43:31 +01:00
63 lines
1.6 KiB
Text
63 lines
1.6 KiB
Text
\version "2.19.0"
|
|
|
|
\include "config.ily"
|
|
\include "notes.pipes.ily"
|
|
\include "notes.pipes.seconds.ily"
|
|
\include "notes.pipes.thirds.ily"
|
|
|
|
\score {
|
|
\new StaffGroup <<
|
|
\new Staff = "pipes" {
|
|
\global
|
|
\pipeglobal
|
|
\set Staff.instrumentName = \markup{ \instrumentPipes }
|
|
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes }
|
|
<<
|
|
{
|
|
\repeat volta 2 { \line }
|
|
\break
|
|
\repeat volta 2 { \line }
|
|
}%Format
|
|
{
|
|
\pipesA
|
|
|
|
\pipesB
|
|
}%Pipes
|
|
>>
|
|
}
|
|
\new Staff = "seconds" {
|
|
\pipessecndglobal
|
|
\set Staff.instrumentName = \markup{ \instrumentPipes Seconds }
|
|
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
|
|
|
|
\pipessecndA
|
|
|
|
\pipessecndB
|
|
}
|
|
\new Staff = "thirds" {
|
|
\pipesthrdglobal
|
|
\set Staff.instrumentName = \markup{ \instrumentPipes Thirds }
|
|
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 3rd }
|
|
|
|
\pipesthrdA
|
|
|
|
\pipesthrdB
|
|
}
|
|
>>
|
|
\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 }}#} )
|
|
}
|
|
}
|
|
}
|
|
}
|