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

Moved out of pipebanddrumming repo. This is the repo for all my music..

This commit is contained in:
Eric Teunis de Boone 2016-02-20 16:51:07 +01:00
parent bcb750add2
commit dd127fb48b
277 changed files with 0 additions and 572 deletions

View file

@ -0,0 +1,14 @@
\version "2.19.0"
%% Globals
global = {
\time 2/4
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 4 { s2 | } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Piper's Cave"
meter = "March"

View file

@ -0,0 +1,38 @@
% 2/4 Pipers Cave
% Pipes
\version "2.18.2"
composerPipes = "PM J. Sutherland, 1936"
pipesA = {
\dblc c16. [ b32 ] |
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8 [ c8 ] \dblc c8 [ \grg b16 \grd a16 ] |
\dblc c8 [ \grg b8 ] \taor b8 [ \dblc c16. b32 ] | \break
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a8
}
pipesB = {
\dblg g8 |
\dblA A8 [ f8 ] \dblf f8 [ e16 f16 ] |
\dblA A8 [ c8 ] \grip c8 [ A16 f16 ] |
\dble e8 [ c8 ] \dblc c8 [ \grg b16 \grd a16 ] |
\dblc c8 [ \grg b8 ] \taor b8
}
pipesBA = {
\dblg g8 |
\dblA A8 [ f8 ] \dblf f8 [ e16 f16 ] |
\dblA A8 [ c8 ] \grip c8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a8
}
pipesBB = {
\dblc c16. [ b32 ] |
\grg a4 \wbirl a8. [ b16 ] |
\grip c8 [ f8 ] \slure f8 [ A16 f16 ] |
\dble e8. [ c16 ] \grg b8 [ \dblc c16 b16 ] |
\grg a4 \wbirl a4
}

View file

@ -0,0 +1,41 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\bagpipeKey
<<
{
\repeat volta 2 {
\part \line
}
\break
\repeat volta 2 {
\part s2*3 s4 s8
}
\alternative {
{s8 \halfline}
{s8 \halfline}
}
\bar "|."
}
{
\pipesA s8
\pipesB
\pipesBA s8
\pipesBB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}