mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
New Tunes
----------------------------------------------------- Mairi's Wedding Lochanside My Land PM JK Cairns Cabar Feidh (Reel, Hornpipe, Jig, Strathspey) La Baum Rowan Tree Wings Molly Connell
This commit is contained in:
parent
9f6b002762
commit
560b5621b7
82 changed files with 2747 additions and 236 deletions
17
4-4_marches/la_baum/config.ily
Normal file
17
4-4_marches/la_baum/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 4/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 s8 }
|
||||
measure = { \grace {s1} s1 | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "La Baum"
|
||||
meter = "March"
|
26
4-4_marches/la_baum/notes.pipes.ily
Normal file
26
4-4_marches/la_baum/notes.pipes.ily
Normal file
|
@ -0,0 +1,26 @@
|
|||
% 4/4 La Baum
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = "J. Roberts"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
a16 [ b16 ] |
|
||||
\grip c4 \gre a4 \thrwd d4~ d8 [ \grg c16 b16 ] |
|
||||
\grg c8 [ \grG a8~ ] a4~ a4~ a8 [ \grg c16 d16 ] |
|
||||
\grg e4 \birl a4 \grg e16 [ f8.~ ] f8 [ e8 ] |
|
||||
\grg b4~ b4~ b4~ b8 [ \grg a16 b16 ] |
|
||||
|
||||
\grip c4~ c8 [ \grg b16 a16 ] \grg b4 \grG b4 |
|
||||
\thrwd d4~ d8 [ \gre c8 ] \grG c4~ c8 [ \grg a16 b16 ] |
|
||||
\grip c4 \gre a4 \grip b4~ b8 [ \grG a8 ] |
|
||||
}
|
||||
pipesAendA = {
|
||||
\birl a4~ a~ a~ a8
|
||||
}
|
||||
pipesAendB = {
|
||||
\grip b4~ b~ b~ b8
|
||||
}
|
22
4-4_marches/la_baum/notes.pipes.seconds.ily
Normal file
22
4-4_marches/la_baum/notes.pipes.seconds.ily
Normal file
|
@ -0,0 +1,22 @@
|
|||
% 4/4 La Baum
|
||||
% Pipes (Seconds)
|
||||
\version "2.18.2"
|
||||
composerPipesSecnd = "PM FJ de Boone"
|
||||
arrangerPipesSecnd = ""
|
||||
pipessecndglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
pipessecndA = {
|
||||
\grg a16 [ b16 ] |
|
||||
A4 e4 \grg f4. e16 [ d16 ] |
|
||||
A8 [ e8 ] \grg e16 [ d16 e8~ ] e4~ e8 [ \gra e8 ] |
|
||||
A4 e4 \grg d4. e16 [ f16 ] |
|
||||
e2 e4. \gra d16 [ e16 ] |
|
||||
|
||||
A2 e2 |
|
||||
\grg f4. e16 [ d16 ] e4. \gra e8 |
|
||||
A4 e16 [ d16 e8 ] f4. e8 |
|
||||
}
|
||||
pipessecndAend = {
|
||||
\gra e4~ 4~ 4~ 8
|
||||
}
|
104
4-4_marches/la_baum/pipes.full.ly
Normal file
104
4-4_marches/la_baum/pipes.full.ly
Normal file
|
@ -0,0 +1,104 @@
|
|||
\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 }
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
\repeat unfold 3 {
|
||||
\measure
|
||||
}
|
||||
} \alternative {
|
||||
\measure
|
||||
\measure
|
||||
}\bar "|."
|
||||
}%Format
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
\pipesAendA s8
|
||||
\pipesAendB s8
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
\new Staff = "seconds" {
|
||||
\pipessecndglobal
|
||||
\set Staff.instrumentName = \markup{ \instrumentSecnd }
|
||||
\set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentSecnd}
|
||||
|
||||
\pipessecndA
|
||||
\pipessecndAend s8
|
||||
\pipessecndAend s8
|
||||
}
|
||||
% \new Staff = "thirds" {
|
||||
% \pipesthrdglobal
|
||||
% \set Staff.instrumentName = \markup{ \instrumentPipes \instrumentThrd }
|
||||
% \set Staff.shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentThrd }
|
||||
%
|
||||
% }
|
||||
>>
|
||||
\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
|
||||
\partial 8
|
||||
|
||||
\pipesA
|
||||
\pipesAendA
|
||||
\pipesA
|
||||
\pipesAendB s8
|
||||
}
|
||||
\new Staff = "seconds" {
|
||||
\pipessecndglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%% Seconds
|
||||
\pipessecndA \pipessecndAend
|
||||
\pipessecndA \pipessecndAend
|
||||
|
||||
}
|
||||
% \new Staff = "thirds" {
|
||||
% \pipesthrdglobal
|
||||
% \set Staff.midiInstrument = #"bagpipe"
|
||||
% %% Thirds
|
||||
%
|
||||
% }
|
||||
>>
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
55
4-4_marches/la_baum/pipes.ly
Normal file
55
4-4_marches/la_baum/pipes.ly
Normal file
|
@ -0,0 +1,55 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
\repeat unfold 3 {
|
||||
\measure
|
||||
}
|
||||
} \alternative {
|
||||
\measure
|
||||
\measure
|
||||
}\bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
\pipesAendA s8
|
||||
\pipesAendB s8
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 8
|
||||
\pipesA
|
||||
\pipesAendA
|
||||
\pipesA
|
||||
\pipesAendB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
46
4-4_marches/la_baum/pipes.seconds.ly
Normal file
46
4-4_marches/la_baum/pipes.seconds.ly
Normal file
|
@ -0,0 +1,46 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.seconds.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipessecndglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "seconds" {
|
||||
\pipessecndA \pipessecndAend
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSecnd
|
||||
composer = \composerPipesSecnd
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipessecndglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 8
|
||||
\pipessecndA \pipessecndAend
|
||||
\pipessecndA \pipessecndAend
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentSecnd
|
||||
composer = \composerPipesSecnd
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue