1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-14 20:09:25 +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,13 @@
\version "2.19.0"
%% Globals
global = {
\time 2/2
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 2 { s1 | } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The MacKenzie's Reel"
meter = "Reel"

View file

@ -0,0 +1,74 @@
% 2/2 The MacKenzie's Reel
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
pipesA = {
A8 |
\birl a4
\grg a8. [ b16 ]
\dblc c4
\grg c16 [ A8. ]
|
\dblc c4
\grg c8 [ \grd b8 ]
\grg c16 [ e8. ]
\dblf f4
|
\gbirl a4
\grg a8. [ b16 ]
\dblc c4
A8. [ f16 ]
|
\dble e8. [ c16 ]
\grg b8 [ \grd c8 ]
\grg a8. [ \grd a16 ]
\gre a8
}
pipesBA = {
f8 |
\grg e8. [ a16 ]
\dble e8. [ c16 ]
\dble e8. [ a16 ]
\gbirl a8 [ A8 ]
|
\grg e8. [ a16 ]
\dble e8. [ c16 ]
\grg b8. [ \grd b16 ]
\gre b8 [ f8 ]
|
\grg e8. [ a16 ]
\dble e8. [ c16 ]
\dble e8. [ a16 ]
A8. [ f16 ]
|
\dble e8. [ c16 ]
\grg b8 [ \grd c8 ]
\grg a8. [ \grd a16 ]
\gre a8 f8 |
}
pipesBB = {
\grg e8. [ a16 ]
\dble e8. [ c16 ]
\dble e8. [ a16 ]
\birl a8 [ A8 ]
|
\grg e8. [ a16 ]
\dble e8. [ c16 ]
\grg b8. [ \grd b16 ]
\gre b8 [ A8 ]
|
\grip a4
\grg a8. [ b16 ]
\dblc c4
A8. [ f16 ]
|
\dble e8. [ c16 ]
\grg b8 [ \grd c8 ]
\grg a8. [ \grd a16 ]
\gre a8
}

View file

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