1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-10-31 02:16:34 +01:00

Fixed a few tunes

Template for seconds and thirds and a 'full' for pipes added
This commit is contained in:
Eric Teunis de Boone 2016-03-21 01:29:43 +01:00
parent 16d7896465
commit 35bf4dc8f3
51 changed files with 1090 additions and 517 deletions

79
template/pipes.full.ly Normal file
View file

@ -0,0 +1,79 @@
\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
}
}