1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-05-15 20:39:20 +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,10 +2,11 @@
%% Globals
global = {
\time 2/4
}
\key a \mixolydian
}
confTempo = {
\tempo 4 = 80
}
}
%% Format
measure = { \grace {s1} s2 | }
halfline = { \repeat unfold 4 \measure }

View file

@ -3,7 +3,7 @@
\version "2.18.2"
composerPipes = "Calixa Lavallée"
pipeglobal = {
\key a \major
\key a \mixolydian
}
% Music
pipesA = {

View file

@ -0,0 +1,32 @@
\version "2.18.2"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\score {
\transpose f d \new Staff {
\global
\pipeglobal
<<
\new NullVoice = "format" {
\repeat unfold 7 {
\repeat unfold 4 \measure
\break
}
\bar "|."
}%Format
\new Voice = "pipes" {
\pipesA
}
>>
}
\header {
title = \title
meter = \meter
instrument = \instrumentPipes
composer = \composerPipes
}
}