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,17 @@
\version "2.19.0"
%% Globals
global = {
\time 6/8
}
confTempo = {
\tempo 4. = 80
}
%% Format
part = { \partial 8 s8 }
measure = { \grace {s4 } s1. | }
halfline = { \repeat unfold 2 { \measure } }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Kilaloe"
meter = "Regimental March Past of The Royal Irish Rangers"

View file

@ -0,0 +1,78 @@
% 6/8 Kilaloe
% Pipes
\version "2.18.2"
composerPipes = ""
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg a8 |
\thrwd d4 e8 \grg f4 e8 |
\thrwd d4. \gre a4. |
\grip b4 d8 \dblc c4 b8 |
\grg a4. \wbirl a4. |
\dblf f4 e8 \grg f4 e8 |
\dblf f4 A8 \grf g4 f8 |
\dble e2. |
\gra e4. \grg a4. |
\thrwd d4 e8 \grg f4 e8 |
\thrwd d4. \gre a4. |
\dblb b4 d8 \grg c4 b8 |
\grg a4. \grg f4 g8 |
\dblA A4 f8 \dblA A4 f8 |
\dble e4 g8 \grA f4 e8 |
\thrwd d2. |
\dbld d4. \grg a4. |
\hslura g4 f8 \hslura g4 e8 |
\thrwd d4. \gre a4. |
\dblA A4 f8 \dblA A4 f8 |
\dbld d4. \dbld d4 c8 |
\dblb b4 \grg a8 \dblb b4 g8 |
\grA f4 A8 \grf g4 f8 |
\dble e2.~ |
e4. \grg f4 g8 |
\dblA A4 f8 \dblA A4 f8 |
\thrwd d4. \dbld d4 c8 |
\dblb b4 e8 \dblc c4 b8 |
\grg a4. \grg f4 g8 |
\dblA A4 f8 \dblA A4 f8 |
\dble e4 g8 \grA f4 e8 |
\thrwd d2.~ |
d4. \grg a8 [ b8 c8 ] |
}
pipesB = {
\thrwd d4 c8 \thrwd d4 e8 |
\thrwd d4. \grg a8 [ b8 c8 ] |
\thrwd d4 c8 \thrwd d4 e8 |
\thrwd d4. \grg a8 [ b8 c8 ] |
\thrwd d4 c8 \thrwd d4 e8 |
\dblf f4 A8 \grf g4 f8 |
\dble e4 d8 \grg c4 b8 |
\grg a4. \grg f4 g8 |
\dblA A4 f8 \dblA A4 f8 |
\dblA A4. \grf f4. |
\slura g4 f8 \grg e4 d8 |
\dblc c4. \gra a4. |
\dblA A4 f8 \slura g4 e8 |
\dblf f4 d8 A4.~ |
A4. A4 g8 |
\grf f4 d8 \grg e4 c8 |
}
pipesBBA = {
\thrwd d4. \grg a8 [ b8 c8 ]
}
pipesBBB = {
\thrwd d4. \grg d4.
}

View file

@ -0,0 +1,68 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
{
\part
\line
\break
\line
\break
\line
\break
\line \bar "|."
\break
\repeat volta 2 {
\line
\break
\line
\break
\line
\break
\repeat unfold 3 { s1. | }
}
\alternative{ { \grace{ s8 } s1.} {s1.} }
\bar "|."
}%Format
{
\pipesA
\pipesB \pipesBBA
\pipesB \pipesBBB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\pipesA
\pipesB \pipesBBA
\pipesB \pipesBBB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}