1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 04:19:22 +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 3/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 4 \grace{s4.} s4 }
measure = { \grace {s1} s2. | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Zachtjes gaan de Paardenvoetjes"
meter = "Sinterklaaslied"

View file

@ -0,0 +1,30 @@
% 3/4 Zachtjes gaan de paardenvoetjes
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "Seaforth Highlanders of Holland"
pipeglobal = {
\bagpipeKey
}
% Music
pipesAAA = {
\grg a8 \grd a |
\thrwd d4 \dbld d4 \grg d8 e |
\grg d8 c \dblc c2 |
\grg e8[ a] \grg e[ a] \grg e[ f] |
\thrwd d2
}
pipesABA = {
\grg d8 c |
\dblb b4. c8 d[ b] |
\grG a2 \grg a8 \grG a |
G4. a8 \grg b[ G] |
a2
}
pipesABB = {
\grg a8 \grd a |
b4 c4 d8 e |
\dblf f2 d8 e |
\dble e4 b4 \grc c8 e8 |
\thrwd d2
}

View file

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