New Tune: Orange and Blue

This commit is contained in:
Eric Teunis de Boone 2021-10-18 21:55:16 +02:00
parent 04db1b6995
commit e101250f2e
3 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,18 @@
\version "2.19.0"
%% Globals
global = {
\key d \major
\time 4/4
}
confTempo = {
\tempo 4 = 80
}
%% Format
part = { \partial 16 \grace{s4.} s16 }
measure = { \grace {s1} s1 | }
halfline = { \repeat unfold 4 \measure }
line = { \repeat unfold 2 { \halfline } }
%% Headers
title = "Orange and Blue"
meter = "Strathspey"

View File

@ -0,0 +1,43 @@
% 4/4 Orange and Blue
% Pipes
\version "2.18.2"
composerPipes = ""
arrangerPipes = ""
pipeglobal = {
\key d \major
}
% Music
pipesA = {
A16 |
f16 d8. \slurd d4 \grg a8. d16 \slurd d4 |
\grg f8. g16 \dblA A8. f16 \thrwd d4
\slurd d4 |
\grg c16 e8. \gra e4 \grg c16 \grd a8. \dble e8. c16 |
\grg c4 \grip e8. c16 \grg a4 \wbirl a8.
A16 |
f16 d8. \slurd d4 \grg a8. d16 \slurd d4 |
\grg f8. g16 \dblA A8. f16 \thrwd d4
\grg f8. g16 |
\dblA A8. f16 \dblg g8. e16 \grg f8. d16 \dble e8. d16 |
\grg c16 \grd a8. \grg b8. c16 \thrwd d4 \slurd d4 |
}
pipesB = {
\grg f16 A8. \grg A4 f16 A8. \grg A4 |
\hdblf f8. g16 \dblA A8. f16 \thrwd d4
\slurd d4 |
\grg c16 e8. \gra e4 \grg c16 \grd a8. \dble e8. c16 |
\grg c4 \grip e8. c16 \grg a4 \wbirl a8.
g16 |
\grg f16 A8. \grg A4 f16 A8. \grg A4 |
\hdblf f8. g16 \dblA A8. f16 \thrwd d4
\grg f8. g16 |
\dblA A8. f16 \dblg g8. e16 \grg f8. d16 \dble e8. d16 |
\grg c16 \grd a8. \grg b8. c16 \thrwd d4 \slurd d4 |
}

View File

@ -0,0 +1,53 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\part |
\line
\bar "||" \break
\line
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
\pipesB
}
>>
}
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}
\score {
\new Staff { \global \pipeglobal
\set Staff.midiInstrument = #"bagpipe"
%%Tune
\partial 16
\pipesA
\pipesB
}
\midi { \confTempo }
\header {
title = \title
subtitle = \subtitle
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
arranger = \arrangerPipes
}
}