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/2
}
confTempo = {
\tempo 2 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 2 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "the Piobaireachd of Donald Dubh"
meter = "Reel"

View file

@ -0,0 +1,32 @@
% 2/2 Piobaireachd of Donald Dubh
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "J. MacInnis"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg e8 [ c8 ] \pelc c4 \grg f8 [ g8 A8 f8 ] |
\grg e8 [ c8 ] \pelc c4 \grg c8 [ b8 a8 \grd c8 ] |
\grg e8 [ c8 ] \pelc c4 \grg f8 [ g8 A8 f8 ] |
\grg e8 [ c8 a8 c8 ] \dblb b4 \grG a4 |
\grg e8 [ c8 ] \pelc c4 \grg f8 [ g8 A8 f8 ] |
\grg e8 [ c8 ] \pelc c4 \grg c8 [ b8 a8 \grd c8 ] |
\grg b8 [ \grd b8 b8 c8 ] \grg d8 [ \gre d8 d8 f8 ] |
\grg e8 [ c8 a8 c8 ] \dblb b4 \grG a4
}
pipesB = {
\grg e8 [ c8 ] \pelc c4 \grg f8 [ d8 ] \lpeld d4 |
\grg e8 [ c8 ] \pelc c4 \grg c8 [ b8 a8 \grd c8 ] |
\grg e8 [ c8 ] \pelc c4 \grg f8 [ d8 ] \lpeld d4 |
\grg e8 [ c8 a8 c8 ] \dblb b4 \grG a4 |
\grg e8 [ c8 ] \pelc c4 \grg f8 [ d8 ] \lpeld d4 |
\grg e8 [ c8 ] \pelc c4 \grg c8 [ b8 a8 \grd c8 ] |
\grg b8 [ \grd b8 b8 c8 ] \grg d8 [ \gre d8 d8 f8 ] |
\grg e8 [ c8 a8 ] c8 ] \dblb b4 \grG a4
}

View file

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