1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +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 4 = 80
}
%% Format
part = { \partial 8 s8 }
halfline = { \repeat unfold 2 { s1. | } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Piobaireachd o' Donuil Dubh"
meter = "Regimental March Past of The Seaforth Highlanders"

View file

@ -0,0 +1,59 @@
% 6/8 Piobaireachd o' Donuil Dubh
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\dble e8. [ c16 \grG c8 ] \grg f8. [ g16 A8 ] \bar "|"
\hdble e8. [ c16 \grG c8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
\dble e8. [ c16 \grG c8 ] \grg f8. [ g16 A8 ] \bar "|"
\hdble e8. [ c16 \grG a8 ] \dblb b4 \grG a8 \bar "|" \break
\dble e8. [ c16 \grG c8 ] \grg f8. [ g16 A8 ] \bar "|"
\hdble e8. [ c16 \grG c8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
\slurb b4 c8 \thrwd d8. [ e16 f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8
}
pipesB = {
\dble e8. [ c16 \grG c8 ] \grg f8. [ d16 \grG d8 ] \bar "|"
\dble e8. [ c16 \grG c8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
\dble e8. [ c16 \grG c8 ] \grg f8. [ d16 \grG d8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8 \bar "|" \break
\dble e8. [ c16 \grG c8 ] \grg f8. [ d16 \grG d8 ] \bar "|"
\dble e8. [ c16 \grG c8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
\slurb b4 c8 \thrwd d8. [ e16 f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8
}
pipesC = {
\grip e4 \grg a8 \grip f4 \grg a8 \bar "|"
\grip e4 \grg a8 \dblc c8. [ b16 \grG a8 ] \bar "|"
\grip e4 \grg a8 \grip f4 \grg a8 \bar "|"
\grip e4 c8 \dblb b4 \grG a8 \bar "|" \break
\grip e4 \grg a8 \grip f4 \grg a8 \bar "|"
\grip e4 \grg a8 \dblc c8. [ b16 \grG a8 ] \bar "|"
\slurb b4 c8 \thrwd d8. [ e16 f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8
}
pipesDA = {
A8. [ e16 \grg e8 ] A8. [ f16 \grg f8 ] \bar "|"
A8. [ e16 \grg e8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
A8. [ e16 \grg e8 ] A8. [ f16 \grg f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8 \bar "|"
}
pipesDBA = {
A8. [ e16 \grg e8 ] A8. [ f16 \grg f8 ] \bar "|"
A8. [ e16 \grg e8 ] \dblc c8. [ b16 \grG a8 ] \bar "|"
\slurb b4 c8 \thrwd d8. [ e16 f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8
}
pipesDBB = {
A8. [ e16 \grg e8 ] A8. [ f16 \grg f8 ] \bar "|"
A4 \grip A8 \hdblc c8. [ b16 \grG a8 ] \bar "|"
\slurb b4 c8 \thrwd d8. [ e16 f8 ] \bar "|"
\dble e8. [ c16 \grG a8 ] \dblb b4 \grG a8
}

View file

@ -0,0 +1,67 @@
\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}
\break
\repeat volta 2 {\line}
\break
\repeat volta 2 {\halfline}
\alternative{ {\halfline}{\halfline}}
}%Format
{
\pipesA
\pipesB
\pipesC
\pipesDA
\pipesDBA
\pipesDBB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA
\pipesA
\pipesB
\pipesB
\pipesC
\pipesC
\pipesDA
\pipesDBA
\pipesDA
\pipesDBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}