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,13 @@
\version "2.19.0"
%% Globals
global = {
\time 3/4
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 4 { s2.| } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Collin's Cattle"
meter = "Retreat"

View file

@ -0,0 +1,30 @@
% 3/4 Collins Cattle
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
pipesA = {
\grg a8. [ b16 ] \grip c4 \dblc c4 |
\dble e4 \dblc c8 [ b8 ] \grG a4 |
\grg a8. [ b16 ] \grip c4 \dble e4 |
\dblA A4 \hdblf f2 |
\dble e8. [ d16 ] \grg c4 \dble e4 |
\dblc c8 [ \gre a8 ] \grg b4 \grip c4 |
\dblA A8. [ f16 ] \dble e4 \dblc c8 [ \gre a8 ] |
\dblb b4 \grG a2
}
pipesB = {
\grg c8. [ d16 ] \dble e4 \gra e4 |
\dblA A4 \hdblf f4 \grg e4 |
\grg c8. [ d16 ] \dble e4 \grg f4 |
A4 \grg A2 |
a8. [ b16 ] \grip c4 \dblb b4 |
\grG a4 \grg b4 \grip c4 |
\dblA A8. [ f16 ] \dble e4 \dblc c8 [ \gre a8 ] |
\dblb b4 \grG a2
}

View file

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