mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2025-05-15 20:39:20 +02:00
A lot of new Tunes
Still work to do on the Anthems and Jim Thomson of flagstaff
This commit is contained in:
parent
f24876228f
commit
76e6d0ffa1
53 changed files with 2225 additions and 7 deletions
16
9-8_marches/going_to_vancouver_hills/config.ily
Normal file
16
9-8_marches/going_to_vancouver_hills/config.ily
Normal file
|
@ -0,0 +1,16 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 9/8
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 2. = 80
|
||||
}
|
||||
%% Format
|
||||
measure = { \grace {s1} s4.*3 | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "Going To Vancouver Hills"
|
||||
meter = "March"
|
55
9-8_marches/going_to_vancouver_hills/notes.pipes.ily
Normal file
55
9-8_marches/going_to_vancouver_hills/notes.pipes.ily
Normal file
|
@ -0,0 +1,55 @@
|
|||
% 9/8 Going to Vancouver Hills
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = "PM F.J. de Boone"
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\grg a4 \grd c8 \grip e4. \dble e4. |
|
||||
\dblA A4 e8 \dblf f4. \dble e4. |
|
||||
\grg f8 [ e8 d8 ] \dblb b4. \grg c4 b8 |
|
||||
c4 a8 \dblb b4. b4. |
|
||||
|
||||
\grg a4 \grd c8 \grip e4. \dble e4. |
|
||||
\dblA A4 e8 \dblf f4. \dble e4. |
|
||||
\grg f4 g8 \dblA A4. \grg b4 c8 |
|
||||
e4 c8 \wbirl a4. a4.
|
||||
}
|
||||
|
||||
pipesB = {
|
||||
\grg e4 f8 \dble e4. \dblc c4. |
|
||||
\grg f4 e8 \dblb b4. b4. |
|
||||
\grg e8 [ d8 b8 ] \grg a4. \grg f4 e8 |
|
||||
c4 a8 \dblb b4. b4. |
|
||||
|
||||
\grg e4 f8 \dble e4. \dblc c4. |
|
||||
\dblA A4 e8 \dblf f4. \wbirl a4. |
|
||||
\grg e4 c8 \grg a4. \grd a4 b8 |
|
||||
c4 b8 \wbirl a4. a4.
|
||||
}
|
||||
|
||||
pipesC = {
|
||||
\grg c4 d8 \dble e4. \dblc c4. |
|
||||
\dble e4 \grg e8 \dblf f4. \grg d4. |
|
||||
\grg d8 [ e8 f8 ] \dble e4. \grg c4 e8 |
|
||||
c4 e8 \dblb b4. b4. |
|
||||
|
||||
\grg c4 d8 \dble e4. \dblc c4. |
|
||||
\dble e4 \grg e8 \dblf f4. \grg d4. |
|
||||
\grg d4 f8 \dble e4. \grg b4 c16 [ d16 ] |
|
||||
c4 b8 \wbirl a4. a4.
|
||||
}
|
||||
|
||||
pipesD = {
|
||||
\grg b4 c8 \thrwd d4. \dbld d4. |
|
||||
\dblc c4 b8 \grg a4. \dblA A4. |
|
||||
\dble e8 [ f8 g8 ] \dblf f4. \grg e4 f8 |
|
||||
g4 A8 \dblA A4. A4. |
|
||||
|
||||
a4 \grd c8 \grip e4. \dble e4. |
|
||||
\dblc c4 b8 \grg a4. \dblA A4. |
|
||||
\dble e4 f8 \dblf f4. \grg e4 c8 |
|
||||
b4 c8 \wbirl a4. a4.
|
||||
}
|
62
9-8_marches/going_to_vancouver_hills/pipes.ly
Normal file
62
9-8_marches/going_to_vancouver_hills/pipes.ly
Normal file
|
@ -0,0 +1,62 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat unfold 4 {
|
||||
\repeat volta 2 {
|
||||
\line
|
||||
}
|
||||
\break
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
|
||||
\pipesC
|
||||
|
||||
\pipesD
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
|
||||
\pipesA
|
||||
\pipesA
|
||||
|
||||
\pipesB
|
||||
\pipesB
|
||||
|
||||
\pipesC
|
||||
\pipesC
|
||||
|
||||
\pipesD
|
||||
\pipesD
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue