mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 08:13:31 +01:00
Build script working with spaces again,
New Side Score: Massacre of Glencoe
This commit is contained in:
parent
a69bc52462
commit
a1a6b13fab
4 changed files with 93 additions and 1 deletions
18
airs/massacre_of_glencoe/config.ily
Normal file
18
airs/massacre_of_glencoe/config.ily
Normal file
|
@ -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"
|
37
airs/massacre_of_glencoe/notes.side.ily
Normal file
37
airs/massacre_of_glencoe/notes.side.ily
Normal file
|
@ -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)
|
||||||
|
}
|
||||||
|
|
37
airs/massacre_of_glencoe/side.ly
Normal file
37
airs/massacre_of_glencoe/side.ly
Normal file
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
2
build
2
build
|
@ -23,4 +23,4 @@ BAGPIPELY="$LIB/bagpipe.ly/"
|
||||||
OPTIONS="-dno-strip-output-dir -dno-point-and-click -dpaper-size=\"a4landscape\""
|
OPTIONS="-dno-strip-output-dir -dno-point-and-click -dpaper-size=\"a4landscape\""
|
||||||
|
|
||||||
# Execute
|
# Execute
|
||||||
lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview $@
|
lilypond -dinclude-settings=$STYLESHEET -I $LILYDRUM -I $BAGPIPELY $OPTIONS -dpreview "$@"
|
||||||
|
|
Loading…
Reference in a new issue