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 = "Teribus"
meter = "March"

View file

@ -0,0 +1,37 @@
% 2/4 Teribus
% Pipes
\version "2.18.2"
composerPipes = "Trad., arr. PM G.J. van Achterbergh"
pipesA = {
a8 |
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ] |
\grg f8 [ A8 ] \hdblf f8 [ d8 ] |
\dblg g8. [ f16 ] \dble e8. [ d16 ] |
\dblc c8 [ e8 ] \dblc c8 [ a8 ] |
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ] |
\grg f8 [ A8 ] \hdblf f8 [ d8 ] |
\dblg g8. [ f16 ] \dble e8. [ A16 ] |
\hdblf f8 [ d8 ] \dbld d8 |
}
pipesB = {
\dblg g8
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ d16 ]
\dblc c8 [ e8 ] \dblc c8 [ a8 ]
}
pipesBA = {
A4 \grip A8. [ g16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
}
pipesBB = {
\thrwd d8 [ \gre a8 ] \thrwd d8. [ e16 ]
\grg f8 [ A8 ] \hdblf f8 [ d8 ]
\dblg g8. [ f16 ] \dble e8. [ A16 ]
\hdblf f8 [ d8 ] \dbld d8
}

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 \halfline
}
\alternative {
{\halfline}
{\halfline}
}
\bar "|."
}
{
\pipesA s8
\pipesB
\pipesBA s8
\pipesBB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}