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 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 = "The Maple Leaf Forever"
meter = "March"

View file

@ -0,0 +1,44 @@
% 4/4 The Maple Leaf Forever
% Pipes
\version "2.18.2"
composerPipes = "Alexander Muir"
pipeglobal = {
\bagpipeKey
}
tb = { \pgrace { A32[ b ] } }
% Music
pipesA = {
\grg a4 \wbirl a4 \grg f4. d8 |
\dblb b4 d4 \gre a2 |
\grg c4. d8 \dble e4 d4 |
\dblc c4 b4 \grg a4. G8 |
\grg a4 \wbirl a4 \thrwd d4. \grd d8 |
\grg f4 d4 \dblb b4 \grg c8 [ d8 ] |
\dble e4 d4 \dblc c4 \grg b8 [ \grG a8 ] |
\grg a2. \wbirl a4 |
}
pipesB = {
\dblb b4 \gre a4 \thrwd d4. a8|
\grg b4 \thrwd d4 \grg a4. \wbirl a8 |
\grg b4 \grip b4 \dblg g4. f8 |
\grg f8 e4. \gra e4 a4 |
\dblA A4 f4 \thrwd d4 c4 |
\grg b4 d4 \gre a4. \wbirl a8 |
\grg b4 \dblg g4 \tb f4. e8 |
\grg e8 d4.~ d4. a8 |
}
pipesC = {
\dblb b4 \gre a4 \thrwd d4. a8 |
\grg b4 \thrwd d4 \grg a4. \wbirl a8 |
\grg a4 \wbirl a4 \dblg g4. f8 |
\grg f8 e4. \gra e4 a4 |
\dblA A4 f4 \thrwd d4 c4 |
\grg b4 d4 \gre a4. \wbirl a8 |
\grg b4 \dblg g4 \tb f4. e8 |
\grg e8 d4.~ d2 |
}

View 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 {
\line
}
\break
\line
\break
\line
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
\pipesB
\pipesC
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA \pipesA
\pipesB \pipesB
\pipesC \pipesC
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}