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,17 @@
\version "2.19.0"
%% Globals
global = {
\time 9/8
}
confTempo = {
\tempo 4. = 80
}
%% Format
part = { \partial 8 s8 }
measure = { \grace {s1} s4.*3 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Heights of Dargai"
meter = "March"

View file

@ -0,0 +1,31 @@
% 9/8 The Heights of Dargai
% Pipes
\version "2.18.2"
composerPipes = "J. Wallace"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a8. [ b16 \grip c8 ] \dble e4. \dblc c4 e8 |
\dblf f8. [ d16 f8 ] \dble e4. \dblc c4. |
\dblA A8. [ g16 f8 ] \dble e4. \grg a8. [ \grd c16 e8 ] |
\dblf f8. [ e16 c8 ] \grg b4. \taor b4 \dble e8 |
\grg a8. [ b16 \grip c8 ] \dble e4. \dblc c4 e8 |
\dblf f8. [ d16 f8 ] \dble e4. \dblc c4. |
\dblA A8. [ g16 f8 ] \dble e4. \dblb b4 e8 |
\dblc c8. [ \gre b16 \grd c8 ] \grg a4. \wbirl a4 e8
}
pipesB = {
\grg a8. [ \grd c16 e8 ] \grg f4. \dblf f8. [ d16 f8 ] |
A8. [ g16 \grA f8 ] \dble e4. \dblc c4. |
\dblA A8. [ g16 f8 ] \dble e4. \grg a8. [ \grd c16 e8 ] |
\dblf f8. [ e16 c8 ] \grg b4. \taor b4. |
\grg a8. [ \grd c16 e8 ] \grg f4. \dblf f8. [ d16 f8 ] |
A8. [ g16 \grA f8 ] \dble e4. \dblc c4. |
\dblA A8. [ g16 f8 ] \dble e4. \slurb b4 e8 |
\dblc c8. [ \gre b16 \grd c8 ] \grg a4. \wbirl a4.
}

View file

@ -0,0 +1,53 @@
\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
}
}