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 12/8
}
\key a \mixolydian
}
confTempo = {
\tempo 4. = 40
}
}
%% Format
part = { \partial 4. \grace{s4.} s4. }
measure = { \grace {s1} s1. | }

View file

@ -4,7 +4,7 @@
composerPipes = "PM J.M. Banks"
arrangerPipes = ""
pipeglobal = {
\key a \major
\key a \mixolydian
}
% Music
pipesA = {

View file

@ -4,7 +4,7 @@
composerPipesSecnd = "PM J.M. Banks"
arrangerPipesSecnd = ""
pipessecndglobal = {
\key a \major
\key a \mixolydian
}
% Music
pipessecndAA = { % Same as pipesA

View file

@ -0,0 +1,59 @@
\version "2.19.0"
\include "bagpipe.ly"
\include "./config.ily"
\include "./notes.pipes.ily"
\include "./notes.pipes.seconds.ily"
%\include "./notes.pipes.thirds.ily"
mbreak = \break
pipes = {\pipeglobal \pipesA \pipesB }
pipesII = {
\pipessecndglobal
\pipessecndAA \pipessecndAB
\pipessecndBA \pipessecndBB
}
\score {
\new StaffGroup <<
\new Staff = "pipes" \with{
instrumentName = \markup{ \instrumentPipes }
shortInstrumentName = \markup{ \shortInstrumentPipes }
} {
\global
<<
\new NullVoice = "format" {
\part \halfline \mbreak \halfline \bar "||"
\break
\halfline \mbreak \halfline \bar "|."
}%Format
\set Staff.printPartCombineTexts = ##f
\partcombine \pipes \pipesII
>>
}
% \new Staff = "thirds" \with {
% instrumentName = \markup{ \instrumentPipes \instrumentThrd }
% shortInstrumentName = \markup{ \shortInstrumentPipes \shortInstrumentThrd}
% } {
% \pipesthrdglobal
%
% }
>>
\header {
title = \title
meter = \meter
composer = \markup \large {
\column \right-align {
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \composerPipes ":" }} #} )
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \composerPipessecnd ":" }} #} )
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \composerPipesthrd ":" }} #} )
}
\column \right-align {
$(if (not (string=? "" composerPipes)) #{ \markup {\line { \instrumentPipes }}#} )
$(if (not (string=? "" composerPipessecnd)) #{ \markup {\line { \instrumentPipessecnd }}#} )
$(if (not (string=? "" composerPipesthrd)) #{ \markup {\line { \instrumentPipesthrd }}#} )
}
}
}
}