1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-06-18 05:06:37 +02:00

Wrong mode assigned: a \\major should have been a \\mixolydian

This commit is contained in:
Eric Teunis de Boone 2019-03-23 06:49:37 +01:00
parent 081caa3cbb
commit c9aef893ab
125 changed files with 318 additions and 155 deletions

View file

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

View file

@ -3,7 +3,7 @@
\version "2.18.2"
composerPipes = "Trad."
pipeglobal = {
\key a \major
\key a \mixolydian
}
pipesA = {
e4 |

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
}
}