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

Merge branch 'tunekeys'

This commit is contained in:
Eric Teunis de Boone 2019-04-02 17:49:59 +02:00
commit 72139f6b3f
172 changed files with 521 additions and 336 deletions

View file

@ -2,6 +2,7 @@
%% Globals
global = {
\time 4/4
\key a \mixolydian
}
confTempo = {
\tempo 4 = 90

View file

@ -3,8 +3,8 @@
\version "2.18.2"
composerPipes = "Trad."
pipeglobal = {
\bagpipeKey
}
\key a \mixolydian
}
pipesA = {
e4 |
\grg a4~ a8 [ \wbirl a8 ] \gre a4 \grd c4 |

View file

@ -0,0 +1,30 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\transpose a d {
\new Staff {
\global
\pipeglobal
\repeat volta 2 {
\partial 4
\pipesA s4
}
\break
\repeat volta 2 {
\partial 4
\pipesB s4
}
}
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}