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 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 = "Zie ginds komt de Stoomboot"
meter = "Sinterklaaslied"

View file

@ -0,0 +1,37 @@
% 3/4 Zie ginds komt de Stoomboot
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = "Seaforth Highlanders of Holland"
pipeglobal = {
\bagpipeKey
}
% Music
pipesAA = {
a4 |
\thrwd d4 \grc d f |
\dble e4 \gra e g |
c4 \grG c e |
\thrwd d2
}
pipesAB = {
a4 |
\thrwd d4 \grc d f |
\grg e8 \gra e \grg e4 g |
\dblc c4 \grG c e |
\thrwd d2
}
pipesBA = {
A4 |
\dble e4 \gra e A |
\dblf f4 \gre f A |
g4 \grg g f |
\dble e2
}
pipesBB = {
a4 |
\thrwd d4 \grc d8[ e] \grg f[ g] |
\hdblA A4 \dblf f d |
\hdblg g4 \hdble e c |
\thrwd d2
}

View file

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