mirror of
https://github.com/kastdeur/pipeband-music.git
synced 2024-12-22 08:13:31 +01:00
New [tune]: Dornoch Links
This commit is contained in:
parent
c31f2e05e6
commit
e42f33373f
3 changed files with 133 additions and 0 deletions
19
2-4_marches/dornoch_links/config.ily
Normal file
19
2-4_marches/dornoch_links/config.ily
Normal file
|
@ -0,0 +1,19 @@
|
|||
\version "2.19.0"
|
||||
%% Globals
|
||||
global = {
|
||||
%\key a \major
|
||||
\key a \mixolydian
|
||||
\time 2/4
|
||||
}
|
||||
confTempo = {
|
||||
\tempo 4 = 90
|
||||
}
|
||||
%% Format
|
||||
part = { \partial 8 \grace{s4.} s8 }
|
||||
measure = { \grace {s1} s2 | }
|
||||
halfline = { \repeat unfold 4 \measure }
|
||||
line = { \repeat unfold 2 { \halfline } }
|
||||
|
||||
%% Headers
|
||||
title = "The Dornoch Links"
|
||||
meter = "March"
|
41
2-4_marches/dornoch_links/notes.pipes.ily
Normal file
41
2-4_marches/dornoch_links/notes.pipes.ily
Normal file
|
@ -0,0 +1,41 @@
|
|||
% 2/4 The Dornoch Links
|
||||
% Pipes
|
||||
\version "2.22.2"
|
||||
composerPipes = ""
|
||||
arrangerPipes = "1936"
|
||||
pipeglobal = {
|
||||
%\key a \major
|
||||
\key a \mixolydian
|
||||
}
|
||||
% Music
|
||||
pipesA = {
|
||||
A16. f32 |
|
||||
\dble e8.[ a16] \dblc c8[ \gre b16 \grd c16] |
|
||||
\dble e8[ a8] \wbirl a8[ A16. f32] |
|
||||
\dble e8.[ a16] \dblc c8[ \gre b16 \grd c16] |
|
||||
\dblf f8[ b8] \grip b8[
|
||||
|
||||
\grg c16 d16] |
|
||||
\grg e16.[ f32 \grg e16. d32] \dblc c8[ \grg b16 \grd a16] |
|
||||
\dblc c8[ e8] \dblA A8.[ c16] |
|
||||
\thrwd d8[ \dblg g8] \hslurb b8[ \dble e16 d16] |
|
||||
\dblc c8[ \gre a8] \grip a8
|
||||
}
|
||||
pipesB = {
|
||||
\hdblg g8 |
|
||||
\hdblA A4 \hdble e8[ \grg f16 g] |
|
||||
\hdblA A8[ e16 d] \dblc c8[ \grg b16 \grd a16] |
|
||||
\hdblA A4 e16.[ f32 \grg e16. c32] |
|
||||
\thrwd d8[ \grg b8] \taor b8[
|
||||
|
||||
\hdblg g8] |
|
||||
\hdblA A4 \hdble e8[ \grg f16 g] |
|
||||
\tag #'voltaI {
|
||||
\hdblA A8[ e16 d] \dblc c8[ \grg b16 \grd a16]
|
||||
} |
|
||||
\tag #'voltaII {
|
||||
A16.[ e32 \grg f16. d32] \dblc c8[ \grg b16 \grd a16]
|
||||
} |
|
||||
\thrwd d8[ \dblg g8] \hslurb b8[ \dble e16 d16] |
|
||||
\dblc c8[ \gre a8] \grip a8
|
||||
}
|
73
2-4_marches/dornoch_links/pipes.ly
Normal file
73
2-4_marches/dornoch_links/pipes.ly
Normal file
|
@ -0,0 +1,73 @@
|
|||
\version "2.22.2"
|
||||
|
||||
\include "bagpipe.ly"
|
||||
|
||||
\include "./config.ily"
|
||||
\include "./notes.pipes.ily"
|
||||
|
||||
pbreak = { \break }
|
||||
|
||||
\score {
|
||||
\new Staff {
|
||||
\global
|
||||
\pipeglobal
|
||||
<<
|
||||
\new NullVoice = "format" {
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
\pbreak
|
||||
\halfline
|
||||
}
|
||||
\break
|
||||
\repeat volta 2 {
|
||||
\part
|
||||
\halfline
|
||||
\pbreak
|
||||
|
||||
\measure
|
||||
\set Score.repeatCommands = #'((volta "1"))
|
||||
\measure \bar "||"
|
||||
\set Score.repeatCommands = #'((volta "2"))
|
||||
\measure
|
||||
\set Score.repeatCommands = #'((volta #f))
|
||||
\measure
|
||||
\measure
|
||||
}
|
||||
}%Format
|
||||
\new Voice = "pipes" {
|
||||
\pipesA s8
|
||||
|
||||
\pipesB s8
|
||||
}%Pipes
|
||||
>>
|
||||
}
|
||||
\header {
|
||||
title = \title
|
||||
subtitle = \subtitle
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
||||
\score {
|
||||
\new Staff { \global \pipeglobal
|
||||
\set Staff.midiInstrument = #"bagpipe"
|
||||
%%Tune
|
||||
\partial 8
|
||||
\repeat unfold 2 { \pipesA }
|
||||
|
||||
\keepWithTag #'voltaI \pipesB
|
||||
\keepWithTag #'voltaII \pipesB
|
||||
}
|
||||
\midi { \confTempo }
|
||||
\header {
|
||||
title = \title
|
||||
subtitle = \subtitle
|
||||
meter = \meter
|
||||
instrument = \instrumentPipes
|
||||
composer = \composerPipes
|
||||
arranger = \arrangerPipes
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue