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

New Tunes: Cuidich 'n Righ, Lillibulero, PM Donald MacLean of Lewis, Lady Madelina Sinclair

New Tenor Score: Rakes of Mallow
This commit is contained in:
Eric Teunis de Boone 2019-03-29 14:05:51 +01:00
parent d27ca35b85
commit 355e5053cc
22 changed files with 1123 additions and 31 deletions

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key b \minor
\time 6/8
}
confTempo = {
\tempo 4. = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Cuidich 'n Rich"
meter = "March"

View file

@ -0,0 +1,33 @@
% 6/8 Cuidich 'n Rich
% Pipes
\version "2.18.2"
composerPipes = "N. McSwayde"
arrangerPipes = ""
pipeglobal = {
\key b \minor
}
% Music
pipesA = {
f8 |
\grg b4 \taor b8 \grg b8. [ \grd c16 e8 ] |
\grg f16 [ A8. f8 ] \dble e8. [ c16 b8 ] |
\grg a4 \taor a8 \grg a8. [ \grd c16 e8 ] |
\grg f4 \grip f8 \dble e8. [ c16 \grd a8 ] |
\grg b4 \taor b8 \grg b8. [ \grd c16 e8 ] |
\grg f16 [ A8. f8 ] \dble e8. [ \grg c16 e8 ] |
\grg f16 [ A8. f8 ] \dble e8. [ \grg c16 e8 ] |
\dblf f4 \hslurb b8 \dblb b4
}
pipesB = {
f8 |
\grg b4 \taor b8 \dblf f4 e8 |
\dblA A4 f8 \dble e8. [ c16 b8 ] |
\grg a4 \taor a8 \dble e4 \birl a8 |
\dblf f4 \birl a8 \dble e4 \birl a8 |
\grg b4 \taor b8 \dblf f4 e8 |
\dblA A4 f8 \dble e8. [ \grg c16 e8 ] |
\grg f16 [ A8. f8 ] \dble e8. [ \grg c16 e8 ] |
\dblf f4 \hslurb b8 \dblb b4
}

View file

@ -0,0 +1,62 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part \halfline
\break
\halfline
}
\break
\repeat volta 2 {
\part \halfline
\break
\halfline
}
}%Format
\new Voice = "pipes" {
\pipesA s8
\pipesB s8
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 8
\repeat unfold 2 {
\pipesA
}
\repeat unfold 2 {
\pipesB
}
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}