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 6/8
}
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 = "Farewell to the Creeks"
meter = "March"

View file

@ -0,0 +1,60 @@
% 6/8 Farewell to the Creeks
% Pipes
\version "2.18.2"
composerPipes = "PM J. Robertson"
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
A8 |
\hdble e4 c8 \grg c8. [ b16 \grd c8 ] |
\thrwd d8. [ e16 f8 ] \dble e4 d8 |
\grg c4 \grip e8 \grg a8. [ \grd c16 e8 ] |
\dble e8. [ d16 c8 ] \dblb b4 A8 |
\hdble e4 c8 \grg c8. [ b16 \grd c8 ] |
\thrwd d8. [ e16 f8 ] \dble e4 d8 |
\grg c4 \grip e8 \dble e8. [ d16 c8 ] |
\dblb b4. \grG a4
}
pipesB = {
f8 |
\dble e8. [ c16 e8 ] \grg f16 [ A8. g8 ] |
\hdblf f8. [ d16 f8 ] \grg e8. [ c16 \grd a8 ] |
\grg c4 \taor c8 \grg c16 [ e8. c8 ] |
\grg d8. [ c16 d8 ] \dblb b4 f8 |
\dble e8. [ c16 e8 ] \grg f16 [ A8. g8 ] |
\hdblf f8. [ d16 f8 ] \grg e8. [ c16 \grd a8 ] |
\grg c4 \grip e8 \dble e8. [ d16 c8 ] |
\dblb b4. \grG a4
}
pipesC = {
A8 |
\hdblc c4. \thrwd d4 f8 |
\grg c16 [ e8. c8 ] \grg c8. [ b16 \grd a8 ] |
\thrwd d4 f8 \dblc c4 e8 |
\dble e8. [ d16 c8 ] \dblb b4 A8 |
\hdblc c4. \thrwd d4 f8 |
\grg c16 [ e8. c8 ] \grg c8. [ b16 \grd a8 ] |
\grg c4 \grip e8 \dble e8. [ d16 c8 ] |
\dblb b4. \grG a4
}
pipesD = {
e8 |
\dblA A4 e8 \grg f4 A8 |
\dble e8 [ e8. f16 ] \grg e8. [ c16 \grd a8 ] |
\thrwd d4 f8 \dblc c4 e8 |
\dble e8. [ d16 c8 ] \dblb b4 e8 |
\dblA A4 e8 \grg f4 A8 |
\dble e8 [ e8. f16 ] \grg e8. [ c16 \grd a8 ] |
\grg c4 \grip e8 \dble e8. [ d16 c8 ] |
\dblb b4. \grG a4
}

View file

@ -0,0 +1,63 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat unfold 4 {
\repeat volta 2 {
\part \line
}
\break
}
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesB s8
\pipesC s8
\pipesD s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesA
\pipesB
\pipesB
\pipesC
\pipesC
\pipesD
\pipesD
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}