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:
parent
f24876228f
commit
76e6d0ffa1
53 changed files with 2225 additions and 7 deletions
17
6-8_marches/72nd_highlanders/config.ily
Normal file
17
6-8_marches/72nd_highlanders/config.ily
Normal file
|
@ -0,0 +1,17 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
\time 6/8
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4. = 80
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 4 \grace{s1}s4 }
|
||||
measure = { \grace {s1} s2. | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "The 72nd Highlanders"
|
||||
meter = "March"
|
53
6-8_marches/72nd_highlanders/notes.pipes.ily
Normal file
53
6-8_marches/72nd_highlanders/notes.pipes.ily
Normal file
|
@ -0,0 +1,53 @@
|
|||
% 6/8 the 72nd Highlanders
|
||||
% Pipes
|
||||
\version "2.18.2"
|
||||
composerPipes = ""
|
||||
pipeglobal = {
|
||||
\bagpipeKey
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
\grg f8. [ e16 ] |
|
||||
\thrwd d4 \gre a8 \dblb b4 \gre a8 |
|
||||
\thrwd d4 \gre a8 \grg b16 [ \grd a8. \grd b8 ] |
|
||||
\thrwd d4 f8 \grg e8. [ f16 d8 ] |
|
||||
\grg e4 \grip e8 \dble e8. [ \grg f8 e16 ] |
|
||||
|
||||
\thrwd d4 \gre a8 \dblb b4 \gre a8 |
|
||||
\thrwd d4 \gre a8 \grg b16 [ \grd a8. \grd b8 ] |
|
||||
\thrwd d4 f8 \grg e8. [ f16 e8 ] |
|
||||
d16 [ \gre G8. d8 ] \dbld d8
|
||||
}
|
||||
|
||||
pipesBA = {
|
||||
d8 [ \dblg g8 ] |
|
||||
A4 \grip A8 \grg A8. [ f16 d8 ] |
|
||||
\dblg g8. [ A16 g8 ] \hdblf f8. [ e16 d8 ] |
|
||||
\dblg g4. \grA f16 [ A8. f8 ] |
|
||||
\grg e4 \grip e8 \dble e4 \dblg g8 |
|
||||
}
|
||||
pipesBBA = {
|
||||
A4 \grip A8 \grg A8. [ f16 d8 ] |
|
||||
\dblg g8. [ A16 g8 ] \hdblf f8. [ e16 d8 ] |
|
||||
\grg e4 \grip e8 \grA f16 [ A8. f8 ] |
|
||||
d16 [ \gre G8. d8 ] \dbld d8
|
||||
}
|
||||
pipesBBB = {
|
||||
A8. [ f16 \grg d8 ] \grg A8. [ f16 \grg d8 ] |
|
||||
\dblg g8. [ A16 g8 ] \hdblf f8. [ e16 d8 ] |
|
||||
\grg e4 \grip e8 \grA f16 [ A8. f8 ] |
|
||||
d16 [ \gre G8. d8 ] \dbld d8
|
||||
}
|
||||
|
||||
pipesC = {
|
||||
\grg f8. [ e16 ] |
|
||||
\dbld d4 \grb a8 \grg a4 \taor a8 |
|
||||
\dbld d4 \grb a8 \grg a4 \taor a8 |
|
||||
\thrwd d8. [ \grg c16 d8 ] \grg e4 \grip e8 |
|
||||
\grg f16 [ A8. f8 ] \dble e8. [ \grg f8 e16 ] |
|
||||
|
||||
\dbld d4 \grb a8 \grg a4 \taor a8 |
|
||||
\dbld d4 \grb a8 \grg a4 \taor a8 |
|
||||
\thrwd d8. [ \grg c16 d8 ] \grg e4 \grip e8 |
|
||||
\grg f4 \whslurd d8 \grg d8
|
||||
}
|
71
6-8_marches/72nd_highlanders/pipes.ly
Normal file
71
6-8_marches/72nd_highlanders/pipes.ly
Normal file
|
@ -0,0 +1,71 @@
|
|||
\version "2.18.2"
|
||||
|
||||
\include "config.ily"
|
||||
\include "notes.pipes.ily"
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\line
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
}\alternative{
|
||||
\halfline
|
||||
\halfline
|
||||
}
|
||||
\bar "|."
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\line
|
||||
}
|
||||
}%Format
|
||||
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s4
|
||||
|
||||
\pipesBA
|
||||
\pipesBBA s4
|
||||
\pipesBBB s4
|
||||
|
||||
\pipesC s4
|
||||
}
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
|
||||
\pipesA
|
||||
\pipesA
|
||||
|
||||
\pipesBA \pipesBBA
|
||||
\pipesBA \pipesBBB
|
||||
|
||||
\pipesC
|
||||
\pipesC
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue