1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 12:29:22 +02:00

A lot of new Tunes

Still work to do on the Anthems and Jim Thomson of flagstaff
This commit is contained in:
Eric Teunis de Boone 2016-11-07 23:33:04 +01:00
parent f24876228f
commit 76e6d0ffa1
53 changed files with 2225 additions and 7 deletions

View file

@ -0,0 +1,16 @@
\version "2.19.0"
%% Globals
global = {
\time 3/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
measure = { \grace {s1} s4*3 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Torosay Castle"
meter = "Retreat"

View file

@ -0,0 +1,55 @@
% 3/4 Torosay Castle
% Pipes
\version "2.18.2"
composerPipes = "PM J. Laurie"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\thrwd d8. [ e16 ] \dblf f4 \birl a4 |
\grg f8. [ e16 ] \thrwd d4 \dblf f4 |
\dble e8. [ d16 ] \dblc c4 \gre a4 |
\dblc c8 [ e8 ] \thrwd d4 \grg f4 |
\thrwd d8. [ e16 ] \dblf f4 \birl a4 |
\grg f8. [ e16 ] \thrwd d4 \dblf f4 |
\dble e8. [ d16 ] \dblc c4 e4 |
\grA g16 [ f16 \grg e16 f16 ] \thrwd d4 \dbld d4
}
pipesB = {
\grg f8. [ g16 ] \dblA A4 \thrwd d4 |
\grA g16 [ f16 e16 d16 ] \dblc c4 \grg e4 |
\grg e8. [ f16 ] \dblg g4 \hdblc c4 |
A16 [ g16 f16 e16 ] \thrwd d4 \grg f4 |
\grg f8. [ g16 ] \dblA A4 \hdblf f4 |
A8 [ c8 ] \grip c4 \grg e4 |
\grg e8. [ f16 ] \dblg g4 \hdblc c4 |
A16 [ g16 f16 e16 ] \thrwd d4 \dbld d4
}
pipesC = {
\grg a4 \wbirl a4 \dblc c8 [ e8 ] |
\dblg g8 [ \grA a8 ] \thrwd d4 \grg f4 |
\grg e16 [ f16 g16 e16 ] \dblc c4 \gre a4 |
\grg f16 [ g16 A16 f16 ] A4 \hdblf f4 |
\grg a4 \wbirl a4 \dblc c8 [ e8 ] |
\grA g16 [ e16 \grg c16 \grd a16 ] \thrwd d4 \grg f4 |
\grg e16 [ f16 g16 e16 ] \dblc c4 A4 |
\grg A16 [ g16 f16 e16 ] \thrwd d4 \dbld d4
}
pipesD = {
\grg f8. [ g16 ] \dblA A4 \thrwd d4 |
\dblA A8. [ d16 ] \dblc c4 \dblA A4 |
\grg A8 [ c8 ] \grip c4 \dblA A4 |
\grg A8 [ c8 ] \thrwd d4 \dblA A4 |
f8. [ g16 ] \dblA A4 \thrwd d4 |
\grg d16 [ e16 ] \grg d16 [ b16 ] \dblc c4 \dblA A4 |
\grg A8 [ c8 ] \grip c4 \dblA A4 |
\grg A16 [ g16 f16 e16 ] \thrwd d4 \dbld d4
}

View file

@ -0,0 +1,71 @@
\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
}
\break
\repeat volta 2 {
\line
}
\break
\repeat volta 2 {
\line
}
}%Format
\new Voice = "pipes" {
\pipesA
\pipesB
\pipesC
\pipesD
}
>>
}
\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
\pipesD
\pipesD
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}