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 3/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 = "My Land"
meter = "Retreat"

View file

@ -0,0 +1,32 @@
% 3/4 My Land
% Pipes
\version "2.18.2"
composerPipes = "N. MacLean"
arrangerPipes = "Seaforth Highlanders (1936)"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a8. [ c16 ] \dble e4 \gra e4 |
\dblA A8 [ c8 ] \dble e4 \gra e4 |
\thrwd d8. [ c16 ] \grg b4~ b8 [ f8 ] |
\dble e8. [ d16 ] \dblc c2 |
\grg a8. [ c16 ] \dble e4 \gra e4 |
\dblA A8 [ c8 ] \dble e4 \gra e4 |
\thrwd d8. [ c16 ] \grg b4 f4 |
\dble e4 \birl a2
}
pipesB = {
\grg c8 [ \grG a8 ] \dble e4 \gra e4 |
\grg f8. [ g16 ] \dblA A4 \grg A4 |
\thrwd d8. [ f16 ] \dble e4~ e8 [ c8 ] |
\thrwd d8. [ c16 ] \grg b2 |
\grg a8. [ c16 ] \dble e4 \gra e4 |
\dblA A8 [ c8 ] \dble e4 \gra e4 |
\thrwd d8. [ c16 ] \grg b4 f4 |
\dble e4 \birl a2
}

View file

@ -0,0 +1,52 @@
\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 {
\line
}
}%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
\pipesA
\pipesB
\pipesB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}