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

View file

@ -0,0 +1,38 @@
% 6/8 O, kom er eens kijken
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "Seaforth Highlanders of Holland"
pipeglobal = {
\bagpipeKey
}
% Music
pipesAA = {
\grg c4. \thrwd d8[ c d] |
\dble e4. \hdblA A4. |
a4 \taor a8 \grg b8[ a b] |
\grg c8[ d c] \dblb b4. |
\grg c4. \thrwd d8[ c d] |
\dble e4. \hdblA A4. |
a4 \taor a8 \grg c4 b8 |
}
pipesA = {
\pipesAA
\grG a4.~ a4 e8 |
}
pipesB = {
\gra e4 d8 \grg b8[ c d] |
\dble e4 c8 \grg a4 e8 |
\gra e4 d8 \grg b8[ c d] |
\dble e4 c8 \grg a4 e8 |
\grg f4 \gre f8 A8[ g f] |
\dble e4 \gra e8 A4 e8 |
\gra e8[ f e] \grg e8[ d c] |
\dblc c4. \dblc c4. |
}
pipesC = {
\pipesAA
\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" {
\line \bar "||" \break
\line \bar "||" \break
\line \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
\pipesA
\pipesB
\pipesC
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}