1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +02:00

New Tunes: Airs:

Going Home
The Day Thou Gavest
This commit is contained in:
Eric Teunis de Boone 2019-03-04 03:25:33 +01:00
parent 1973fa2c44
commit d2479024a6
9 changed files with 431 additions and 0 deletions

View file

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 3/4
}
confTempo = {
\tempo 4 = 60
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "The Day Thou Gavest"
meter = "Hymn"

View file

@ -0,0 +1,32 @@
% 3/4 The Day Thou Gavest
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesA = {
\grg f4 g4 \grA f4 |
\dblA A4 f4 e4 |
\thrwd d4 e4 b4 |
\dbld d4 c4 b4 |
\grg a2 \wbirl a4 |
\thrwd d4 e4 f4 |
\dble e2 d4 |
\dblc c2 a4
}
pipesB = {
\grg f4 g4 \grA f4 |
\dblA A4 f4 e4 |
\thrwd d4 e4 b4 |
\dbld d4 c4 b4 |
\grg a4 b4 \grd c4 |
\thrwd d4 f4 e4 |
\grg b4 d4 \grg c4 |
\thrwd d2
}

View file

@ -0,0 +1,50 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\line
\break
\line \bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
\pipesB s4
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA
\pipesB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}