diff --git a/airs/massacre_of_glencoe/config.ily b/airs/massacre_of_glencoe/config.ily new file mode 100644 index 0000000..3a76f84 --- /dev/null +++ b/airs/massacre_of_glencoe/config.ily @@ -0,0 +1,18 @@ +\version "2.19.0" +%% Globals +global = { + \key d \major + \time 6/8 + } +confTempo = { + \tempo 4. = 45 + } +%% Format +part = { \partial 8 \grace{s4.} s8 } +measure = { \grace {s1} s2. | } +halfline = { \repeat unfold 4 \measure } +line = { \repeat unfold 2 { \halfline } } + +%% Headers +title = "Massacre of Glencoe" +meter = "Air" diff --git a/airs/massacre_of_glencoe/notes.side.ily b/airs/massacre_of_glencoe/notes.side.ily new file mode 100644 index 0000000..7fdda4d --- /dev/null +++ b/airs/massacre_of_glencoe/notes.side.ily @@ -0,0 +1,37 @@ +% 6/8 Massacre of Glencoe +% Side +\version "2.18.2" +composerSide = "" +arrangerSide = "" +sideglobal = { + \sixteenthBeaming +} +% Music +snareA = \drummode { + d8:32( | + g8.) d16 g8 d4.:32( | + d8.) g16 d8 d4.:32( | + d8.) g16 d8 \flam d4 g8 | + d4.:32( d4) + + d8:32( | + g8.) d16 g8 d4.:32( | + d8.) g16 d8 d4.:32( | + d8.) g16 d8 \flam g8. d16 g8 | + d4.:32( d4) +} + +snareB = \drummode { + d8:32( | + g16.) d32-> g16. g32 d8-> g16. d32-> g16. g32 d8-> | + g16. d32-> g16. g32 d8-> d4.:32( | + d8) g d d4.:32(\f\> | + d8) g\p d g4 + + d8:32( | + g16.)\mf d32-> g16. g32 d8-> g16. d32-> g16. g32 d8-> | + g16. d32-> g16. g32 d8-> d4.:32( | + d8.) g16 d8 g8. d16 g8 | + d4.:32( d4) +} + diff --git a/airs/massacre_of_glencoe/side.ly b/airs/massacre_of_glencoe/side.ly new file mode 100644 index 0000000..d7fade9 --- /dev/null +++ b/airs/massacre_of_glencoe/side.ly @@ -0,0 +1,37 @@ +\version "2.18.2" + +\include "lilydrum.ly" + +\include "./config.ily" +\include "./notes.side.ily" + +\score { + \new PipeBandDrumStaff { + \global + \sideglobal + << + \new NullVoice = "format" { + \repeat volta 2 { + \part \line + } + \break + \repeat volta 2 { + \part \line + } + }%Format + + \new DrumVoice = "side" { + \snareA s8 + + \snareB s8 + } + >> + } + \header { + title = \title + meter = \meter + instrument = \instrumentSide + composer = \composerSide + arranger = \arrangerSide + } +} diff --git a/build b/build index ae24205..ca72501 100755 --- a/build +++ b/build @@ -23,4 +23,4 @@ BAGPIPELY="$LIB/bagpipe.ly/" OPTIONS="-dno-strip-output-dir -dno-point-and-click -dpaper-size=\"a4landscape\"" # Execute -lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview $@ +lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview "$@"