1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 12:29:22 +02: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

View file

@ -0,0 +1,10 @@
% <<Time Sig>> <<Title>>
% Pipes (Seconds)
\version "2.18.2"
composerPipessecnd = ""
pipessecndglobal = {
\bagpipeKey
}
pipessecndA = {
}

View file

@ -0,0 +1,10 @@
% <<Time Sig>> <<Title>>
% Pipes (Thirds)
\version "2.18.2"
composerPipesthrd = ""
pipesthrdglobal = {
\bagpipeKey
}
pipesthrdA = {
}

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
}
}

View file

@ -25,4 +25,10 @@
%%Tune
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}

35
template/pipes.seconds.ly Normal file
View file

@ -0,0 +1,35 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.seconds.ily"
\score {
\new Staff {
\global
\pipessecndglobal
<<
{ }%Format
{ }
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentpipessecnd
composer = \composerpipessecnd
}
}
\score {
\new Staff { \global \pipessecndglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentpipessecnd
composer = \composerpipessecnd
}
}

35
template/pipes.thirds.ly Normal file
View file

@ -0,0 +1,35 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.thirds.ily"
\score {
\new Staff {
\global
\pipesthrdglobal
<<
{ }%Format
{ }
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipesthrd
composer = \composerPipesthrd
}
}
\score {
\new Staff { \global \pipethrdglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipesthrd
composer = \composerPipesthrd
}
}