diff --git a/6-8_marches/leaving_port_ascaig/config.ily b/6-8_marches/leaving_port_ascaig/config.ily new file mode 100644 index 0000000..1a6837f --- /dev/null +++ b/6-8_marches/leaving_port_ascaig/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key a \mixolydian + \time 6/8 + } +confTempo = { + \tempo 4. = 90 + } +%% Format +part = { \partial 8 \grace{s4.} s8 } +measure = { \grace {s1} s2. | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "Leaving Port Askaig" +meter = "March" diff --git a/6-8_marches/leaving_port_ascaig/notes.pipes.ily b/6-8_marches/leaving_port_ascaig/notes.pipes.ily new file mode 100644 index 0000000..b947a29 --- /dev/null +++ b/6-8_marches/leaving_port_ascaig/notes.pipes.ily @@ -0,0 +1,79 @@ +% 6/8 Leaving Port Askaig +% Pipes +\version "2.18.2" +composerPipes = "PM W. Ross" +arrangerPipes = "" +pipeglobal = { + \key a \mixolydian +} +% Music +pipesA = { + e8 | + \grg a8. [ b16 \grip c8 ] \grg c16 e8. \grg c8 | + \dblb b4. \grG a4 \dble e8 | + \grg a8. [ b16 \grip c8 ] \grg c16 e8. A8 | + \hdblf f4. \dble e4 + + \dblg g8 | + A4 \grip A8 \hdblf f4 A8 | + \hdble e8. c16 \grd a8 \dblb b4 \grd c8 | + \grg a8. [ b16 \grip c8 ] \grg e8. f16 \grg c8 | + \dblb b4. \grG a4 +} + +pipesBA = { + \dblg g8 | + \dblA A4. \hdble e4. | + \grg f16 A8. f8 \dble e4. + \grg a8. [ b16 \grip c8 ] \grg c16 e8. A8 + \hdblf f4. \dble e4 +} + +pipesBBA = { + \dblg g8 | + \dblA A4. \hdble e4. | + \grg f16 A8. f8 \dble e4. | + \grg a8. [ b16 \grip c8 ] \grg e8. f16 \grg c8 | + \dblb b4. \grG a4 +} +pipesBBB = { + \dblA A8 | + a8. \grd c16 e8 \grg e8. f16 g8 | + A8. g16 f8 \dble e4. | + \grg a8. [ b16 \grip c8 ] \grg e8. f16 \grg c8 | + \dblb b4. \grG a4 +} + +pipesC = { + b8 | + \grg c16 \grd a8. \grd c8 \grg c16 e8. \grg c8 | + \dblb b4. \grG a4 b8 | + \grg c16 \grd a8. \grd c8 \grg c16 e8. A8 | + \hdblf f4. \dble e4 + + \dblg g8 | + A4 \grip A8 \hdblf f4 A8 | + \hdble e8. c16 \grd a8 \dblb b4 \grd c8 | + \grg a8. [ b16 \grip c8 ] \grg e8. f16 \grg c8 | + \dblb b4. \grG a4 +} + +pipesDA = { + \dblg g8 | + A4 \grip A8 \hdble e4 A8 | + \hdblf f8. e16 \grg c8 \dble e4 \dblg g8 | + A4 \grip A8 e8. \grg f16 A8 | + \hdblf f4. \dble e4 +} +pipesDBA = { + \dblg g8 | + A4 \grip A8 \hdble e4 A8 | + \hdblf f8. e16 \grg c8 \dble e4 \dblg g8 | + a8. [ b16 \grip c8 ] \grg e8. f16 \grg c8 | + \dblb b4. \grG a4 + + +} +pipesDBB = { + \pipesBBB +} diff --git a/6-8_marches/leaving_port_ascaig/pipes.ly b/6-8_marches/leaving_port_ascaig/pipes.ly new file mode 100644 index 0000000..ca36f08 --- /dev/null +++ b/6-8_marches/leaving_port_ascaig/pipes.ly @@ -0,0 +1,95 @@ +\version "2.18.2" + +\include "bagpipe.ly" + +\include "./config.ily" +\include "./notes.pipes.ily" + +\score { + \new Staff { + \global + \pipeglobal + + \repeat volta 2 { + \partial 8 + \pipesA + } + \break + + \repeat volta 2 { + \partial 8 + \pipesBA + } \alternative { + \pipesBBA + \pipesBBB + } + \bar "||" + \break + + \repeat volta 2 { + \partial 8 + \pipesC + } + \break + + \repeat volta 2 { + \partial 8 + \pipesDA + } \alternative { + \pipesDBA + \pipesDBB } + \bar "|." + } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +} +\score { + \new Staff { \global \pipeglobal + \set Staff.midiInstrument = #"bagpipe" + %%Tune + \unfoldRepeats { + \repeat volta 2 { + \partial 8 + \pipesA + } + \break + + \repeat volta 2 { + \partial 8 + \pipesBA + } \alternative { + \pipesBBA + \pipesBBB + } + \bar "||" + \break + + \repeat volta 2 { + \partial 8 + \pipesC + } + \break + + \repeat volta 2 { + \partial 8 + \pipesDA + } \alternative { + \pipesDBA + \pipesDBB } + \bar "|." + } + } + \midi { \confTempo } + \header { + title = \title + meter = \meter + instrument = \instrumentPipes + composer = \composerPipes + arranger = \arrangerPipes + } +}