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

Written 6/8s

Fix for strange gracenote placement. Every empty measure starts with a 'empty' gracenote.
Needs to be implemented in every tune
This commit is contained in:
Eric-Teunis de Boone 2016-06-07 19:07:01 +02:00
parent 164b8225bd
commit 66d70e9fac
17 changed files with 831 additions and 1 deletions

View file

@ -0,0 +1,16 @@
\version "2.19.0"
%% Globals
global = {
\time 6/8
}
confTempo = {
\tempo 2. = 90
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 2 { s1. | } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Cock o'the North"
meter = "March"

View file

@ -0,0 +1,68 @@
% 6/8 Cock o'the North
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
A8 |
c16 [ \grd a8. \grd c8 ] \dblb b4 \grG a8 |
\grg a8. [ \grd c16 e8 ] \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblc c8. [ b16 \grG a8 ] |
\grg b4. \taor b4 A8 |
c16 [ \grd a8. \grd c8 ] \dblb b4 \grG a8 |
\grg a8. [ \grd c16 e8 ] \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblb b4 \gre G8 |
\grg a4. \wbirl a4
}
pipesBA = {
\dblg g8 |
\dblA A4 e8 \dblf f4 e8 |
\dblA A4 e8 \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblc c8. [ b16 \grG a8 ] |
\grg b4.
}
pipesBBA = {
\taor b4 \dblg g8 |
\dblA A4 e8 \dblf f4 e8 |
\dblA A4 e8 \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblb b4 \gre G8 |
\grg a4. \wbirl a4
}
pipesBBB = {
b8. [ \grg c16 d8 ] |
\grg c16 [ e8. c8 ] \dblb b4 \grG a8 |
\grg a8. [ \grd c16 e8 ] \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblb b4 \gre G8 |
\grg a4. \wbirl a4
}
pipesC = {
\dblA A8 |
c4 \taor c8 \dblc c8. [ b16 \grG a8 ] |
\grg c4 \grip e8 \dblf f4 e8 |
\grg c4 \taor c8 \dblc c8. [ b16 \grG a8 ] |
\grg b4. \taor b4 A8 |
c4 \taor c8 \dblc c8. [ b16 \grG a8 ] |
\grg c4 \grip e8 \dblf f4 e8 |
\grg c16 [ \grd a8. \grd c8 ] \dblb b4 \gre G8 |
\grg a4. \wbirl a4
}
pipesDA = {
\dblg g8 |
\dblA A4 e8 \dblf f4 e8 |
\grg f16 [ A8. e8 ] \dblf f4 e8 |
c16 [ A8. c8 ] \dblc c8. [ b16 \grG a8 ] |
\grg b4.
}
pipesDBA = {
\taor b4 \dblg g8 |
\dblA A4 e8 \dblf f4 e8 |
\grg f16 [ A8. e8 ] \dblf f4 e8 |
c16 [ \grd a8. \grd c8 ] \dblb b4 \gre G8 |
\grg a4. \wbirl a4
}

View file

@ -0,0 +1,79 @@
\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
\part \line
\break
\repeat volta 2 {\part \line}
\break
\part \line
\break
\part \line
\bar "|."
}%Format
{
\pipesA s8
\pipesBA
\pipesBBA s8
\pipesBA
\pipesBBB s8
\pipesC s8
\pipesDA
\pipesDBA s8
\pipesDA
\pipesBBB s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesA
\pipesBA
\pipesBBA
\pipesBA
\pipesBBB
\pipesC
\pipesC
\pipesDA
\pipesDBA
\pipesDA
\pipesBBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}