New Tune: Piper of Drummond

This commit is contained in:
Eric Teunis de Boone 2023-05-03 23:51:33 +02:00
parent 44eef0cc37
commit ba4e95f07a
3 changed files with 110 additions and 0 deletions

View File

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 2/2
}
confTempo = {
\tempo 2 = 70
}
%% Format
part = { \partial 16 \grace{s4.} s16 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 2 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Piper of Drummond"
meter = "Reel"

View File

@ -0,0 +1,30 @@
% 2/2 Piper of Drummond
% Pipes
\version "2.24.1"
composerPipes = ""% Traditional
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesA = {
b16 |
\thrwd d4 \grg f8. e16 \thrwd d4 \gre a8. b16 |
\thrwd d4 \grg f8. e16 \grg g8. b16 \grG b8. c16 |
\thrwd d4 \grg f8. e16 \thrwd d4 \grg a8. b16 |
\thrwd d4 \grg d8. b16 \grg a8. \grd a16 \gre a8.
}
pipesBA = {
b16 |
\thrwd d4 \grg f8. b16 \dblb b4 \grg f8. b16 |
\thrwd d4 \grg f8. e16 \grg f8. b16 \grG b8. c16 |
\thrwd d4 \grg f8. b16 \dblb b4 \grg f8. b16 |
\thrwd d4 \grg d8. b16 \grg a8. \grd a16 \gre a8.
}
pipesBB = {
b16 |
\thrwd d4 \grg f8. b16 \dblb b4 \grg f8. b16 |
\thrwd d4 \grg f8. e16 \grg f8. b16 \grG b8. c16 |
\thrwd d4 \grg f8. e16 \thrwd d4 \grg a8. b16 |
\thrwd d4 \grg d8. b16 \grg a8. \grd a16 \gre a8.
}

View File

@ -0,0 +1,62 @@
\version "2.24.1"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat volta 2 {
\part \line
}
\break
\part
\line
\break
\line
\fine
}%Format
\new Voice = "pipes" {
\pipesA s16
\pipesBA
\pipesBB s16
}%Pipes
>>
}
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 16
\pipesA
\pipesA
\pipesBA
\pipesBB
}
\midi { \confTempo }
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}