From ee63cd518ccd6c7c440a6b19d86022fbd343a0c3 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Tue, 18 Jun 2019 17:37:41 +0200 Subject: [PATCH] New Tune: Wi' A Hundred Pipers --- 6-8_marches/a_hundred_pipers/config.ily | 18 +++++++ 6-8_marches/a_hundred_pipers/notes.pipes.ily | 34 +++++++++++++ 6-8_marches/a_hundred_pipers/pipes.ly | 52 ++++++++++++++++++++ 3 files changed, 104 insertions(+) create mode 100644 6-8_marches/a_hundred_pipers/config.ily create mode 100644 6-8_marches/a_hundred_pipers/notes.pipes.ily create mode 100644 6-8_marches/a_hundred_pipers/pipes.ly diff --git a/6-8_marches/a_hundred_pipers/config.ily b/6-8_marches/a_hundred_pipers/config.ily new file mode 100644 index 0000000..308b54e --- /dev/null +++ b/6-8_marches/a_hundred_pipers/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key a \mixolydian + \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 = "Wi' A Hundred Pipers" +meter = "March" diff --git a/6-8_marches/a_hundred_pipers/notes.pipes.ily b/6-8_marches/a_hundred_pipers/notes.pipes.ily new file mode 100644 index 0000000..9630742 --- /dev/null +++ b/6-8_marches/a_hundred_pipers/notes.pipes.ily @@ -0,0 +1,34 @@ +% 6/8 Wi' A Hundred Pipers +% Pipes +\version "2.18.2" +composerPipes = "" +arrangerPipes = "" +pipeglobal = { + \key a \mixolydian +} +% Music +pipesA = { + d32 e16. | + \dblf f4 a8 \grg a8. b16 \grG a8 | + \dblb b4 d8 \dbld d4 \hdblg g8 | + \dblA A4 f8 \dblf f8. e16 d8 | + \dblf f4 e8 \grg e8. d16 e8 | + + \dblf f4 a8 \grg a8. b16 \grG a8 | + \dblb b4 d8 \dbld d4 \hdblg g8 | + \dblA A4 f8 \grg e8. d16 e8 | + \grg d4. \grG d4 +} + +pipesB = { + c32 d16. | + \grg e4 \grip e8 \grg e8. c16 e8 | + \dblf f4 A8 \grg A4 f8 | + \dble e4 c8 \dblc c8. b16 \grG a8 | + \dblc c4 \gre b8 \grG b8. c16 d8 | + + \grg e4 \grip e8 \grg e8. c16 e8 | + A4 \grip A8 \grg A8. g16 f8 | + \dble e4 c8 \dblb b8. a16 b8 | + \grg a4. \wbirl a4 +} diff --git a/6-8_marches/a_hundred_pipers/pipes.ly b/6-8_marches/a_hundred_pipers/pipes.ly new file mode 100644 index 0000000..a581b6b --- /dev/null +++ b/6-8_marches/a_hundred_pipers/pipes.ly @@ -0,0 +1,52 @@ +\version "2.18.2" + +\include "bagpipe.ly" + +\include "./config.ily" +\include "./notes.pipes.ily" + +\score { + \new Staff { + \global + \pipeglobal + << + \new NullVoice = "format" { + } + \new Voice = "pipes" { + \repeat volta 2 { + \partial 8 \pipesA + } + \break + \repeat volta 2 { + \partial8 \pipesB + } + } + >> + } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \partial 8 + \pipesA + \pipesA + \pipesB + \pipesB + } + \midi { \confTempo } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +}