mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +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:
parent
d27ca35b85
commit
355e5053cc
22 changed files with 1123 additions and 31 deletions
18
strathspeys/lady_madelina_sinclair/config.ily
Normal file
18
strathspeys/lady_madelina_sinclair/config.ily
Normal file
|
@ -0,0 +1,18 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\key a \mixolydian
|
||||
\time 4/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 112
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 \grace{s4.} s8 }
|
||||
measure = { \grace {s1} s1 | }
|
||||
halfline = { \repeat unfold 2 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Lady Madelina Sinclair"
|
||||
meter = "Strathspey"
|
37
strathspeys/lady_madelina_sinclair/notes.pipes.ily
Normal file
37
strathspeys/lady_madelina_sinclair/notes.pipes.ily
Normal file
|
@ -0,0 +1,37 @@
|
|||
% 4/4 Lady Madelina Sinclair
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = "1936"
|
||||
pipeglobal = {
|
||||
\key a \mixolydian
|
||||
}
|
||||
% Music
|
||||
pipesAA = {
|
||||
f8 |
|
||||
\dble e8. a16 \dblc c8. \gre a16 \grg c16 [ \grip e8. ] \dblf f4 |
|
||||
\dble e8. a16 \dble e8. c16 \dblc c16 b8. \taor b8. f16 |
|
||||
\dble e8. a16 \dblc c8. \gre a16 \grg c16 [ \grip e8. ] \dblA A4 |
|
||||
\birl a4 \dblc c8. \gre b16 \dblb b16 \gre a8. \wbirl a8
|
||||
}
|
||||
pipesAB = {
|
||||
f8 |
|
||||
\dble e8. a16 \dblc c8. \gre a16 \grg c16 [ \grip e8. ] \dblf f4 |
|
||||
\dble e8. a16 \dble e8. c16 \dblc c16 b8. \taor b8. \grd c16 |
|
||||
\grip e4 \dblf f8. c16 \grip e4 \dblA A4 |
|
||||
\birl a4 \dblc c8 \gre b8 \dblb b16 \gre a8. \wbirl a8
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
e8 |
|
||||
\dblA A8. e16 \dblf f8. e16 \grg \tuplet 3/2 { e8 f g } \dblA A8. f16 |
|
||||
\dble e8. c16 \dblA A8. c16 \dblc c16 b8. \taor b8. e16 |
|
||||
\dblA A8 e8 \dblf f8 e8 \grg \tuplet 3/2 { e8 f g } \dblA A4 |
|
||||
\grg A8. e16 \dblf f8. e16 \dblA A4 \tuplet 3/2 { e8 f g }
|
||||
}
|
||||
pipesBB = {
|
||||
\dblA A8. f16 \dblg g8. e16 \dblf f8. d16 \dble e8. c16
|
||||
\thrwd d8. A16 \hdblc c8. A16 \hdblc c16 b8. \taor b8. \grd c16
|
||||
\grip e4 \dblf f8. c16 \grip e4 \dblA A4 |
|
||||
\birl a4 \dblc c8 \gre b8 \dblb b16 \gre a8. \wbirl a8
|
||||
}
|
62
strathspeys/lady_madelina_sinclair/pipes.ly
Normal file
62
strathspeys/lady_madelina_sinclair/pipes.ly
Normal 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" {
|
||||
\part \line
|
||||
\break
|
||||
\line
|
||||
\bar "||"
|
||||
\break
|
||||
|
||||
\part \line
|
||||
\break
|
||||
\line
|
||||
\bar "|."
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesAA
|
||||
\pipesAB s8
|
||||
|
||||
\pipesBA
|
||||
\pipesBB s8
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 8
|
||||
\pipesAA
|
||||
\pipesAB
|
||||
|
||||
\pipesBA
|
||||
\pipesBB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue