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 2/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 8 \grace{s4.} s8 }
measure = { \grace {s4} s2 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Sinterklaasje, bonne bonne bonne"
meter = "Sinterklaaslied"

View file

@ -0,0 +1,26 @@
% 2/4 Sinterklaasje bonne bonne bonne
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "Seaforth Highlanders of Holland"
pipeglobal = {
\bagpipeKey
}
% Music
pipesAA = \repeat unfold 2 {
\grg e4 \gra e4 |
\grg f4 \gre f4 |
\grg e8[ f8] \grg e8[ d8] |
\dblc c4 \grG a4 |
}
pipesAB = {
\grg d4 \grd d4 |
\dbld d4 b4 |
\dbld d2 |
\grG d2 |
\grg f4 \grd e4 |
\thrwd d4 c4 |
\dble b2 |
\grG a2 |
}

View file

@ -0,0 +1,47 @@
\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" {
\pipesAA
\pipesAB
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesAA
\pipesAB
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}