mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 16:23:31 +01:00
Added Rakes of Mallow (side)
This commit is contained in:
parent
972f877705
commit
0533d5257e
3 changed files with 76 additions and 0 deletions
18
hornpipes/rakes_of_mallow/config.ily
Normal file
18
hornpipes/rakes_of_mallow/config.ily
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
\version "2.19.0"
|
||||||
|
%% Globals
|
||||||
|
global = {
|
||||||
|
\key d \major
|
||||||
|
\time 2/4
|
||||||
|
}
|
||||||
|
confTempo = {
|
||||||
|
\tempo 4 = 80
|
||||||
|
}
|
||||||
|
%% Format
|
||||||
|
part = { \partial 8 \grace{s4.} s8 }
|
||||||
|
measure = { \grace {s1} s1 | }
|
||||||
|
halfline = { \repeat unfold 2 \measure }
|
||||||
|
line = { \repeat unfold 2 { \halfline } }
|
||||||
|
|
||||||
|
%% Headers
|
||||||
|
title = "The Rakes of Mallow"
|
||||||
|
meter = "Hornpipe/Reel"
|
28
hornpipes/rakes_of_mallow/notes.side.ily
Normal file
28
hornpipes/rakes_of_mallow/notes.side.ily
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
% 2/4 Rakes of Mallow
|
||||||
|
% Side
|
||||||
|
\version "2.18.2"
|
||||||
|
composerSide = "Ahoy 2017"
|
||||||
|
arrangerSide = ""
|
||||||
|
sideglobal = {
|
||||||
|
\sixteenthBeaming
|
||||||
|
}
|
||||||
|
% Music
|
||||||
|
snareA = \drummode {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
d16 g |
|
||||||
|
\flamdr d8. g16 \flam d8 \flam g |
|
||||||
|
\flam d16 \fr g d g \flam d8 d16 g |
|
||||||
|
\flamdr d8 \flam g \flam d16 g d g |
|
||||||
|
\flam d8 d8:32( g8) \fr
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
snareB = \drummode {
|
||||||
|
\repeat unfold 2 {
|
||||||
|
d16 g |
|
||||||
|
\flamdr d8. g16 d8:32(-> g:32)(-> |
|
||||||
|
d16)->\fr g d g \flam d8 d16 g |
|
||||||
|
\flamdr d8 \flam g8 \flam d16 g d g |
|
||||||
|
\flam d8 d8:32( g8) \fr
|
||||||
|
}
|
||||||
|
}
|
30
hornpipes/rakes_of_mallow/side.ly
Normal file
30
hornpipes/rakes_of_mallow/side.ly
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
\version "2.18.2"
|
||||||
|
|
||||||
|
\include "lilydrum.ly"
|
||||||
|
|
||||||
|
\include "./config.ily"
|
||||||
|
\include "./notes.side.ily"
|
||||||
|
|
||||||
|
pbreak = {}
|
||||||
|
\score {
|
||||||
|
\new PipeBandDrumStaff {
|
||||||
|
\global
|
||||||
|
\sideglobal
|
||||||
|
\new DrumVoice = "side" {
|
||||||
|
\repeat volta 2 {
|
||||||
|
\partial 8 \snareA s8
|
||||||
|
}
|
||||||
|
\break
|
||||||
|
\repeat volta 2 {
|
||||||
|
\partial 8 \snareB s8
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
\header {
|
||||||
|
title = \title
|
||||||
|
meter = \meter
|
||||||
|
instrument = \instrumentSide
|
||||||
|
composer = \composerSide
|
||||||
|
arranger = \arrangerSide
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue