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

Added Sinterklaas songs

This commit is contained in:
Eric Teunis de Boone 2016-12-02 08:38:12 +01:00
parent 2c68877d37
commit 841101f3b8
37 changed files with 1127 additions and 0 deletions

View file

@ -0,0 +1,17 @@
\version "2.19.0"
%% Globals
global = {
\time 4/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 4 \grace{s4.} s4 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "De Zak van Sinterklaas"
meter = "Sinterklaaslied"

View file

@ -0,0 +1,31 @@
% 4/4 De Zak van Sinterklaas
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "Seaforth Highlanders of Holland"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
e4 |
\grg e8[ \gra e] f8[ g] \hdblA A4 c8[ d] |
\hdblf f4 e8[ d] \dblc c4. e8 |
\gra e8[ \grg e] f8[ g] A8[ c] d8[ e] |
\grg f8[ e] d8[ b] \grG a4.
}
pipesB = {
c8 |
\grg b8 \grd b4 \grg e8 c8 \grd c4 e8 |
\grg d8[ \grc d] e8[ b] \dblc c4. \grg c8 |
\grg b8 \grd b4 \grg e8 c8 \grd c4 A8 |
\grf g8[ f] \grg e8[ d] \dble e4.
}
pipesC = {
\gra e8 |
\grg e8[ \gra e] f8[ g] \hdblA A4 c8[ d] |
\hdblf f4 e8[ d] \dblc c4. e8 |
\gra e8[ \grg e] f8[ g] A8[ c] d8[ e] |
\grg f8[ e] d8[ b] \grG a2
}

View file

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