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

A lot of new Tunes

Still work to do on the Anthems and Jim Thomson of flagstaff
This commit is contained in:
Eric Teunis de Boone 2016-11-07 23:33:04 +01:00
parent f24876228f
commit 76e6d0ffa1
53 changed files with 2225 additions and 7 deletions

16
other/o_canada/config.ily Normal file
View file

@ -0,0 +1,16 @@
\version "2.19.0"
%% Globals
global = {
\time 2/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
measure = { \grace {s1} s2 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "O Canada"
meter = "Canadian National Anthem"

View file

@ -0,0 +1,50 @@
% 2/4 O Canada
% Pipes
\version "2.18.2"
composerPipes = "Calixa Lavallée"
pipeglobal = {
\bagpipeKey
}
% Music
pipesA = {
\grg c4 \grg e8. [ \gra e16 ] |
\grg a4. b8 |
\grg c8 [ \thrwd d8 ] \grg e8 [ f8 ] |
\grg b4 b4 |
\grg c4 \grg d8. [ d16 ] |
\grg e4. f8 |
g8 [ \grf g8 ] f8 [ \gre f8 ] |
\grg e4. \grg b16 [ c16 ] |
\thrwd d8. [ c16 ] \grg b8 [ c16 d16 ] |
\grg e8. [ d16 ] c8 [ d16 e16 ] |
\grg f8 [ e8 ] \grg d8 [ c8 ] |
\grg b4. \grg b16 [ c16 ] |
\thrwd d8. [ c16 ] \grg b8 [ c16 d16 ] |
\grg e8. [ d16 ] c8 [ \grip c8 ] |
\grg b8 [ e8 ] \grg e16 [ d16 \grg c16 d16 ] |
\grg e4 \gra e4 |
\grg c4 \grg e8. [ \gra e16 ] |
\grg a4 \wbirl a4 |
\thrwd d4 \grg f8. [ \gre f16 ] |
\grg b4 \grG b4 |
\grg e4 A8. [ \grg A16 ] |
\hdblf f8 [ d8 ] \dblc c8 [ \gre b8 ] |
\grg a4 b4 |
\grg c4 \gra c4 |
\grg e4 A8 [ \grg A8 ] |
\hdblf f8 [ d8 ] \dblc c8 [ \gre b8 ] |
\grg e4 \gra e4 |
\grg a2
}

45
other/o_canada/pipes.ly Normal file
View file

@ -0,0 +1,45 @@
\version "2.18.2"
\include "config.ily"
\include "notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat unfold 7 {
\repeat unfold 4 \measure
\break
}
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\pipesA
}
\midi { \confTempo }
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}