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 \grace {s1} s8 }
measure = { \grace {s1} s2 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Jolly Beggarman"
meter = "Hornpipe"

View file

@ -0,0 +1,43 @@
% 2/4 The Jolly Beggarman
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
e8 |
\grg a16. [ \grd a32 \gre a16. \grd b32 ] \grg a16. [ b32 \grg c16. d32 ] |
\grg e16. [ f32 \grg e16. c32 ] \thrwd d8 [ \grg c16. d32 ] |
\grg e16. [ a32 \gbirl a8 ] \grg a16. [ b32 \grg c32 \grd a16. ] |
\grg b16. [ \grd G32 \gre G16. a32 ] \dblb b8 [ e8 ] |
\grg a16. [ \grd a32 \gre a16. \grd b32 ] \grg a16. [ b32 \grg c16. d32 ] |
\grg e16. [ f32 \grg e16. c32 ] \thrwd d8 [ \grg c16. d32 ] |
\grg e16. [ A32 \grg A16. g32 ] A16. [ f32 \dble e16. d32 ] |
\dblc c8 [ \gre a8 ] \wbirl a8
}
pipesBA = {
\grg e16. [ f32 ] |
\dblg g8 [ \slurf g16. A32 ] g16. [ f32 \grg e16. f32 ] |
\grA g16. [ f32 \grg e16. c32 ] \thrwd d8 [ \grg c16. d32 ] |
\grg e16. [ a32 \gbirl a8 ] \grg a16. [ b32 \grg c32 \grd a16. ] |
\grg b16. [ \grd G32 \gre G16. a32 ] \dblb b8
}
pipesBBA = {
e16. f32 |
\dblg g8 [ \slurf g16. A32 ] g16. [ f32 \grg e16. f32 ] |
\grA g16. [ f32 \grg e16. c32 ] \thrwd d8 [ \grg c16. d32 ] |
\grg e16. [ A32 \grg A16. g32 ] A16. [ f32 \dble e16. d32 ] |
\dblc c8 [ \gre a8 ] \wbirl a8
}
pipesBBB = {
e8 |
\grg a16. [ \grd a32 \gre a16. \grd b32 ] \grg a16. [ b32 \grg c16. d32 ] |
\grg e16. [ f32 \grg e16. c32 ] \thrwd d8 [ \grg c16. d32 ] |
\grg e16. [ A32 \grg A16. g32 ] A16. [ f32 \dble e16. d32 ] |
\dblc c8 [ \gre a8 ] \wbirl a8
}

View file

@ -0,0 +1,62 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part
\line
}
\break
\repeat volta 2 {
\part
\repeat unfold 3 \measure
\grace{s1} s4 s8
} \alternative {
{\part \halfline}
{\part \halfline}
}
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesBA \pipesBBA s8
\pipesBA \pipesBBB s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesA
\pipesBA \pipesBBA
\pipesBA \pipesBBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}