1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-17 05:19:21 +02:00

workable right now

This commit is contained in:
Eric Teunis de Boone 2016-01-07 14:47:02 +01:00
commit 792d8f563e
195 changed files with 7013 additions and 0 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 { s4 s4 } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "High Road to Gairloch"
meter = "March"

View file

@ -0,0 +1,26 @@
% 2/4 High Road to Gairloch
% Pipes
\version "2.18.2"
composerPipes = "Trad."
pipesA = {
\grg e8. [ f16 ] \grg e8 [ a8 ] |
\dblc c8 [ \gre a8 ] \dble e4 |
\thrwd d8 [ \grg f16 e16 ] \thrwd d8 [ \gre G8 ] |
\dblb b8 [ \gre G8 ] d4 |
\grg e8. [ f16 ] \grg e8 [ a8 ] |
\dblc c8 [ \gre a8 ] \dble e4 |
\grg a8. [ b16 ] \dblc c8 [ \gre a8 ] |
\dblb b4 \grG a4
}
pipesB = {
\dblc c8 [ \gre a8 ] \wbirl a8. [ b16 ] |
\dblc c8 [ \gre a8 ] \dblc c4 |
\thrwd d8. [ c16 ] \grg b8. [ c16 ] |
\thrwd d8 [ \gre b8 ] \thrwd d4 |
\dblc c8 [ \gre a8 ] \wbirl a8. [ b16 ] |
\dblc c8 [ \gre b8 ] \dblc c8 [ e8 ] |
\grg a8. [ b16 ] \dblc c8 [ \gre a8 ] |
\dblb b4 \grG a4
}

View file

@ -0,0 +1,27 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\bagpipeKey
<<
{
\line
\line
}
{
\pipesA
\pipesB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}