mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-23 08:43:31 +01:00
80 lines
1.9 KiB
Text
80 lines
1.9 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 }
|
||
|
<<
|
||
|
{ }%Format
|
||
|
{ }%Pipes
|
||
|
>>
|
||
|
}
|
||
|
\new Staff = "seconds" {
|
||
|
\pipessecndglobal
|
||
|
\set Staff.instrumentName = \markup{ \instrumentPipes Seconds }
|
||
|
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 2nd}
|
||
|
|
||
|
}
|
||
|
\new Staff = "thirds" {
|
||
|
\pipesthrdglobal
|
||
|
\set Staff.instrumentName = \markup{ \instrumentPipes Thirds }
|
||
|
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes 3rd }
|
||
|
|
||
|
}
|
||
|
>>
|
||
|
\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" {
|
||
|
\pipeglobal
|
||
|
\set Staff.midiInstrument = #"bagpipe"
|
||
|
%%Tune
|
||
|
|
||
|
}
|
||
|
\new Staff = "seconds" {
|
||
|
\pipesecndglobal
|
||
|
\set Staff.midiInstrument = #"bagpipe"
|
||
|
%% Seconds
|
||
|
|
||
|
}
|
||
|
\new Staff = "thirds" {
|
||
|
\pipesthrdglobal
|
||
|
\set Staff.midiInstrument = #"bagpipe"
|
||
|
%% Thirds
|
||
|
|
||
|
}
|
||
|
}
|
||
|
\midi { \confTempo }
|
||
|
\header {
|
||
|
title = \title
|
||
|
meter = \meter
|
||
|
instrument = \instrumentPipes
|
||
|
composer = \composerPipes
|
||
|
}
|
||
|
}
|