1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +02:00

Fixed Attribution of a few tunes

This commit is contained in:
Eric Teunis de Boone 2019-04-02 17:37:50 +02:00
parent 34467eed03
commit 1d970d861f
19 changed files with 80 additions and 52 deletions

View file

@ -1,7 +1,8 @@
% 4/4 Dawning of the Day
% Pipes
\version "2.18.2"
composerPipes = "Trad., arr. PM T.F.J. de Boone"
composerPipes = "Trad."
arrangerPipes = "PM T.F.J. de Boone"
pipeglobal = {
\key a \mixolydian
}

View file

@ -1,7 +1,8 @@
% 4/4 Dawning of the Day
% Pipes (Seconds)
\version "2.18.2"
composerPipessecnd = "Trad., arr. PM T.F.J. de Boone"
composerPipesSecnd = "Trad."
arrangerPipesSecnd = "PM T.F.J. de Boone"
pipessecndglobal = {
\key a \mixolydian
}

View file

@ -45,11 +45,11 @@
composer = \markup \large {
\column \right-align {
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
$(if (not (string=? "" composerPipesSecnd)) #{ \markup {\line { \composerPipesSecnd ":" }} #} )
}
\column \right-align {
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
$(if (not (string=? "" composerPipesSecnd)) #{ \markup {\line { \instrumentPipesSecnd }}#} )
}
}
}

View file

@ -29,6 +29,7 @@
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
@ -44,4 +45,11 @@
\pipesBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}

View file

@ -26,10 +26,12 @@
\header {
title = \title
meter = \meter
instrument = \instrumentPipessecnd
composer = \composerPipessecnd
instrument = \instrumentPipesSecnd
composer = \composerPipesSecnd
arranger = \arrangerPipesSecnd
}
}\score {
}
\score {
\new Staff { \global \pipessecndglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
@ -42,4 +44,11 @@
\pipessecndBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipesSecnd
composer = \composerPipesSecnd
arranger = \arrangerPipesSecnd
}
}