1
0
Fork 0
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:
Eric Teunis de Boone 2016-11-28 08:27:26 +01:00
parent 9f6b002762
commit 560b5621b7
82 changed files with 2747 additions and 236 deletions

View file

@ -0,0 +1,17 @@
\version "2.19.0"
%% Globals
global = {
\time 2/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 s8 }
measure = { \grace {s1} s2 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Mairi's Wedding"
meter = "Meter"

View file

@ -0,0 +1,40 @@
% 2/4 Maries Wedding
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg G8 [ \grd a8 ] \wbirl a8. [ b16 ] |
\thrwd d8. [ e16 ] \dblf f4 |
\dble e8 [ d8 ] \dblb b8 [ d8 ] |
\dblf f8 [ e8 ] \dblf f8 [ A8 ] |
\grg G8 [ \grd a8 ] \wbirl a8. [ b16 ] |
\thrwd d8. [ e16 ] \dblf f4 |
\dble e8 [ d8 ] \dblb b8 [ \gre G8 ] |
\grg a4 \wbirl a4
}
pipesBA = {
\grg f8 [ A8 ] \grg A4 |
\grip A8. [ g16 ] \dblf f4 |
\dble e8 [ d8 ] \dblb b8 [ d8 ] |
\dblf f8 [ e8 ] \dblf f4
}
pipesBBA = {
\grg f8 [ A8 ] \grg A4 |
\grip A8. [ g16 ] \dblf f4 |
\dble e8 [ d8 ] \dblb b8 [ \gre G8 ] |
\grg a4 \wbirl a4
}
pipesBBB = {
\grg G8 [ \grd a8 ] \wbirl a8. [ b16 ] |
\thrwd d8. [ e16 ] \dblf f4 |
\dble e8 [ d8 ] \dblb b8 [ \gre G8 ] |
\grg a4 \wbirl a4
}

View file

@ -0,0 +1,58 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\line
}
\break
\repeat volta 2 {
\halfline
} \alternative {
\halfline
\halfline
}\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
\pipesBA
\pipesBBA
\pipesBBB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA
\pipesA
\pipesBA \pipesBBA
\pipesBA \pipesBBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}