making breysheet transcibable and adding separate folders for each piece
This commit is contained in:
parent
5c15cc4a03
commit
d5a7eab15e
BIN
bereshit_chant.mid
Normal file
BIN
bereshit_chant.mid
Normal file
Binary file not shown.
4191
breysheet.txt
Normal file
4191
breysheet.txt
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
|
|
@ -11,6 +11,132 @@ SynthDef(\string_model, {arg freq, gate = 1, del, sustain, amp, dur, attack, rel
|
|||
}).add;
|
||||
)
|
||||
|
||||
(
|
||||
var primes, hsArrayToFreq, hsArrayDimDiff, file, seq, phraseLengths, musicData, patterns;
|
||||
|
||||
thisThread.randSeed = 1954111620240509; //everything in between
|
||||
//thisThread.randSeed = 20240509; //rise yitgadal
|
||||
|
||||
primes = [2, 3, 5, 7, 11];
|
||||
|
||||
hsArrayToFreq = {
|
||||
arg array;
|
||||
array.collect({arg dim, d; pow(primes[d], dim)}).product
|
||||
};
|
||||
|
||||
hsArrayDimDiff = {
|
||||
arg array1, array2;
|
||||
var fArray;
|
||||
fArray = array2.drop(1) - array1.drop(1);
|
||||
if(fArray.sum == 0, {1}, {(primes[fArray.abs.indexOf(1) + 1] * fArray.sum)})
|
||||
};
|
||||
|
||||
file = File("/home/mwinter/Sketches/compact_sets/everything_in_between.txt".standardizePath,"r");
|
||||
//file = File("/home/mwinter/Sketches/compact_sets/rise_yitgadal.txt".standardizePath,"r");
|
||||
seq = file.readAllString.interpret;
|
||||
|
||||
//seq = seq.collect({arg item; item.sort});
|
||||
seq = seq.collect({arg chord, index;
|
||||
var ref_ins;
|
||||
ref_ins = if(index == 0, {
|
||||
[0] // this should actually check which is the 'centered' pitch
|
||||
}, {
|
||||
[seq[index - 1], chord].postln.flop.collect({arg pair, p; if(pair[0] == pair[1], {p}, {-1})}).postln.removeEvery([-1])
|
||||
});
|
||||
chord.collect({arg pitch;
|
||||
var dimDiff;
|
||||
ref_ins.postln;
|
||||
if(ref_ins.size == 1, {
|
||||
[pitch, [ref_ins[0], hsArrayDimDiff.value(chord[ref_ins[0]], pitch)]]
|
||||
}, {
|
||||
var min_ref_ins;
|
||||
min_ref_ins = ref_ins.minItem({arg ins; (chord[ins].drop(1) - pitch.drop(1)).abs.sum});
|
||||
[pitch, [min_ref_ins.postln, hsArrayDimDiff.value(chord[min_ref_ins], pitch)]]
|
||||
});
|
||||
})
|
||||
});
|
||||
|
||||
seq.do({arg chord; chord; chord.collect({arg pitch; hsArrayToFreq.value(pitch[0])}).postln});
|
||||
//seq.postln;
|
||||
|
||||
|
||||
phraseLengths = [];
|
||||
while({phraseLengths.sum < seq.size}, {phraseLengths = phraseLengths ++ [rrand(1, 3)]});
|
||||
//phraseLengths.postln;
|
||||
|
||||
musicData = seq.clumps(phraseLengths).collect({arg subSeq, seqIndex;
|
||||
var baseRound, baseDurs, minDelay, maxDelay, baseSubtract;
|
||||
baseRound = 0.5;
|
||||
baseDurs = subSeq.size.collect({arg subSeqIndex; if(subSeqIndex != (subSeq.size - 1), {rrand(5.0, 7.0)}, {rrand(10.0, 15.0)})}).round(baseRound);
|
||||
//baseDurs = subSeq.size.collect({arg subSeqIndex; if(subSeqIndex != (subSeq.size - 1), {rrand(5.0, 7.0)}, {rrand(15.0, 20.0)})}).round(baseRound);
|
||||
//maxDelay = rrand(1.0, 3.0);
|
||||
//maxDelay = 5;
|
||||
minDelay = 0;
|
||||
maxDelay = 0;
|
||||
baseDurs[0] = baseDurs[0] + maxDelay;
|
||||
baseSubtract = rrand(0.0, 3.0);
|
||||
subSeq.flop.collect({arg voice, v;
|
||||
var phrases, freqs, durs, delays, attacks, rels, sustains, amps, refs;
|
||||
phrases = voice.separate({arg a, b; a[0] != b[0]});
|
||||
freqs = phrases.collect({arg phrase; if(phrase[0][0] != ["Rest"], {45.midicps * pow(2, (v * 2).clip(0, 1)) * hsArrayToFreq.value(phrase[0][0])}, {Rest(0)})});
|
||||
refs = phrases.collect({arg phrase; if(phrase[0][0] != ["Rest"], {phrase[0][1]}, {Rest(0)})});
|
||||
durs = baseDurs.clumps(phrases.collect({arg phrase; phrase.size})).collect({arg c; c.sum});
|
||||
delays = durs.collect({arg dur, d; if((d == 0) && (refs[d][0] != v), {[rrand(minDelay, maxDelay), 0].wchoose([1, 1].normalizeSum)}, {0})}).round(baseRound);
|
||||
//delays = durs.collect({0}}).round(baseRound);
|
||||
attacks = durs.collect({arg dur, d; if(d == 0, {rrand(3.0, 5.0)}, {rrand(1.0, 3.0)})}).round(baseRound);
|
||||
rels = durs.collect({arg dur, d; if(d != (durs.size - 1), {rrand(0.5, 1.0)}, {rrand(3.0, 5.0)})}).round(baseRound);
|
||||
sustains = durs.collect({arg dur, d;
|
||||
if(d != (durs.size - 1), {
|
||||
dur - rels[d]
|
||||
}, {
|
||||
dur - rels[d] - baseSubtract - rrand(0.0, 1.0)})
|
||||
}).round(baseRound);
|
||||
amps = freqs.collect({rrand(0.6, 0.7) / [1, 2, 2, 2][v]});
|
||||
[freqs, durs, attacks, delays, sustains, rels, amps, refs].flop;
|
||||
});
|
||||
}).flop.collect({arg voice; voice.flatten});
|
||||
|
||||
musicData = musicData.collect({arg voice, v;
|
||||
var clumps;
|
||||
//(v + "~~~~~~~~~~").postln;
|
||||
clumps = voice.separate({arg a, b; [true, a[0] != b[0]].wchoose([1, 2].normalizeSum)});
|
||||
clumps = clumps.collect({arg clump;
|
||||
if(clump.size == 1, {clump[0]}, {
|
||||
var mergedClump;
|
||||
mergedClump = clump[0].deepCopy;
|
||||
mergedClump[1] = clump.slice(nil, 1).sum;
|
||||
mergedClump[4] = (mergedClump[1] - (clump.last[1] - clump.last[4]));
|
||||
mergedClump[5] = clump.last[5];
|
||||
mergedClump
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
~musicData = musicData;
|
||||
|
||||
~patterns = Ppar(
|
||||
musicData.collect({arg voice, v;
|
||||
var freqs, durs, attacks, delays, sustains, rels, amps;
|
||||
# freqs, durs, attacks, delays, sustains, rels, amps = voice.flop;
|
||||
//# durs, attacks, delays, sustains, rels = [durs, attacks, delays, sustains, rels].collect({arg data; data / 16});
|
||||
Pbind(
|
||||
\instrument, \string_model,
|
||||
\freq, Pseq(freqs, 1),
|
||||
\dur, Pseq(durs, 1),
|
||||
\attack, Pseq(attacks, 1),
|
||||
\sustain, Pseq(sustains, 1),
|
||||
\release, Pseq(rels, 1),
|
||||
\amp, Pseq(amps, 1),
|
||||
\del, Pseq(delays, 1),
|
||||
\busIndex, v
|
||||
)
|
||||
});
|
||||
);
|
||||
|
||||
~patterns.play
|
||||
)
|
||||
|
||||
|
||||
(
|
||||
var primes, hsArrayToFreq, hsArrayDimDiff, file, seq, phraseLengths, musicData, patterns;
|
||||
|
||||
|
|
@ -137,10 +263,9 @@ musicData = musicData.collect({arg voice, v;
|
|||
)
|
||||
|
||||
|
||||
|
||||
(
|
||||
// breysheet
|
||||
var primes, hsArrayToFreq, hsArrayDimDiff, file, seq, durs, chords, phraseLengths, musicData, patterns;
|
||||
var primes, hsArrayToFreq, hsArrayDimDiff, refs, file, seq, durs, chords, phraseLengths, musicData, patterns;
|
||||
|
||||
thisThread.randSeed = 20240509;
|
||||
|
||||
|
|
@ -155,49 +280,71 @@ hsArrayDimDiff = {
|
|||
arg array1, array2;
|
||||
var fArray;
|
||||
fArray = array2.drop(1) - array1.drop(1);
|
||||
if(fArray.sum == 0, {1}, {(primes[fArray.abs.indexOf(1) + 1] * fArray.sum)})
|
||||
//fArray.postln;
|
||||
if(fArray.sum == 0, {1}, {(primes[fArray.abs.indexOf(1) + 1] * fArray.sum)});
|
||||
};
|
||||
|
||||
file = File("/home/mwinter/Sketches/compact_sets/breysheet.txt".standardizePath,"r");
|
||||
seq = file.readAllString.interpret;
|
||||
|
||||
|
||||
//seq.do({arg data, index; [data[0], data[1].collect({arg pitch; (110 * hsArrayToFreq.value(pitch)).cpsmidi})].postln});
|
||||
//seq.postln;
|
||||
|
||||
|
||||
# durs, chords = seq[..300].flop;
|
||||
|
||||
//seq = seq.collect({arg item; item.sort});
|
||||
/*seq = seq.collect({arg chord, index;
|
||||
|
||||
|
||||
refs = chords.collect({arg chord, index;
|
||||
var ref_ins;
|
||||
ref_ins = if(index == 0, {
|
||||
[0] // this should actually check which is the 'centered' pitch
|
||||
}, {
|
||||
[seq[index - 1], chord].postln.flop.collect({arg pair, p; if(pair[0] == pair[1], {p}, {-1})}).postln.removeEvery([-1])
|
||||
[chords[index - 1], chord].flop.collect({arg pair, p; if(pair[0] == pair[1], {p}, {-1})}).removeEvery([-1])
|
||||
});
|
||||
//if(ref_ins == [], {"here".postln});
|
||||
"-----".postln;
|
||||
chord.collect({arg pitch;
|
||||
var dimDiff;
|
||||
ref_ins.postln;
|
||||
if(ref_ins.size == 1, {
|
||||
[pitch, [ref_ins[0], hsArrayDimDiff.value(chord[ref_ins[0]], pitch)]]
|
||||
//"here1".postln;
|
||||
[pitch, [ref_ins[0], hsArrayDimDiff.value(chord[ref_ins[0]], pitch)]].postln
|
||||
}, {
|
||||
var min_ref_ins;
|
||||
//this is a bug!!!!
|
||||
min_ref_ins = ref_ins.minItem({arg ins; (chord[ins].drop(1) - pitch.drop(1)).abs.sum});
|
||||
[pitch, [min_ref_ins.postln, hsArrayDimDiff.value(chord[min_ref_ins], pitch)]]
|
||||
//pitch.postln;
|
||||
//chord[min_ref_ins].postln;
|
||||
//"here2".postln;
|
||||
[pitch, [min_ref_ins, hsArrayDimDiff.value(chord[min_ref_ins], pitch)]].postln
|
||||
});
|
||||
})
|
||||
});
|
||||
*/
|
||||
|
||||
seq.do({arg data, index; [data[0], data[1].collect({arg pitch; (110 * hsArrayToFreq.value(pitch)).cpsmidi})].postln});
|
||||
//seq.postln;
|
||||
}).flop;
|
||||
|
||||
|
||||
# durs, chords = seq.flop;
|
||||
"here".postln;
|
||||
refs.postln;
|
||||
|
||||
chords.postln;
|
||||
|
||||
musicData = chords.flop.collect({arg voice, v;
|
||||
var phrases, freqs, vDurs, delays, attacks, rels, sustains, amps, refs;
|
||||
phrases = voice.postln.separate({arg a, b; a != b});
|
||||
freqs = phrases.postln.collect({arg phrase; if(phrase[0] != ["Rest"], {55.midicps * pow(2, ([0, 1, 1][v]).clip(0, 2)) * hsArrayToFreq.value(phrase[0])}, {Rest(0)})});
|
||||
var phrases, freqs, vDurs, delays, attacks, rels, sustains, vRefs, amps;
|
||||
phrases = voice.separate({arg a, b; a != b});
|
||||
freqs = phrases.collect({arg phrase; if(phrase[0] != ["Rest"], {55.midicps * pow(2, ([0, 1, 1][v]).clip(0, 2)) * hsArrayToFreq.value(phrase[0])}, {Rest(0)})});
|
||||
vDurs = durs.clumps(phrases.collect({arg phrase; phrase.size})).collect({arg c; c.sum});
|
||||
vRefs = refs[v].clumps(phrases.collect({arg phrase; phrase.size})).collect({arg r; r[0].postln[1]});
|
||||
|
||||
attacks = (vDurs / 2).clip(0, 0.01);
|
||||
delays = vDurs * 0;
|
||||
rels = (vDurs / 2).clip(0, 0.01);
|
||||
sustains = vDurs - rels;
|
||||
|
||||
amps = freqs.collect({rrand(0.6, 0.7) / [2, 2, 3, 2][v]});
|
||||
[freqs, vDurs, amps].flop;
|
||||
//[freqs, vDurs, amps].flop;
|
||||
[freqs, vDurs, attacks, delays, sustains, rels, amps, vRefs].flop;
|
||||
});
|
||||
|
||||
~musicData = musicData.postln;
|
||||
|
|
@ -205,17 +352,22 @@ musicData = chords.flop.collect({arg voice, v;
|
|||
~patterns = Ppar(
|
||||
musicData[0..2].collect({arg voice, v;
|
||||
var freqs, durs, attacks, delays, sustains, rels, amps;
|
||||
# freqs, durs, amps = voice.flop;
|
||||
//# freqs, durs, amps = voice.flop;
|
||||
# freqs, durs, attacks, delays, sustains, rels, amps = voice.flop;
|
||||
//# durs, attacks, delays, sustains, rels = [durs, attacks, delays, sustains, rels].collect({arg data; data / 16});
|
||||
|
||||
/*
|
||||
durs = durs;
|
||||
durs.postln;
|
||||
rels = (durs / 2).clip(0, 0.01);
|
||||
attacks = (durs / 2).clip(0, 0.05);
|
||||
sustains = durs - rels;
|
||||
*/
|
||||
|
||||
Pbind(
|
||||
\instrument, \string_model,
|
||||
\freq, Pseq(freqs, 1),
|
||||
\dur, Pseq(durs, 1),
|
||||
\dur, Pseq(durs.postln, 1),
|
||||
\attack, Pseq(attacks, 1),
|
||||
\sustain, Pseq(sustains, 1),
|
||||
\release, Pseq(rels, 1),
|
||||
|
|
|
|||
|
|
@ -12,10 +12,11 @@ formatMusicData = {arg seq;
|
|||
maxSize = 0;
|
||||
musicData = seq.collect({arg partData, p;
|
||||
var freqs, durs, attacks, delays, sustains, rels, amps, refs, res;
|
||||
partData.postln;
|
||||
# freqs, durs, attacks, delays, sustains, rels, amps, refs = partData.flop;
|
||||
durs = (durs / 0.5).round.asInteger;
|
||||
sustains = ((sustains + rels - 0.5) / 0.5).round.asInteger;
|
||||
delays = (delays / 0.5).round.asInteger;
|
||||
durs = (durs / 0.25).round.asInteger;
|
||||
sustains = ((sustains + rels /*- 0.5*/) / 0.25).round.asInteger;
|
||||
delays = (delays / 0.25).round.asInteger;
|
||||
res = [freqs, durs, delays, sustains, refs].flop.collect({arg data, i;
|
||||
var freq, dur, del, sus, ref;
|
||||
# freq, dur, del, sus, ref = data;
|
||||
|
|
@ -166,10 +167,10 @@ consolidateNotes = {arg lyStr, part;
|
|||
res.replace("<MARKUP", "").replace("MARKUP>", "");
|
||||
};
|
||||
|
||||
~transcribe = {arg rawMusicData;
|
||||
~transcribe = {arg rawMusicData, name;
|
||||
var basePath, scoreFile, musicData, insData, insNames, insNamesShort, insMidi, insClef;
|
||||
|
||||
basePath = thisProcess.nowExecutingPath.dirname +/+ "lilypond";
|
||||
basePath = thisProcess.nowExecutingPath.dirname +/+ "lilypond" +/+ name ;
|
||||
|
||||
musicData = formatMusicData.value(rawMusicData);
|
||||
//musicData.postln;
|
||||
|
|
@ -247,8 +248,11 @@ consolidateNotes = {arg lyStr, part;
|
|||
});
|
||||
};
|
||||
|
||||
~transcribe.value(~musicData);
|
||||
//~transcribe.value(~musicData);
|
||||
|
||||
)
|
||||
|
||||
~transcribe.value(~musicData);
|
||||
~transcribe.value(~musicData, "compact_sets_2");
|
||||
~transcribe.value(~musicData, "compact_sets_3");
|
||||
~transcribe.value(~musicData, "compact_sets_1");
|
||||
~musicData
|
||||
192
everything_in_between.txt
Normal file
192
everything_in_between.txt
Normal file
|
|
@ -0,0 +1,192 @@
|
|||
[
|
||||
[[0, 0, 0, 0, 0], [0, 0, -1, 1, 0], [3, 0, -1, 0, 0]],
|
||||
[[-4, 0, -1, 1, 1], [0, 0, -1, 1, 0], [-2, 0, 0, 1, 0]],
|
||||
[[-2, 1, -1, 1, 0], [0, 0, -1, 1, 0], [3, 0, -1, 0, 0]],
|
||||
[[-2, 1, -1, 1, 0], [-4, 1, 0, 1, 0], [1, 1, -2, 1, 0]],
|
||||
[[-2, 1, -1, 1, 0], [-5, 1, -1, 1, 1], [-3, 2, -1, 1, 0]],
|
||||
[[-4, 0, -1, 1, 1], [-5, 1, -1, 1, 1], [-2, 1, -1, 0, 1]],
|
||||
[[-5, 1, 0, 0, 1], [0, 1, -2, 0, 1], [-2, 1, -1, 0, 1]],
|
||||
[[-5, 1, 0, 0, 1], [-3, 0, 0, 0, 1], [-6, 2, 0, 0, 1]],
|
||||
[[-3, 2, 0, 0, 0], [-4, 2, -1, 0, 1], [-6, 2, 0, 0, 1]],
|
||||
[[-10, 2, 0, 0, 2], [-9, 2, 0, 1, 1], [-6, 2, 0, 0, 1]],
|
||||
[[-10, 2, 0, 0, 2], [-7, 2, 0, -1, 2], [-11, 3, 0, 0, 2]],
|
||||
[[-10, 2, 0, 0, 2], [-12, 2, 1, 0, 2], [-13, 2, 0, 0, 3]],
|
||||
[[-10, 2, 0, 0, 2], [-7, 2, 0, -1, 2], [-6, 2, 0, 0, 1]],
|
||||
[[-10, 2, 0, 0, 2], [-12, 2, 1, 0, 2], [-8, 1, 0, 0, 2]],
|
||||
[[-9, 2, 1, 0, 1], [-12, 2, 1, 0, 2], [-9, 2, 1, -1, 2]],
|
||||
[[-9, 2, 1, 0, 1], [-11, 2, 2, 0, 1], [-11, 2, 1, 1, 1]],
|
||||
[[-9, 2, 1, 0, 1], [-7, 1, 1, 0, 1], [-6, 2, 0, 0, 1]],
|
||||
[[-9, 2, 1, 0, 1], [-12, 2, 1, 0, 2], [-5, 2, 1, 0, 0]],
|
||||
[[-7, 3, 1, 0, 0], [-8, 2, 1, 1, 0], [-5, 2, 1, 0, 0]],
|
||||
[[-6, 2, 0, 1, 0], [-8, 2, 1, 1, 0], [-10, 2, 2, 1, 0]],
|
||||
[[-11, 2, 1, 2, 0], [-8, 2, 1, 1, 0], [-5, 2, 1, 0, 0]],
|
||||
[[-9, 2, 1, 0, 1], [-3, 2, 0, 0, 0], [-5, 2, 1, 0, 0]],
|
||||
[[-8, 2, 2, 0, 0], [-8, 2, 1, 1, 0], [-5, 2, 1, 0, 0]],
|
||||
[[-4, 1, 1, 0, 0], [-3, 2, 0, 0, 0], [-5, 2, 1, 0, 0]],
|
||||
[[-4, 1, 1, 0, 0], [-6, 1, 2, 0, 0], [0, 1, 1, 0, -1]],
|
||||
[[-4, 1, 1, 0, 0], [-2, 0, 1, 0, 0], [-7, 1, 1, 0, 1]],
|
||||
[[0, 0, 0, 0, 0], [-2, 0, 1, 0, 0], [1, 0, 1, -1, 0]],
|
||||
[[0, 0, 0, 0, 0], [3, 0, 0, -1, 0], [-3, 0, 0, 0, 1]],
|
||||
[[5, 0, -1, -1, 0], [3, 0, 0, -1, 0], [5, -1, 0, -1, 0]],
|
||||
[[2, -1, 1, -1, 0], [8, -1, 0, -1, -1], [5, -1, 0, -1, 0]],
|
||||
[[10, -1, -1, -1, -1], [8, -1, 0, -1, -1], [12, -1, 0, -1, -2]],
|
||||
[[10, -1, -1, -1, -1], [7, -1, -1, -1, 0], [8, -1, -1, 0, -1]],
|
||||
[[10, -1, -1, -1, -1], [9, 0, -1, -1, -1], [13, -1, -2, -1, -1]],
|
||||
[[14, -2, -2, -1, -1], [10, -1, -2, 0, -1], [13, -1, -2, -1, -1]],
|
||||
[[9, -1, -2, -1, 0], [15, -1, -3, -1, -1], [13, -1, -2, -1, -1]],
|
||||
[[16, -1, -2, -1, -2], [11, 0, -2, -1, -1], [13, -1, -2, -1, -1]],
|
||||
[[8, 0, -2, 0, -1], [11, 0, -2, -1, -1], [15, 0, -2, -1, -2]],
|
||||
[[12, 0, -1, -1, -2], [16, -1, -2, -1, -2], [15, 0, -2, -1, -2]],
|
||||
[[12, 0, -1, -1, -2], [15, 0, -1, -2, -2], [10, 0, -1, 0, -2]],
|
||||
[[12, 0, -1, -1, -2], [10, 0, 0, -1, -2], [15, 0, -2, -1, -2]],
|
||||
[[16, -1, -2, -1, -2], [18, 0, -2, -1, -3], [15, 0, -2, -1, -2]],
|
||||
[[15, 0, -2, 0, -3], [18, 0, -2, -1, -3], [17, 1, -2, -1, -3]],
|
||||
[[20, 0, -3, -1, -3], [18, 0, -2, -1, -3], [15, 0, -2, -1, -2]],
|
||||
[[12, 0, -1, -1, -2], [11, 0, -2, -1, -1], [15, 0, -2, -1, -2]],
|
||||
[[8, 0, -2, 0, -1], [11, 0, -2, -1, -1], [14, 0, -3, -1, -1]],
|
||||
[[8, 0, -2, 0, -1], [6, 0, -1, 0, -1], [6, 0, -2, 1, -1]],
|
||||
[[8, 0, -2, 0, -1], [11, 0, -2, -1, -1], [11, 0, -3, 0, -1]],
|
||||
[[13, 0, -3, -1, -1], [13, 0, -4, 0, -1], [11, 0, -3, 0, -1]],
|
||||
[[13, 0, -3, -1, -1], [17, 0, -3, -1, -2], [16, 0, -4, -1, -1]],
|
||||
[[13, 0, -3, -1, -1], [15, -1, -3, -1, -1], [11, 0, -3, 0, -1]],
|
||||
[[13, 0, -3, -1, -1], [17, 0, -3, -1, -2], [16, 0, -4, -1, -1]],
|
||||
[[13, 0, -3, -1, -1], [15, -1, -3, -1, -1], [11, 0, -3, 0, -1]],
|
||||
[[13, 0, -3, -1, -1], [10, 0, -3, -1, 0], [16, 0, -4, -1, -1]],
|
||||
[[17, -1, -4, -1, -1], [18, 0, -5, -1, -1], [16, 0, -4, -1, -1]],
|
||||
[[15, 0, -5, 0, -1], [18, 0, -5, -1, -1], [20, -1, -5, -1, -1]],
|
||||
[[16, -1, -5, -1, 0], [23, -1, -5, -1, -2], [20, -1, -5, -1, -1]],
|
||||
[[21, -2, -5, -1, -1], [18, 0, -5, -1, -1], [20, -1, -5, -1, -1]],
|
||||
[[21, -2, -5, -1, -1], [19, -2, -4, -1, -1], [25, -2, -5, -1, -2]],
|
||||
[[17, -1, -4, -1, -1], [19, -2, -4, -1, -1], [17, -2, -3, -1, -1]],
|
||||
[[22, -2, -4, -1, -2], [19, -2, -4, -1, -1], [16, -2, -4, -1, 0]],
|
||||
[[18, -2, -4, -2, 0], [17, -3, -4, -1, 0], [16, -2, -4, -1, 0]],
|
||||
[[18, -2, -4, -2, 0], [16, -2, -3, -2, 0], [21, -2, -5, -2, 0]],
|
||||
[[14, -1, -3, -2, 0], [16, -2, -3, -2, 0], [18, -3, -3, -2, 0]],
|
||||
[[18, -2, -4, -2, 0], [16, -2, -3, -2, 0], [20, -2, -3, -2, -1]],
|
||||
[[22, -2, -3, -3, -1], [17, -2, -2, -2, -1], [20, -2, -3, -2, -1]],
|
||||
[[22, -2, -3, -3, -1], [25, -2, -3, -4, -1], [25, -2, -4, -3, -1]],
|
||||
[[26, -3, -4, -3, -1], [21, -2, -4, -3, 0], [25, -2, -4, -3, -1]],
|
||||
[[22, -2, -3, -3, -1], [23, -1, -4, -3, -1], [25, -2, -4, -3, -1]],
|
||||
[[20, -1, -4, -2, -1], [23, -1, -4, -3, -1], [20, -1, -4, -3, 0]],
|
||||
[[22, -1, -4, -4, 0], [18, 0, -4, -3, 0], [20, -1, -4, -3, 0]],
|
||||
[[14, 0, -4, -3, 1], [18, 0, -4, -3, 0], [16, 0, -3, -3, 0]],
|
||||
[[14, 0, -4, -3, 1], [13, 1, -4, -3, 1], [12, 0, -4, -2, 1]],
|
||||
[[16, 1, -4, -3, 0], [13, 1, -4, -3, 1], [11, 1, -3, -3, 1]],
|
||||
[[9, 1, -4, -3, 2], [13, 1, -4, -3, 1], [15, 0, -4, -3, 1]],
|
||||
[[17, 0, -4, -4, 1], [18, 0, -4, -3, 0], [15, 0, -4, -3, 1]],
|
||||
[[16, 1, -4, -3, 0], [18, 0, -4, -3, 0], [22, 0, -4, -3, -1]],
|
||||
[[16, 1, -4, -3, 0], [20, 1, -4, -3, -1], [14, 1, -4, -2, 0]],
|
||||
[[21, 0, -4, -3, -1], [20, 1, -4, -3, -1], [18, 1, -3, -3, -1]],
|
||||
[[21, 0, -4, -3, -1], [24, 0, -5, -3, -1], [19, 0, -4, -2, -1]],
|
||||
[[16, 0, -3, -2, -1], [16, 0, -4, -1, -1], [19, 0, -4, -2, -1]],
|
||||
[[16, 0, -3, -2, -1], [14, 0, -2, -2, -1], [15, 1, -3, -2, -1]],
|
||||
[[17, 0, -2, -2, -2], [14, 0, -2, -2, -1], [16, -1, -2, -2, -1]],
|
||||
[[12, 1, -2, -2, -1], [14, 0, -2, -2, -1], [12, 0, -1, -2, -1]],
|
||||
[[14, 0, -1, -3, -1], [9, 0, -1, -1, -1], [12, 0, -1, -2, -1]],
|
||||
[[9, 0, 0, -2, -1], [14, 0, -2, -2, -1], [12, 0, -1, -2, -1]],
|
||||
[[9, 0, 0, -2, -1], [11, -1, 0, -2, -1], [13, 0, 0, -2, -2]],
|
||||
[[9, 0, 0, -2, -1], [7, 0, 1, -2, -1], [12, 0, -1, -2, -1]],
|
||||
[[8, 0, -1, -2, 0], [10, 1, -1, -2, -1], [12, 0, -1, -2, -1]],
|
||||
[[8, 0, -1, -2, 0], [11, 0, -1, -3, 0], [5, 0, -1, -2, 1]],
|
||||
[[13, 0, -2, -3, 0], [11, 0, -1, -3, 0], [9, 0, 0, -3, 0]],
|
||||
[[9, 1, -1, -3, 0], [11, 0, -1, -3, 0], [8, 0, -1, -3, 1]],
|
||||
[[10, 0, -1, -4, 1], [4, 0, -1, -3, 2], [8, 0, -1, -3, 1]],
|
||||
[[6, 0, -2, -3, 2], [4, 0, -1, -3, 2], [3, 1, -1, -3, 2]],
|
||||
[[5, 1, -1, -4, 2], [0, 1, 0, -3, 2], [3, 1, -1, -3, 2]],
|
||||
[[5, 1, -1, -4, 2], [8, 1, -1, -5, 2], [8, 1, -2, -4, 2]],
|
||||
[[5, 1, -1, -4, 2], [3, 1, 0, -4, 2], [4, 2, -1, -4, 2]],
|
||||
[[1, 2, 0, -4, 2], [3, 1, 0, -4, 2], [5, 0, 0, -4, 2]],
|
||||
[[5, 1, -1, -4, 2], [3, 1, 0, -4, 2], [1, 1, 1, -4, 2]],
|
||||
[[6, 1, 0, -4, 1], [3, 1, 0, -4, 2], [5, 0, 0, -4, 2]],
|
||||
[[6, 1, 0, -4, 1], [10, 1, 0, -4, 0], [4, 1, 0, -3, 1]],
|
||||
[[7, 1, 1, -4, 0], [10, 1, 0, -4, 0], [13, 1, 0, -5, 0]],
|
||||
[[7, 1, 1, -4, 0], [6, 2, 1, -4, 0], [5, 1, 1, -3, 0]],
|
||||
[[2, 2, 1, -4, 1], [6, 2, 1, -4, 0], [9, 2, 1, -5, 0]],
|
||||
[[7, 1, 1, -4, 0], [6, 2, 1, -4, 0], [4, 2, 2, -4, 0]],
|
||||
[[6, 2, 2, -5, 0], [7, 2, 2, -4, -1], [4, 2, 2, -4, 0]],
|
||||
[[1, 2, 3, -4, 0], [0, 2, 2, -4, 1], [4, 2, 2, -4, 0]],
|
||||
[[6, 2, 2, -5, 0], [7, 2, 2, -4, -1], [4, 2, 2, -4, 0]],
|
||||
[[4, 2, 2, -3, -1], [7, 2, 2, -4, -1], [5, 2, 3, -4, -1]],
|
||||
[[8, 2, 3, -4, -2], [2, 2, 3, -3, -1], [5, 2, 3, -4, -1]],
|
||||
[[3, 3, 3, -4, -1], [7, 2, 2, -4, -1], [5, 2, 3, -4, -1]],
|
||||
[[1, 2, 3, -4, 0], [2, 2, 3, -3, -1], [5, 2, 3, -4, -1]],
|
||||
[[1, 2, 3, -4, 0], [4, 2, 3, -5, 0], [4, 2, 2, -4, 0]],
|
||||
[[5, 1, 2, -4, 0], [0, 2, 2, -4, 1], [4, 2, 2, -4, 0]],
|
||||
[[-3, 2, 2, -3, 1], [0, 2, 2, -4, 1], [-1, 3, 2, -4, 1]],
|
||||
[[2, 2, 1, -4, 1], [0, 2, 2, -4, 1], [-3, 2, 2, -4, 2]],
|
||||
[[-3, 2, 2, -3, 1], [0, 2, 2, -4, 1], [2, 1, 2, -4, 1]],
|
||||
[[2, 2, 1, -4, 1], [0, 2, 2, -4, 1], [-3, 2, 2, -4, 2]],
|
||||
[[-3, 2, 2, -3, 1], [0, 2, 2, -4, 1], [2, 1, 2, -4, 1]],
|
||||
[[-1, 1, 3, -4, 1], [4, 1, 1, -4, 1], [2, 1, 2, -4, 1]],
|
||||
[[-1, 1, 3, -4, 1], [-4, 1, 3, -4, 2], [-2, 2, 3, -4, 1]],
|
||||
[[1, 2, 3, -4, 0], [-5, 2, 3, -3, 1], [-2, 2, 3, -4, 1]],
|
||||
[[-4, 3, 3, -4, 1], [0, 2, 2, -4, 1], [-2, 2, 3, -4, 1]],
|
||||
[[-4, 3, 3, -4, 1], [-1, 3, 3, -5, 1], [-6, 3, 4, -4, 1]],
|
||||
[[1, 3, 2, -5, 1], [-1, 3, 3, -5, 1], [2, 3, 3, -6, 1]],
|
||||
[[1, 3, 2, -5, 1], [3, 2, 2, -5, 1], [-2, 3, 2, -5, 2]],
|
||||
[[1, 3, 2, -5, 1], [5, 3, 2, -5, 0], [0, 4, 2, -5, 1]],
|
||||
[[1, 3, 2, -5, 1], [3, 2, 2, -5, 1], [4, 3, 1, -5, 1]],
|
||||
[[6, 2, 2, -5, 0], [3, 2, 2, -5, 1], [5, 1, 2, -5, 1]],
|
||||
[[6, 2, 2, -5, 0], [5, 3, 2, -5, 0], [4, 2, 2, -4, 0]],
|
||||
[[6, 2, 2, -5, 0], [3, 2, 2, -5, 1], [9, 2, 1, -5, 0]],
|
||||
[[-1, 2, 2, -5, 2], [3, 2, 2, -5, 1], [1, 2, 3, -5, 1]],
|
||||
[[-1, 2, 2, -5, 2], [2, 2, 1, -5, 2], [-3, 2, 2, -4, 2]],
|
||||
[[-6, 2, 3, -4, 2], [-6, 2, 2, -3, 2], [-3, 2, 2, -4, 2]],
|
||||
[[-10, 2, 2, -3, 3], [-6, 2, 2, -3, 2], [-8, 2, 3, -3, 2]],
|
||||
[[-10, 2, 2, -3, 3], [-11, 3, 2, -3, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-15, 2, 3, -2, 3], [-10, 2, 1, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-13, 2, 1, -1, 3], [-10, 2, 1, -2, 3], [-7, 2, 1, -3, 3]],
|
||||
[[-8, 2, 0, -2, 3], [-10, 2, 1, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-11, 1, 2, -2, 3], [-14, 3, 2, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-16, 2, 2, -2, 4], [-10, 2, 1, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-15, 2, 3, -2, 3], [-15, 2, 2, -1, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-11, 1, 2, -2, 3], [-10, 2, 1, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-8, 2, 0, -2, 3], [-10, 2, 1, -2, 3], [-8, 1, 1, -2, 3]],
|
||||
[[-7, 2, 1, -2, 2], [-10, 2, 1, -2, 3], [-12, 2, 2, -2, 3]],
|
||||
[[-7, 2, 1, -2, 2], [-3, 2, 1, -2, 1], [-4, 2, 0, -2, 2]],
|
||||
[[-2, 2, 0, -3, 2], [-7, 2, 0, -1, 2], [-4, 2, 0, -2, 2]],
|
||||
[[-7, 2, 1, -2, 2], [-2, 2, -1, -2, 2], [-4, 2, 0, -2, 2]],
|
||||
[[-7, 2, 1, -2, 2], [-4, 2, 1, -3, 2], [-9, 2, 1, -1, 2]],
|
||||
[[-7, 2, 1, -2, 2], [-9, 2, 2, -2, 2], [-4, 2, 0, -2, 2]],
|
||||
[[-6, 2, 2, -2, 1], [-9, 2, 2, -2, 2], [-12, 2, 2, -2, 3]],
|
||||
[[-6, 2, 2, -2, 1], [-7, 3, 2, -2, 1], [-8, 2, 2, -1, 1]],
|
||||
[[-11, 2, 3, -1, 1], [-6, 2, 1, -1, 1], [-8, 2, 2, -1, 1]],
|
||||
[[-11, 2, 3, -1, 1], [-9, 1, 3, -1, 1], [-12, 3, 3, -1, 1]],
|
||||
[[-9, 3, 3, -1, 0], [-10, 3, 2, -1, 1], [-12, 3, 3, -1, 1]],
|
||||
[[-9, 3, 3, -1, 0], [-6, 3, 3, -2, 0], [-7, 2, 3, -1, 0]],
|
||||
[[-4, 3, 2, -2, 0], [-6, 3, 3, -2, 0], [-8, 3, 4, -2, 0]],
|
||||
[[-12, 3, 4, -2, 1], [-10, 4, 4, -2, 0], [-8, 3, 4, -2, 0]],
|
||||
[[-13, 4, 4, -1, 0], [-10, 4, 4, -2, 0], [-13, 4, 4, -2, 1]],
|
||||
[[-8, 4, 3, -2, 0], [-10, 4, 4, -2, 0], [-11, 5, 4, -2, 0]],
|
||||
[[-13, 4, 4, -1, 0], [-10, 4, 4, -2, 0], [-6, 4, 4, -2, -1]],
|
||||
[[-13, 4, 4, -1, 0], [-15, 4, 5, -1, 0], [-10, 4, 3, -1, 0]],
|
||||
[[-14, 4, 3, -1, 1], [-12, 5, 3, -1, 0], [-10, 4, 3, -1, 0]],
|
||||
[[-9, 3, 3, -1, 0], [-8, 4, 2, -1, 0], [-10, 4, 3, -1, 0]],
|
||||
[[-9, 3, 3, -1, 0], [-11, 3, 4, -1, 0], [-12, 3, 3, -1, 1]],
|
||||
[[-13, 4, 4, -1, 0], [-11, 3, 4, -1, 0], [-8, 3, 4, -2, 0]],
|
||||
[[-13, 4, 4, -1, 0], [-16, 4, 4, -1, 1], [-9, 4, 4, -1, -1]],
|
||||
[[-20, 4, 4, -1, 2], [-16, 4, 4, -1, 1], [-13, 4, 4, -2, 1]],
|
||||
[[-20, 4, 4, -1, 2], [-21, 5, 4, -1, 2], [-17, 4, 3, -1, 2]],
|
||||
[[-24, 5, 5, -1, 2], [-21, 5, 4, -1, 2], [-18, 5, 4, -2, 2]],
|
||||
[[-16, 5, 4, -3, 2], [-16, 5, 3, -2, 2], [-18, 5, 4, -2, 2]],
|
||||
[[-14, 5, 2, -2, 2], [-16, 5, 3, -2, 2], [-13, 5, 3, -3, 2]],
|
||||
[[-15, 6, 3, -3, 2], [-11, 5, 2, -3, 2], [-13, 5, 3, -3, 2]],
|
||||
[[-15, 6, 3, -3, 2], [-12, 6, 3, -4, 2], [-11, 6, 3, -3, 1]],
|
||||
[[-10, 6, 2, -4, 2], [-12, 6, 3, -4, 2], [-15, 6, 3, -4, 3]],
|
||||
[[-15, 6, 3, -3, 2], [-12, 6, 3, -4, 2], [-10, 5, 3, -4, 2]],
|
||||
[[-14, 5, 3, -4, 3], [-7, 5, 3, -4, 1], [-10, 5, 3, -4, 2]],
|
||||
[[-14, 5, 3, -4, 3], [-11, 5, 3, -5, 3], [-17, 5, 3, -4, 4]],
|
||||
[[-9, 5, 2, -5, 3], [-11, 5, 3, -5, 3], [-9, 4, 3, -5, 3]],
|
||||
[[-8, 5, 3, -5, 2], [-11, 5, 3, -5, 3], [-14, 5, 3, -5, 4]],
|
||||
[[-9, 5, 2, -5, 3], [-11, 5, 3, -5, 3], [-12, 6, 3, -5, 3]],
|
||||
[[-10, 6, 3, -6, 3], [-15, 6, 4, -5, 3], [-12, 6, 3, -5, 3]],
|
||||
[[-10, 6, 3, -6, 3], [-7, 6, 3, -7, 3], [-7, 6, 2, -6, 3]],
|
||||
[[-5, 6, 2, -7, 3], [-5, 6, 1, -6, 3], [-7, 6, 2, -6, 3]],
|
||||
[[-3, 6, 0, -6, 3], [-5, 6, 1, -6, 3], [-3, 5, 1, -6, 3]],
|
||||
[[-1, 5, 1, -7, 3], [-1, 5, 0, -6, 3], [-3, 5, 1, -6, 3]],
|
||||
[[-6, 5, 2, -6, 3], [-5, 6, 1, -6, 3], [-3, 5, 1, -6, 3]],
|
||||
[[-2, 4, 1, -6, 3], [-1, 5, 0, -6, 3], [-3, 5, 1, -6, 3]],
|
||||
[[-7, 5, 1, -6, 4], [-5, 6, 1, -6, 3], [-3, 5, 1, -6, 3]],
|
||||
[[-7, 5, 1, -6, 4], [-4, 5, 1, -7, 4], [-10, 5, 1, -6, 5]],
|
||||
[[-8, 5, 0, -6, 5], [-13, 5, 1, -5, 5], [-10, 5, 1, -6, 5]]
|
||||
]
|
||||
149
lilypond/compact_sets_1.ly
Normal file
149
lilypond/compact_sets_1.ly
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
\version "2.24.1"
|
||||
|
||||
\paper {
|
||||
#(set-paper-size "a4" 'portrait)
|
||||
top-margin = 1 \cm
|
||||
bottom-margin = 1 \cm
|
||||
left-margin = 2 \cm
|
||||
ragged-bottom = ##t
|
||||
|
||||
top-system-spacing =
|
||||
#'((basic-distance . 15 )
|
||||
(minimum-distance . 15 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
system-system-spacing =
|
||||
#'((basic-distance . 30 )
|
||||
(minimum-distance . 30 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
last-bottom-spacing =
|
||||
#'((basic-distance . 10 )
|
||||
(minimum-distance . 10 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
%systems-per-page = 4
|
||||
first-page-number = 1
|
||||
print-first-page-number = ##t
|
||||
|
||||
print-page-number = ##t
|
||||
oddHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"in the beginning/b'rey'sheet"}}}}}}}
|
||||
evenHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"in the beginning/b'rey'sheet"}}}}}}}
|
||||
oddFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
evenFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
}
|
||||
|
||||
\header {
|
||||
title = \markup { \italic {"compact sets 1"}}
|
||||
subtitle = \markup { \italic {"in the beginning/b'rey'sheet"}}
|
||||
composer = \markup \right-column {"michael winter" "(cdmx and schloss solitude; 2024)"}
|
||||
poet = ""
|
||||
tagline = ""
|
||||
}
|
||||
|
||||
#(set-global-staff-size 11)
|
||||
|
||||
\layout {
|
||||
indent = 0.0\cm
|
||||
line-width = 17.5\cm
|
||||
ragged-last = ##f
|
||||
ragged-right = ##f
|
||||
|
||||
\context {
|
||||
\Score
|
||||
\override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
|
||||
\override Stem.stemlet-length = #0.75
|
||||
%proportionalNotationDuration = #(ly:make-moment 1/16)
|
||||
\remove "Separating_line_group_engraver"
|
||||
\override RehearsalMark.self-alignment-X = #-1
|
||||
\override RehearsalMark.Y-offset = #10
|
||||
\override RehearsalMark.X-offset = #-8
|
||||
%\override RehearsalMark.outside-staff-priority = #0
|
||||
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/32)
|
||||
%\override Stem.stencil = ##f
|
||||
%\override BarLine.stencil = ##f
|
||||
}
|
||||
\context {
|
||||
\Staff
|
||||
|
||||
\override VerticalAxisGroup.staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
\override VerticalAxisGroup.default-staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
\override TextScript.staff-padding = #2
|
||||
%\override TextScript.self-alignment-X = #0
|
||||
}
|
||||
\context {
|
||||
\StaffGroup
|
||||
\name "SemiStaffGroup"
|
||||
\consists "Span_bar_engraver"
|
||||
\override SpanBar.stencil =
|
||||
#(lambda (grob)
|
||||
(if (string=? (ly:grob-property grob 'glyph-name) "|")
|
||||
(set! (ly:grob-property grob 'glyph-name) ""))
|
||||
(ly:span-bar::print grob))
|
||||
}
|
||||
\context {
|
||||
\Score
|
||||
\accepts SemiStaffGroup
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
\score{
|
||||
<<
|
||||
\new SemiStaffGroup {
|
||||
<<
|
||||
\new Staff = "I" \with {
|
||||
instrumentName = "I"
|
||||
shortInstrumentName = "I"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\numericTimeSignature \time 4/4
|
||||
\include "compact_sets_1/includes/part_I.ly"
|
||||
}
|
||||
\new Staff = "II" \with {
|
||||
instrumentName = "II"
|
||||
shortInstrumentName = "II"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef alto
|
||||
\include "compact_sets_1/includes/part_II.ly"
|
||||
}
|
||||
\new Staff = "III" \with {
|
||||
instrumentName = "III"
|
||||
shortInstrumentName = "III"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef bass
|
||||
\include "compact_sets_1/includes/part_III.ly"
|
||||
}
|
||||
>>
|
||||
}
|
||||
>>
|
||||
\layout{}
|
||||
%\midi{} %this creates a warning since custom staff is not defined for midi
|
||||
}
|
||||
38
lilypond/compact_sets_1/includes/part_I.ly
Normal file
38
lilypond/compact_sets_1/includes/part_I.ly
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
{ a'1^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a'4 ~ a'8[ g'8^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ g'8[ fis'8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ fis'4 ~ }
|
||||
\bar "|"
|
||||
{ fis'8[ g'8^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ g'4 a'2^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a'4 ~ a'8[ fis'8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ fis'4 ~ fis'8[ a'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ a'8[ b'8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ b'8[ a'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ a'2 ~ }
|
||||
\bar "|"
|
||||
{ a'4 ~ a'8[ fis'8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ fis'4 e'8^\markup { \pad-markup #0.2 "+33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}[ c''8^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ c''4 g'2.^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} }
|
||||
\bar "|"
|
||||
{ b'4^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} a'4^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ a'8[ fis'8^\markup { \pad-markup #0.2 "-19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] dis'4^\markup { \pad-markup #0.2 "+14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'2 gis'2^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} }
|
||||
\bar "|"
|
||||
{ d''4^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ais'2^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} c''4^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} }
|
||||
\bar "|"
|
||||
{ d''4^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} gis'2.^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} }
|
||||
\bar "|"
|
||||
{ ais'4^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} c''8^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}[ a'8^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ a'2 ~ }
|
||||
\bar "|"
|
||||
{ a'4 g'4^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} fis'4^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} g'8^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}[ a'8^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ a'2 b'4^\markup { \pad-markup #0.2 "+22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ais'8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}[ dis''8^\markup { \pad-markup #0.2 "+49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] }
|
||||
\bar "|"
|
||||
{ d''2^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ d''8[ b'8^\markup { \pad-markup #0.2 "+22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ b'8[ a'8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ a'1 }
|
||||
\bar "|"
|
||||
{ b'4^\markup { \pad-markup #0.2 "+22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} a'2.^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a'1}
|
||||
\bar "|."
|
||||
}
|
||||
38
lilypond/compact_sets_1/includes/part_II.ly
Normal file
38
lilypond/compact_sets_1/includes/part_II.ly
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
{ g'1^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'4 fis'2^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} g'4^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} }
|
||||
\bar "|"
|
||||
{ f'8^\markup { \pad-markup #0.2 "+18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}[ e'8^\markup { \pad-markup #0.2 "+33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ e'2 d'8^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }}[ c'8^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] }
|
||||
\bar "|"
|
||||
{ g'4^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} a'2.^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a'4 g'8^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}[ f'8^\markup { \pad-markup #0.2 "+18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] dis'2^\markup { \pad-markup #0.2 "+14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ d'8^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] c'8^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}[ c'8^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ c'2 f'8^\markup { \pad-markup #0.2 "+18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}[ f''8^\markup { \pad-markup #0.2 "+18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] dis''4^\markup { \pad-markup #0.2 "+14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis''4 ~ dis''8[ d''8^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ d''2 }
|
||||
\bar "|"
|
||||
{ c''8^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}[ ais'8^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] c''2^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ c''8[ cis''8^\markup { \pad-markup #0.2 "-17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] }
|
||||
\bar "|"
|
||||
{ dis''8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}[ cis''8^\markup { \pad-markup #0.2 "+26"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ cis''4 b'2^\markup { \pad-markup #0.2 "+22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b'8[ ais'8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] c''8^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}[ cis'8^\markup { \pad-markup #0.2 "+26"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] dis'2^\markup { \pad-markup #0.2 "+8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'2. d'4^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} }
|
||||
\bar "|"
|
||||
{ b8^\markup { \pad-markup #0.2 "+22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}[ ais'8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ ais'8[ c''8^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ c''4 ~ c''8[ fis'8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1}
|
||||
\bar "|."
|
||||
}
|
||||
38
lilypond/compact_sets_1/includes/part_III.ly
Normal file
38
lilypond/compact_sets_1/includes/part_III.ly
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
{ d1^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d2 ~ d8[ cis8^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ cis4 ~ }
|
||||
\bar "|"
|
||||
{ cis4 b,8^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}[ a,8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] gis,2^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} }
|
||||
\bar "|"
|
||||
{ gis4^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ gis8[ ais8^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ ais2 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2. c'8^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}[ ais8^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] }
|
||||
\bar "|"
|
||||
{ gis1^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis8[ fis8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }}] e8^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}[ dis8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] dis4^\markup { \pad-markup #0.2 "+8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} d4^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} }
|
||||
\bar "|"
|
||||
{ g1^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g1 }
|
||||
\bar "|"
|
||||
{ fis8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}[ f8^\markup { \pad-markup #0.2 "-31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] fis8^\markup { \pad-markup #0.2 "-19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}[ d8^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ d2 ~ }
|
||||
\bar "|"
|
||||
{ d2. ~ d8[ c8^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] }
|
||||
\bar "|"
|
||||
{ b,8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}[ c8^\markup { \pad-markup #0.2 "+41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ c2.}
|
||||
\bar "|."
|
||||
}
|
||||
149
lilypond/compact_sets_2.ly
Normal file
149
lilypond/compact_sets_2.ly
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
\version "2.24.1"
|
||||
|
||||
\paper {
|
||||
#(set-paper-size "a4" 'portrait)
|
||||
top-margin = 1 \cm
|
||||
bottom-margin = 1 \cm
|
||||
left-margin = 2 \cm
|
||||
ragged-bottom = ##t
|
||||
|
||||
top-system-spacing =
|
||||
#'((basic-distance . 15 )
|
||||
(minimum-distance . 15 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
system-system-spacing =
|
||||
#'((basic-distance . 30 )
|
||||
(minimum-distance . 30 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
last-bottom-spacing =
|
||||
#'((basic-distance . 10 )
|
||||
(minimum-distance . 10 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
%systems-per-page = 4
|
||||
first-page-number = 1
|
||||
print-first-page-number = ##t
|
||||
|
||||
print-page-number = ##t
|
||||
oddHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"everything in between"}}}}}}}
|
||||
evenHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"everything in between"}}}}}}}
|
||||
oddFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
evenFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
}
|
||||
|
||||
\header {
|
||||
title = \markup { \italic {"compact sets 2"}}
|
||||
subtitle = \markup { \italic {"everything in between"}}
|
||||
composer = \markup \right-column {"michael winter" "(cdmx and schloss solitude; 2024)"}
|
||||
poet = ""
|
||||
tagline = ""
|
||||
}
|
||||
|
||||
#(set-global-staff-size 11)
|
||||
|
||||
\layout {
|
||||
indent = 0.0\cm
|
||||
line-width = 17.5\cm
|
||||
ragged-last = ##f
|
||||
ragged-right = ##f
|
||||
|
||||
\context {
|
||||
\Score
|
||||
\override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
|
||||
\override Stem.stemlet-length = #0.75
|
||||
%proportionalNotationDuration = #(ly:make-moment 1/16)
|
||||
\remove "Separating_line_group_engraver"
|
||||
\override RehearsalMark.self-alignment-X = #-1
|
||||
\override RehearsalMark.Y-offset = #10
|
||||
\override RehearsalMark.X-offset = #-8
|
||||
%\override RehearsalMark.outside-staff-priority = #0
|
||||
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/32)
|
||||
%\override Stem.stencil = ##f
|
||||
%\override BarLine.stencil = ##f
|
||||
}
|
||||
\context {
|
||||
\Staff
|
||||
|
||||
\override VerticalAxisGroup.staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
\override VerticalAxisGroup.default-staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
\override TextScript.staff-padding = #2
|
||||
%\override TextScript.self-alignment-X = #0
|
||||
}
|
||||
\context {
|
||||
\StaffGroup
|
||||
\name "SemiStaffGroup"
|
||||
\consists "Span_bar_engraver"
|
||||
\override SpanBar.stencil =
|
||||
#(lambda (grob)
|
||||
(if (string=? (ly:grob-property grob 'glyph-name) "|")
|
||||
(set! (ly:grob-property grob 'glyph-name) ""))
|
||||
(ly:span-bar::print grob))
|
||||
}
|
||||
\context {
|
||||
\Score
|
||||
\accepts SemiStaffGroup
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
\score{
|
||||
<<
|
||||
\new SemiStaffGroup {
|
||||
<<
|
||||
\new Staff = "I" \with {
|
||||
instrumentName = "I"
|
||||
shortInstrumentName = "I"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\numericTimeSignature \time 4/4
|
||||
\include "compact_sets_2/includes/part_I.ly"
|
||||
}
|
||||
\new Staff = "II" \with {
|
||||
instrumentName = "II"
|
||||
shortInstrumentName = "II"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef alto
|
||||
\include "compact_sets_2/includes/part_II.ly"
|
||||
}
|
||||
\new Staff = "III" \with {
|
||||
instrumentName = "III"
|
||||
shortInstrumentName = "III"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef bass
|
||||
\include "compact_sets_2/includes/part_III.ly"
|
||||
}
|
||||
>>
|
||||
}
|
||||
>>
|
||||
\layout{}
|
||||
%\midi{} %this creates a warning since custom staff is not defined for midi
|
||||
}
|
||||
878
lilypond/compact_sets_2/includes/part_I.ly
Normal file
878
lilypond/compact_sets_2/includes/part_I.ly
Normal file
|
|
@ -0,0 +1,878 @@
|
|||
{
|
||||
{ f'1^\markup { \pad-markup #0.2 "+14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 r8[ g'8^\markup { \pad-markup #0.2 "-31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ g'2 ~ }
|
||||
\bar "|"
|
||||
{ g'2 ~ g'8[ r8] f'4^\markup { \pad-markup #0.2 "+14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ r4 fis'2.^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'2. ~ fis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. r8[ f'8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 ~ f'8[ r8] fis'2^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'8[ r8] r2. }
|
||||
\bar "|"
|
||||
{ f'1^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2. r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ f'8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] ~ f'2 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 ~ f'8[ r8] f'2^\markup { \pad-markup #0.2 "+9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2 r2 }
|
||||
\bar "|"
|
||||
{ r8[ e'8^\markup { \pad-markup #0.2 "-42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ e'2. ~ }
|
||||
\bar "|"
|
||||
{ e'2 r8[ f'8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }}] ~ f'4 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ dis'8^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ dis'2. ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r8[ e'8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ e'2 ~ }
|
||||
\bar "|"
|
||||
{ e'2. r8[ fis'8^\markup { \pad-markup #0.2 "+10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 r8[ f'8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ f'2 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2 ~ f'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. r8[ e'8^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 }
|
||||
\bar "|"
|
||||
{ r2. dis'4^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ r8] d'4^\markup { \pad-markup #0.2 "+37"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 r4 r8[ cis'8^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ cis'4 ~ }
|
||||
\bar "|"
|
||||
{ cis'2. ~ cis'8[ r8] }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "+17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'2 r8[ dis'8^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r4 e'2^\markup { \pad-markup #0.2 "+29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 }
|
||||
\bar "|"
|
||||
{ r2 f'2^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ f'1^\markup { \pad-markup #0.2 "-40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 }
|
||||
\bar "|"
|
||||
{ r2 r8[ dis'8^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 f'2^\markup { \pad-markup #0.2 "-44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2 ~ f'8[ r8] fis'4^\markup { \pad-markup #0.2 "+11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 r8[ f'8^\markup { \pad-markup #0.2 "-44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ f'2 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2 r2 }
|
||||
\bar "|"
|
||||
{ r2 fis'2^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'8[ r8] f'2.^\markup { \pad-markup #0.2 "-44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2 ~ f'8[ r8] r8[ fis'8^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r8[ f'8^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ f'4 ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. ~ e'8[ r8] }
|
||||
\bar "|"
|
||||
{ d'1^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ e'8^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ e'4 ~ }
|
||||
\bar "|"
|
||||
{ e'2. r8[ d'8^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 }
|
||||
\bar "|"
|
||||
{ r2 e'2^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2 ~ e'8[ r8] d'4^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ dis'8^\markup { \pad-markup #0.2 "+46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }}] ~ dis'2. ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. ~ dis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. dis'4^\markup { \pad-markup #0.2 "+46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r8[ dis'8^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }}] ~ dis'2. ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] e'2^\markup { \pad-markup #0.2 "+17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 r2 }
|
||||
\bar "|"
|
||||
{ r8[ fis'8^\markup { \pad-markup #0.2 "-18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ fis'2. ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r8[ e'8^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ e'4 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. ~ e'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 f'2^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 }
|
||||
\bar "|"
|
||||
{ r8[ fis'8^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }}] ~ fis'2. ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 ~ fis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ f'1^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ r4 r8[ f'8^\markup { \pad-markup #0.2 "+46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ f'2 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'8[ r8] e'2.^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'8[ r8] r2 e'4^\markup { \pad-markup #0.2 "-32"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'8[ r8] f'2.^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 }
|
||||
\bar "|"
|
||||
{ r2. fis'4^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ g'8^\markup { \pad-markup #0.2 "-3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }}] ~ g'4 ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'8[ r8] f'2.^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'2. r8[ fis'8^\markup { \pad-markup #0.2 "-15"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'4 r4 f'2^\markup { \pad-markup #0.2 "-34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ f'8^\markup { \pad-markup #0.2 "-34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] ~ f'2. ~ }
|
||||
\bar "|"
|
||||
{ f'2 ~ f'8[ r8] e'4^\markup { \pad-markup #0.2 "-46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 f'2^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "+25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 e'2^\markup { \pad-markup #0.2 "+25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 ~ e'8[ r8] dis'4^\markup { \pad-markup #0.2 "-40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r2. }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "+25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. ~ e'8[ r8] }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 e'2^\markup { \pad-markup #0.2 "-6"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2. ~ e'8[ r8] }
|
||||
\bar "|"
|
||||
{ fis'1^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'8[ r8] r4 r8[ fis'8^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ fis'4 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r8[ f'8^\markup { \pad-markup #0.2 "-43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ f'4 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'8[ r8] r4 dis'2^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ r4 f'2.^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ e'8^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ e'4 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 r4 f'4^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'8[ r8] e'2.^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2 r8[ e'8^\markup { \pad-markup #0.2 "-42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ e'4 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'8[ r8] r2. }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'2 r8[ d'8^\markup { \pad-markup #0.2 "+46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ d'4 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 }
|
||||
\bar "|"
|
||||
{ r2. r8[ e'8^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. r4 }
|
||||
\bar "|"
|
||||
{ r4 e'2.^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'4 r4 r8[ d'8^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ d'4 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 ~ d'8[ r8] r4 r8[ d'8^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 ~ d'8[ r8] e'2^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 f'2.^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'2. r8[ dis'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'8[ r8] dis'2.^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. ~ dis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. r8[ dis'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'8[ r8] dis'2.^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ dis'8^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] ~ dis'2 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r8[ cis'8^\markup { \pad-markup #0.2 "+39"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ cis'2. ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r8[ c'8^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r4 cis'4^\markup { \pad-markup #0.2 "+3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "+37"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] d'4^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'2 r2 }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] f'2^\markup { \pad-markup #0.2 "-18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 ~ f'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 ~ e'8[ r8] r8[ d'8^\markup { \pad-markup #0.2 "+46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ d'1 }
|
||||
\bar "|"
|
||||
{ r8[ e'8^\markup { \pad-markup #0.2 "-30"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ e'2. ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 }
|
||||
\bar "|"
|
||||
{ r2 r8[ dis'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ r8] f'4^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'4 r8[ e'8^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ e'2 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 ~ e'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 e'2^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2. r8[ d'8^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 e'2.^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'4 ~ e'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ f'1^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'8[ r8] r4 e'2^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'2. r8[ dis'8^\markup { \pad-markup #0.2 "-31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] r4 r8[ e'8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 r8[ dis'8^\markup { \pad-markup #0.2 "-31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ e'1^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ e'4 ~ e'8[ r8] dis'2^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] r4 r8[ cis'8^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 }
|
||||
\bar "|"
|
||||
{ r8[ cis'8^\markup { \pad-markup #0.2 "-6"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ cis'2. ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r2 d'4^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 ~ d'8[ r8] r4 r8[ dis'8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r2 r8[ e'8^\markup { \pad-markup #0.2 "+17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'4 r8[ e'8^\markup { \pad-markup #0.2 "-36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }}] ~ e'2 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2. ~ e'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 dis'2^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 ~ dis'8[ r8] cis'2^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ d'8^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ d'2. ~ }
|
||||
\bar "|"
|
||||
{ d'2 r8[ cis'8^\markup { \pad-markup #0.2 "+33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }}] ~ cis'4 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2. ~ cis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r8[ dis'8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }}] ~ dis'2. ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r8[ d'8^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ d'2 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'2 r2 }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "+20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. ~ dis'8[ r8] }
|
||||
\bar "|"
|
||||
{ d'1^\markup { \pad-markup #0.2 "-35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'2. ~ d'8[ r8] }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 ~ dis'8[ r8] r8[ e'8^\markup { \pad-markup #0.2 "+49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 ~ e'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 e'2.^\markup { \pad-markup #0.2 "-4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'4 r2 r8[ e'8^\markup { \pad-markup #0.2 "-4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ e'1 ~ }
|
||||
\bar "|"
|
||||
{ e'2 r8[ dis'8^\markup { \pad-markup #0.2 "-1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r8[ f'8^\markup { \pad-markup #0.2 "-23"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }}] ~ f'2. ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 }
|
||||
\bar "|"
|
||||
{ r2 f'2^\markup { \pad-markup #0.2 "+30"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'2. ~ f'8[ r8] }
|
||||
\bar "|"
|
||||
{ g'1^\markup { \pad-markup #0.2 "-20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'1 ~ }
|
||||
\bar "|"
|
||||
{ g'4 r8[ f'8^\markup { \pad-markup #0.2 "+25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ f'2 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 fis'2^\markup { \pad-markup #0.2 "+37"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 r2 }
|
||||
\bar "|"
|
||||
{ fis'1^\markup { \pad-markup #0.2 "+37"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'1 ~ }
|
||||
\bar "|"
|
||||
{ fis'2 ~ fis'8[ r8] f'4^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 ~ }
|
||||
\bar "|"
|
||||
{ f'1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|."
|
||||
}
|
||||
878
lilypond/compact_sets_2/includes/part_II.ly
Normal file
878
lilypond/compact_sets_2/includes/part_II.ly
Normal file
|
|
@ -0,0 +1,878 @@
|
|||
{
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r4 d'2.^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'2. ~ d'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. r8[ dis'8^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. ~ dis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 r8[ d'8^\markup { \pad-markup #0.2 "-19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ d'4 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'8[ r8] r2. }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ cis'8^\markup { \pad-markup #0.2 "-31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'2. r8[ d'8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 ~ d'8[ r8] c'2^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. r4 }
|
||||
\bar "|"
|
||||
{ r8[ d'8^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ d'2. ~ }
|
||||
\bar "|"
|
||||
{ d'2 r8[ c'8^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ d'8^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ d'2. ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'2. r8[ c'8^\markup { \pad-markup #0.2 "+28"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 r8[ cis'8^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2 r2 }
|
||||
\bar "|"
|
||||
{ d'1^\markup { \pad-markup #0.2 "-7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'4 r8[ cis'8^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'8[ r8] b2.^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 r2 }
|
||||
\bar "|"
|
||||
{ r2 cis'2^\markup { \pad-markup #0.2 "-41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 }
|
||||
\bar "|"
|
||||
{ r8[ b8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ b2. ~ }
|
||||
\bar "|"
|
||||
{ b2 ~ b8[ r8] c'4^\markup { \pad-markup #0.2 "-25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r4 r8[ cis'8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ cis'4 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2 r8[ b8^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ b4 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b4 r4 b2^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 ~ b8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ b8^\markup { \pad-markup #0.2 "-22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ b2 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2. ~ b8[ r8] }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 r8[ d'8^\markup { \pad-markup #0.2 "-6"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ d'4 ~ }
|
||||
\bar "|"
|
||||
{ d'1 }
|
||||
\bar "|"
|
||||
{ r8[ cis'8^\markup { \pad-markup #0.2 "-26"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ cis'2. ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 ~ cis'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ b1^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b4 ~ b8[ r8] ais2^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2. r4 }
|
||||
\bar "|"
|
||||
{ r2 ais2^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ ais8^\markup { \pad-markup #0.2 "-46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ ais2. ~ }
|
||||
\bar "|"
|
||||
{ ais2 ~ ais8[ r8] b4^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 ~ b8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ c'8^\markup { \pad-markup #0.2 "+29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] b4^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 r2 }
|
||||
\bar "|"
|
||||
{ r2 b2^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 ~ b8[ r8] ais4^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 r8[ c'8^\markup { \pad-markup #0.2 "-38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ ais1^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2. ~ ais8[ r8] }
|
||||
\bar "|"
|
||||
{ r4 r8[ c'8^\markup { \pad-markup #0.2 "+3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ cis'1^\markup { \pad-markup #0.2 "-30"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'2 ~ cis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ b8^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ b4 ~ }
|
||||
\bar "|"
|
||||
{ b2. r8[ cis'8^\markup { \pad-markup #0.2 "-30"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'8[ r8] r4 b2^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b2 ~ b8[ r8] c'4^\markup { \pad-markup #0.2 "-28"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r8[ ais8^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ ais2 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 r8[ ais8^\markup { \pad-markup #0.2 "-5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ ais4 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2. ~ ais8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. ais4^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. r4 }
|
||||
\bar "|"
|
||||
{ r8[ b8^\markup { \pad-markup #0.2 "-20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ b2. ~ }
|
||||
\bar "|"
|
||||
{ b2 r8[ c'8^\markup { \pad-markup #0.2 "-1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r8[ ais8^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ ais4 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 r2 }
|
||||
\bar "|"
|
||||
{ b1^\markup { \pad-markup #0.2 "+11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b2 r8[ ais8^\markup { \pad-markup #0.2 "+44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ ais4 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2. r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ c'8^\markup { \pad-markup #0.2 "-5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ r4 r8[ c'8^\markup { \pad-markup #0.2 "-5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r8[ c'8^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r2 cis'4^\markup { \pad-markup #0.2 "+2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 ~ cis'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 r8[ c'8^\markup { \pad-markup #0.2 "+48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'8[ r8] d'2.^\markup { \pad-markup #0.2 "-1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'8[ r8] r4 dis'2^\markup { \pad-markup #0.2 "+11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ d'8^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ d'2. ~ }
|
||||
\bar "|"
|
||||
{ d'2 ~ d'8[ r8] c'4^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. r4 }
|
||||
\bar "|"
|
||||
{ r2 d'2^\markup { \pad-markup #0.2 "-6"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] cis'4^\markup { \pad-markup #0.2 "+9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r2. }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "-3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] b2^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ b2. ~ b8[ r8] }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 c'2^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'8[ r8] r2 b4^\markup { \pad-markup #0.2 "+10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b8[ r8] ais2.^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais2 r8[ b8^\markup { \pad-markup #0.2 "-26"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ b4 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 }
|
||||
\bar "|"
|
||||
{ r2 c'2^\markup { \pad-markup #0.2 "+29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r2 }
|
||||
\bar "|"
|
||||
{ r4 c'2.^\markup { \pad-markup #0.2 "+29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'8[ r8] cis'2.^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r2. }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "+15"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r8[ ais8^\markup { \pad-markup #0.2 "+50"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ ais2 ~ }
|
||||
\bar "|"
|
||||
{ ais2. r8[ ais8^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 ~ ais8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 ais2.^\markup { \pad-markup #0.2 "+50"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais4 r8[ c'8^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r8[ ais8^\markup { \pad-markup #0.2 "+50"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ ais4 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais4 r2 r8[ c'8^\markup { \pad-markup #0.2 "+5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] ais2^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ ais8^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ ais2. ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r2. r8[ ais8^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 ~ ais8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ b8^\markup { \pad-markup #0.2 "-36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ b2 ~ }
|
||||
\bar "|"
|
||||
{ b1 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] b2^\markup { \pad-markup #0.2 "+8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ b2. ~ b8[ r8] }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ ais1^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais4 r8[ b8^\markup { \pad-markup #0.2 "-28"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ b2 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 }
|
||||
\bar "|"
|
||||
{ r8[ c'8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ c'2. ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] cis'4^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2 ~ cis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ c'1^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ cis'1^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2. r8[ c'8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. ~ c'8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 r8[ cis'8^\markup { \pad-markup #0.2 "+49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↓" }}] ~ cis'4 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 }
|
||||
\bar "|"
|
||||
{ r4 r8[ cis'8^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r8[ cis'8^\markup { \pad-markup #0.2 "+26"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2 ~ cis'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 c'2^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 ~ c'8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 c'2.^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] b2^\markup { \pad-markup #0.2 "-5"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ b2. r8[ c'8^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r2 d'4^\markup { \pad-markup #0.2 "-38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 r8[ c'8^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ c'2 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2. r8[ cis'8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'4 r4 r8[ c'8^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 }
|
||||
\bar "|"
|
||||
{ r8[ b8^\markup { \pad-markup #0.2 "-17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ b2. ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b4 r2 r8[ a8^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a2 r8[ ais8^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }}] ~ ais4 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais4 ~ ais8[ r8] c'2^\markup { \pad-markup #0.2 "-8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'2. r8[ b8^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2 r4 r8[ b8^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b4 r8[ ais8^\markup { \pad-markup #0.2 "-39"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ ais2 ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ ais8^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ ais2. ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ a8^\markup { \pad-markup #0.2 "+15"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ a2. ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a4 r2 r8[ a8^\markup { \pad-markup #0.2 "+15"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a1 ~ }
|
||||
\bar "|"
|
||||
{ a2. ~ a8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 b2^\markup { \pad-markup #0.2 "-29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b2. r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ ais8^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ ais2 ~ }
|
||||
\bar "|"
|
||||
{ ais1 }
|
||||
\bar "|"
|
||||
{ r8[ b8^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ b2. ~ }
|
||||
\bar "|"
|
||||
{ b4 ~ b8[ r8] c'2^\markup { \pad-markup #0.2 "-18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'2 r8[ c'8^\markup { \pad-markup #0.2 "+36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 11↑" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 r8[ cis'8^\markup { \pad-markup #0.2 "-11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 3↑" }}] ~ cis'2 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'2 r2 }
|
||||
\bar "|"
|
||||
{ cis'1^\markup { \pad-markup #0.2 "-11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'2 r8[ b8^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ b4 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b8[ r8] r2 ais4^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais2. ~ ais8[ r8] }
|
||||
\bar "|"
|
||||
{ b1^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b4 ~ b8[ r8] r4 r8[ ais8^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais1 ~ }
|
||||
\bar "|"
|
||||
{ ais2 r8[ c'8^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ c'4 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'1 ~ }
|
||||
\bar "|"
|
||||
{ c'4 ~ c'8[ r8] r4 r8[ b8^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ b1 ~ }
|
||||
\bar "|"
|
||||
{ b4 r8[ b8^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }}] ~ b2 ~ }
|
||||
\bar "|"
|
||||
{ b2. r8[ cis'8^\markup { \pad-markup #0.2 "+39"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'1 ~ }
|
||||
\bar "|"
|
||||
{ cis'8[ r8] r2. }
|
||||
\bar "|"
|
||||
{ dis'1^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2 r2 }
|
||||
\bar "|"
|
||||
{ cis'1^\markup { \pad-markup #0.2 "+39"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'2 r8[ dis'8^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }}] ~ dis'4 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'2. ~ dis'8[ r8] }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ cis'1^\markup { \pad-markup #0.2 "+39"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ cis'2 ~ cis'8[ r8] d'4^\markup { \pad-markup #0.2 "+20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'1 ~ }
|
||||
\bar "|"
|
||||
{ d'4 r2 dis'4^\markup { \pad-markup #0.2 "+9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 ~ }
|
||||
\bar "|"
|
||||
{ dis'1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|."
|
||||
}
|
||||
878
lilypond/compact_sets_2/includes/part_III.ly
Normal file
878
lilypond/compact_sets_2/includes/part_III.ly
Normal file
|
|
@ -0,0 +1,878 @@
|
|||
{
|
||||
{ a,1^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,8[ r8] r8[ gis,8^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ gis,2 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] ais,4^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2. ~ ais,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. r8[ ais,8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,4 ~ ais,8[ r8] gis,2^\markup { \pad-markup #0.2 "+34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. ~ gis,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 r8[ ais,8^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ ais,4 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2 ~ ais,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ b,8^\markup { \pad-markup #0.2 "+4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ b,2 ~ }
|
||||
\bar "|"
|
||||
{ b,2. r8[ ais,8^\markup { \pad-markup #0.2 "+7"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,4 r8[ gis,8^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }}] ~ gis,2 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r8[ ais,8^\markup { \pad-markup #0.2 "-8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ ais,2 ~ }
|
||||
\bar "|"
|
||||
{ ais,2. r8[ a,8^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2. ~ a,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. ais,4^\markup { \pad-markup #0.2 "+28"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,8[ r8] gis,2.^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "-23"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,8[ r8] r4 r8[ gis,8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }}] ~ gis,4 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. ~ gis,8[ r8] }
|
||||
\bar "|"
|
||||
{ a,1^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ gis,8^\markup { \pad-markup #0.2 "+16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ gis,2 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "-8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ a,1^\markup { \pad-markup #0.2 "-43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a,4 ~ a,8[ r8] ais,2^\markup { \pad-markup #0.2 "-46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2. ~ ais,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 gis,2^\markup { \pad-markup #0.2 "-24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] ais,4^\markup { \pad-markup #0.2 "-46"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2 r2 }
|
||||
\bar "|"
|
||||
{ r2 a,2^\markup { \pad-markup #0.2 "-27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,8[ r8] g,2.^\markup { \pad-markup #0.2 "+18"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] gis,4^\markup { \pad-markup #0.2 "+42"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 r4 r8[ gis,8^\markup { \pad-markup #0.2 "-24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r4 r8[ fis,8^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ fis,2 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,8[ r8] r4 fis,2^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,4 r8[ g,8^\markup { \pad-markup #0.2 "+33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ g,2 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+17"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,2 r8[ a,8^\markup { \pad-markup #0.2 "-2"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ a,4 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 }
|
||||
\bar "|"
|
||||
{ r2. gis,4^\markup { \pad-markup #0.2 "+44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 ~ gis,8[ r8] g,2^\markup { \pad-markup #0.2 "+33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 r2 }
|
||||
\bar "|"
|
||||
{ r8[ g,8^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }}] ~ g,2. ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2. r4 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. ~ gis,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "+1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,2 r8[ a,8^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ a,4 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r8[ ais,8^\markup { \pad-markup #0.2 "-9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ ais,4 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2 r2 }
|
||||
\bar "|"
|
||||
{ r4 r8[ a,8^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ a,2 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2. r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ ais,8^\markup { \pad-markup #0.2 "-36"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ ais,2 ~ }
|
||||
\bar "|"
|
||||
{ ais,2 r8[ gis,8^\markup { \pad-markup #0.2 "-23"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ gis,4 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,8[ r8] fis,2.^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,8[ r8] gis,2.^\markup { \pad-markup #0.2 "-50"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. r4 }
|
||||
\bar "|"
|
||||
{ r2. g,4^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 ~ g,8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ gis,1^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,2. r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ gis,8^\markup { \pad-markup #0.2 "-50"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ gis,4 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. r8[ g,8^\markup { \pad-markup #0.2 "-3"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 ~ g,8[ r8] r2 }
|
||||
\bar "|"
|
||||
{ r8[ a,8^\markup { \pad-markup #0.2 "-48"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ a,2. ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2. r4 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "-13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,2. ~ g,8[ r8] }
|
||||
\bar "|"
|
||||
{ g,1^\markup { \pad-markup #0.2 "+40"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,2. r4 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "-44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "+11"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 ~ gis,8[ r8] ais,2^\markup { \pad-markup #0.2 "-24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2. r4 }
|
||||
\bar "|"
|
||||
{ r2 gis,2^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,2. ~ gis,8[ r8] }
|
||||
\bar "|"
|
||||
{ g,1^\markup { \pad-markup #0.2 "+9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 r2 gis,4^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r4 r8[ g,8^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ g,4 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,8[ r8] gis,2.^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r2 gis,2^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 g,2.^\markup { \pad-markup #0.2 "+31"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 r8[ gis,8^\markup { \pad-markup #0.2 "+43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ gis,4 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 ~ gis,8[ r8] r4 g,4^\markup { \pad-markup #0.2 "-22"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 r8[ f,8^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }}] ~ f,4 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,2 r8[ fis,8^\markup { \pad-markup #0.2 "-34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ fis,4 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,2. ~ fis,8[ r8] }
|
||||
\bar "|"
|
||||
{ r2. r8[ f,8^\markup { \pad-markup #0.2 "+13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,4 r8[ fis,8^\markup { \pad-markup #0.2 "+32"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ fis,2 ~ }
|
||||
\bar "|"
|
||||
{ fis,2. r8[ gis,8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2. r4 }
|
||||
\bar "|"
|
||||
{ r4 fis,2.^\markup { \pad-markup #0.2 "+32"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,4 r4 r8[ gis,8^\markup { \pad-markup #0.2 "+19"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ gis,4 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r8[ a,8^\markup { \pad-markup #0.2 "-15"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ a,2 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r8[ a,8^\markup { \pad-markup #0.2 "+38"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }}] ~ a,4 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,4 ~ a,8[ r8] r4 r8[ gis,8^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r8[ a,8^\markup { \pad-markup #0.2 "-1"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ a,2. ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r2 }
|
||||
\bar "|"
|
||||
{ r4 g,2.^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,2. r8[ fis,8^\markup { \pad-markup #0.2 "-34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,8[ r8] g,2.^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r2. r8[ fis,8^\markup { \pad-markup #0.2 "-34"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,8[ r8] g,2.^\markup { \pad-markup #0.2 "+21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ fis,8^\markup { \pad-markup #0.2 "+37"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ fis,2 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,4 ~ fis,8[ r8] gis,2^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ gis,1^\markup { \pad-markup #0.2 "+41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 r4 g,4^\markup { \pad-markup #0.2 "-14"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 ~ g,8[ r8] fis,2^\markup { \pad-markup #0.2 "+32"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 }
|
||||
\bar "|"
|
||||
{ r8[ f,8^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ f,2. ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,1 }
|
||||
\bar "|"
|
||||
{ r4 r8[ g,8^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ g,2 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] fis,4^\markup { \pad-markup #0.2 "+24"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,2. r4 }
|
||||
\bar "|"
|
||||
{ r2 gis,2^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,2. r8[ ais,8^\markup { \pad-markup #0.2 "-25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,2 ~ ais,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 gis,2.^\markup { \pad-markup #0.2 "+20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,4 ~ gis,8[ r8] a,2^\markup { \pad-markup #0.2 "-9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }} ~ }
|
||||
\bar "|"
|
||||
{ a,2. r8[ a,8^\markup { \pad-markup #0.2 "+44"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 }
|
||||
\bar "|"
|
||||
{ r2. gis,4^\markup { \pad-markup #0.2 "-21"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r8[ a,8^\markup { \pad-markup #0.2 "-9"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ a,2 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r2 }
|
||||
\bar "|"
|
||||
{ gis,1^\markup { \pad-markup #0.2 "+20"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,8[ r8] r4 g,2^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 r4 r8[ f,8^\markup { \pad-markup #0.2 "+0"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ f,4 ~ }
|
||||
\bar "|"
|
||||
{ f,1 }
|
||||
\bar "|"
|
||||
{ r8[ g,8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ g,2. ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 r2 r8[ g,8^\markup { \pad-markup #0.2 "-45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ f,1^\markup { \pad-markup #0.2 "-10"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,2. r8[ fis,8^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,2 r4 r8[ fis,8^\markup { \pad-markup #0.2 "+45"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }}] ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,4 r8[ gis,8^\markup { \pad-markup #0.2 "-4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↓" }}] ~ gis,2 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,8[ r8] r2 fis,4^\markup { \pad-markup #0.2 "+41"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "-35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 ~ gis,8[ r8] r4 r8[ g,8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,4 r2 r8[ f,8^\markup { \pad-markup #0.2 "+29"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ f,1 ~ }
|
||||
\bar "|"
|
||||
{ f,4 r8[ g,8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }}] ~ g,2 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r2 g,2^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "III"\normal-size-super " 1" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 r8[ gis,8^\markup { \pad-markup #0.2 "+49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ gis,2 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "-4"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r2. }
|
||||
\bar "|"
|
||||
{ r8[ g,8^\markup { \pad-markup #0.2 "-16"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 3↑" }}] ~ g,2. ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2. r4 }
|
||||
\bar "|"
|
||||
{ r8[ fis,8^\markup { \pad-markup #0.2 "-13"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↑" }}] ~ fis,2. ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,1 ~ }
|
||||
\bar "|"
|
||||
{ fis,2. r4 }
|
||||
\bar "|"
|
||||
{ f,1^\markup { \pad-markup #0.2 "-25"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ f,2 r8[ fis,8^\markup { \pad-markup #0.2 "-49"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ fis,4 ~ }
|
||||
\bar "|"
|
||||
{ fis,2. ~ fis,8[ r8] }
|
||||
\bar "|"
|
||||
{ g,1^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ g,1 }
|
||||
\bar "|"
|
||||
{ r2. a,4^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r4 r8[ g,8^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,1 ~ }
|
||||
\bar "|"
|
||||
{ g,2 ~ g,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r4 a,2.^\markup { \pad-markup #0.2 "-33"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 7↑" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,4 ~ a,8[ r8] r4 r8[ a,8^\markup { \pad-markup #0.2 "+47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }}] ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 }
|
||||
\bar "|"
|
||||
{ r8[ gis,8^\markup { \pad-markup #0.2 "-8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }}] ~ gis,2. ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,4 r4 fis,2^\markup { \pad-markup #0.2 "+27"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 11↓" }} ~ }
|
||||
\bar "|"
|
||||
{ fis,2. ~ fis,8[ r8] }
|
||||
\bar "|"
|
||||
{ gis,1^\markup { \pad-markup #0.2 "-8"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 r4 r8[ a,8^\markup { \pad-markup #0.2 "+12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2. r8[ gis,8^\markup { \pad-markup #0.2 "-43"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }}] ~ }
|
||||
\bar "|"
|
||||
{ gis,1 ~ }
|
||||
\bar "|"
|
||||
{ gis,2 ~ gis,8[ r8] r4 }
|
||||
\bar "|"
|
||||
{ r2 ais,2^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "II"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,1 ~ }
|
||||
\bar "|"
|
||||
{ ais,1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ a,1^\markup { \pad-markup #0.2 "-32"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 7↓" }} ~ }
|
||||
\bar "|"
|
||||
{ a,1 ~ }
|
||||
\bar "|"
|
||||
{ a,2 r2 }
|
||||
\bar "|"
|
||||
{ ais,1^\markup { \pad-markup #0.2 "+23"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↑" }} ~ }
|
||||
\bar "|"
|
||||
{ ais,2 r8[ b,8^\markup { \pad-markup #0.2 "+35"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 3↓" }}] ~ b,4 ~ }
|
||||
\bar "|"
|
||||
{ b,1 ~ }
|
||||
\bar "|"
|
||||
{ b,1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|"
|
||||
{ c1^\markup { \pad-markup #0.2 "-12"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 11↑" }} ~ }
|
||||
\bar "|"
|
||||
{ c1 ~ }
|
||||
\bar "|"
|
||||
{ c1 ~ }
|
||||
\bar "|"
|
||||
{ c1 ~ }
|
||||
\bar "|"
|
||||
{ c4 r2 d4^\markup { \pad-markup #0.2 "-47"}_\markup { \lower #3 \pad-markup #0.2 \concat{ "I"\normal-size-super " 5↓" }} ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 ~ }
|
||||
\bar "|"
|
||||
{ d1 }
|
||||
\bar "|"
|
||||
{ r1 }
|
||||
\bar "|."
|
||||
}
|
||||
149
lilypond/compact_sets_3.ly
Normal file
149
lilypond/compact_sets_3.ly
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
\version "2.24.1"
|
||||
|
||||
\paper {
|
||||
#(set-paper-size "a4" 'portrait)
|
||||
top-margin = 1 \cm
|
||||
bottom-margin = 1 \cm
|
||||
left-margin = 2 \cm
|
||||
ragged-bottom = ##t
|
||||
|
||||
top-system-spacing =
|
||||
#'((basic-distance . 15 )
|
||||
(minimum-distance . 15 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
system-system-spacing =
|
||||
#'((basic-distance . 30 )
|
||||
(minimum-distance . 30 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
last-bottom-spacing =
|
||||
#'((basic-distance . 10 )
|
||||
(minimum-distance . 10 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
%systems-per-page = 4
|
||||
first-page-number = 1
|
||||
print-first-page-number = ##t
|
||||
|
||||
print-page-number = ##t
|
||||
oddHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"rise/yitgadal"}}}}}}}
|
||||
evenHeaderMarkup = \markup { \fill-line { \line { \unless \on-first-page {\pad-markup #2 { \concat {\italic {"rise/yitgadal"}}}}}}}
|
||||
oddFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
evenFooterMarkup = \markup { \fill-line {
|
||||
\concat {
|
||||
"-"
|
||||
\fontsize #1.5
|
||||
\fromproperty #'page:page-number-string
|
||||
"-"}}}
|
||||
}
|
||||
|
||||
\header {
|
||||
title = \markup { \italic {"compact sets 3"}}
|
||||
subtitle = \markup { \italic {"rise/yitgadal"}}
|
||||
composer = \markup \right-column {"michael winter" "(cdmx and schloss solitude; 2024)"}
|
||||
poet = ""
|
||||
tagline = ""
|
||||
}
|
||||
|
||||
#(set-global-staff-size 11)
|
||||
|
||||
\layout {
|
||||
indent = 0.0\cm
|
||||
line-width = 17.5\cm
|
||||
ragged-last = ##f
|
||||
ragged-right = ##f
|
||||
|
||||
\context {
|
||||
\Score
|
||||
\override BarNumber.stencil = #(make-stencil-circler 0.1 0.25 ly:text-interface::print)
|
||||
\override Stem.stemlet-length = #0.75
|
||||
%proportionalNotationDuration = #(ly:make-moment 1/16)
|
||||
\remove "Separating_line_group_engraver"
|
||||
\override RehearsalMark.self-alignment-X = #-1
|
||||
\override RehearsalMark.Y-offset = #10
|
||||
\override RehearsalMark.X-offset = #-8
|
||||
%\override RehearsalMark.outside-staff-priority = #0
|
||||
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/32)
|
||||
%\override Stem.stencil = ##f
|
||||
%\override BarLine.stencil = ##f
|
||||
}
|
||||
\context {
|
||||
\Staff
|
||||
|
||||
\override VerticalAxisGroup.staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
|
||||
\override VerticalAxisGroup.default-staff-staff-spacing =
|
||||
#'((basic-distance . 20 )
|
||||
(minimum-distance . 20 )
|
||||
(padding . 0 )
|
||||
(stretchability . 0))
|
||||
\override TextScript.staff-padding = #2
|
||||
%\override TextScript.self-alignment-X = #0
|
||||
}
|
||||
\context {
|
||||
\StaffGroup
|
||||
\name "SemiStaffGroup"
|
||||
\consists "Span_bar_engraver"
|
||||
\override SpanBar.stencil =
|
||||
#(lambda (grob)
|
||||
(if (string=? (ly:grob-property grob 'glyph-name) "|")
|
||||
(set! (ly:grob-property grob 'glyph-name) ""))
|
||||
(ly:span-bar::print grob))
|
||||
}
|
||||
\context {
|
||||
\Score
|
||||
\accepts SemiStaffGroup
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
\score{
|
||||
<<
|
||||
\new SemiStaffGroup {
|
||||
<<
|
||||
\new Staff = "I" \with {
|
||||
instrumentName = "I"
|
||||
shortInstrumentName = "I"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\numericTimeSignature \time 4/4
|
||||
\include "compact_sets_3/includes/part_I.ly"
|
||||
}
|
||||
\new Staff = "II" \with {
|
||||
instrumentName = "II"
|
||||
shortInstrumentName = "II"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef alto
|
||||
\include "compact_sets_3/includes/part_II.ly"
|
||||
}
|
||||
\new Staff = "III" \with {
|
||||
instrumentName = "III"
|
||||
shortInstrumentName = "III"
|
||||
midiInstrument = #"clarinet"
|
||||
}
|
||||
{
|
||||
\clef bass
|
||||
\include "compact_sets_3/includes/part_III.ly"
|
||||
}
|
||||
>>
|
||||
}
|
||||
>>
|
||||
\layout{}
|
||||
%\midi{} %this creates a warning since custom staff is not defined for midi
|
||||
}
|
||||
1036
lilypond/compact_sets_3/includes/part_I.ly
Normal file
1036
lilypond/compact_sets_3/includes/part_I.ly
Normal file
File diff suppressed because it is too large
Load diff
1036
lilypond/compact_sets_3/includes/part_II.ly
Normal file
1036
lilypond/compact_sets_3/includes/part_II.ly
Normal file
File diff suppressed because it is too large
Load diff
1036
lilypond/compact_sets_3/includes/part_III.ly
Normal file
1036
lilypond/compact_sets_3/includes/part_III.ly
Normal file
File diff suppressed because it is too large
Load diff
229
rise_yitgadal.txt
Normal file
229
rise_yitgadal.txt
Normal file
|
|
@ -0,0 +1,229 @@
|
|||
[
|
||||
[[0, 0, 0, 0, 0], [-1, 0, -1, 0, 1], [3, 0, -1, 0, 0]],
|
||||
[[4, -1, -1, 0, 0], [-1, 0, -1, 0, 1], [3, 0, -1, 0, 0]],
|
||||
[[4, -1, -1, 0, 0], [6, 0, -1, 0, -1], [3, 0, -1, 0, 0]],
|
||||
[[4, -1, -1, 0, 0], [1, 1, -1, 0, 0], [3, 0, -1, 0, 0]],
|
||||
[[4, -1, -1, 0, 0], [5, 0, -2, 0, 0], [3, 0, -1, 0, 0]],
|
||||
[[4, -1, -1, 0, 0], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[2, 0, -2, 1, 0], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[3, -1, -2, 0, 1], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[10, -1, -2, 0, -1], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[1, 0, -2, 0, 1], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[8, 0, -2, 0, -1], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[3, 1, -2, 0, 0], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[9, -1, -2, -1, 0], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[7, 0, -3, 0, 0], [5, 0, -2, 0, 0], [7, -1, -2, 0, 0]],
|
||||
[[7, 0, -3, 0, 0], [5, 0, -2, 0, 0], [2, 0, -2, 0, 1]],
|
||||
[[7, 0, -3, 0, 0], [5, 0, -2, 0, 0], [9, 0, -2, 0, -1]],
|
||||
[[11, 0, -2, -1, -1], [5, 0, -2, 0, 0], [9, 0, -2, 0, -1]],
|
||||
[[2, 0, -2, 1, 0], [5, 0, -2, 0, 0], [9, 0, -2, 0, -1]],
|
||||
[[6, 0, -1, 0, -1], [5, 0, -2, 0, 0], [9, 0, -2, 0, -1]],
|
||||
[[10, -1, -2, 0, -1], [5, 0, -2, 0, 0], [9, 0, -2, 0, -1]],
|
||||
[[10, -1, -2, 0, -1], [12, 0, -2, 0, -2], [9, 0, -2, 0, -1]],
|
||||
[[5, 0, -2, 0, 0], [12, 0, -2, 0, -2], [9, 0, -2, 0, -1]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [9, 0, -2, 0, -1]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [4, 1, -2, 0, 0]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [8, 0, -3, 0, 0]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [7, 1, -2, -1, 0]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [3, 0, -1, 0, 0]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [11, 0, -2, -2, 0]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [2, 0, -2, 0, 1]],
|
||||
[[5, 0, -2, 0, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[4, 1, -1, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[9, -1, -2, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[4, 0, -2, -1, 1], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[11, 0, -2, -1, -1], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[6, 1, -2, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[10, 0, -3, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[2, 0, -1, -1, 1], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[9, 0, -1, -1, -1], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[9, -1, -2, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[8, 0, -1, -2, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[6, 1, -2, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[3, 0, 0, -1, 0], [8, 0, -2, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[3, 0, 0, -1, 0], [5, -1, 0, -1, 0], [6, 0, -1, -1, 0]],
|
||||
[[3, 0, 0, -1, 0], [0, 0, 0, -1, 1], [6, 0, -1, -1, 0]],
|
||||
[[3, 0, 0, -1, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[1, 1, -1, 0, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[7, -1, -1, -1, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[5, 0, -2, 0, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[9, 0, -1, -1, -1], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[4, 1, -1, -1, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[0, 0, 0, 0, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[4, -1, -1, 0, 0], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[-1, 0, -1, 0, 1], [3, 0, -1, 0, 0], [6, 0, -1, -1, 0]],
|
||||
[[-1, 0, -1, 0, 1], [3, 0, -1, 0, 0], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-6, 0, -1, 2, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [2, 0, -2, 0, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-2, -1, -1, 1, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-3, 0, 0, 0, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [0, 0, -1, 1, 0], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-4, 0, -1, 0, 2], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-1, 0, -2, 1, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [3, 0, -1, 0, 0], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-2, 1, -1, 0, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-6, 0, 0, 1, 1], [-3, 0, -1, 1, 1]],
|
||||
[[-1, 0, -1, 0, 1], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-5, -1, 0, 1, 1], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-6, 0, 1, 0, 1], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-3, 0, 0, 1, 0], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-2, -1, 0, 0, 1], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-7, 0, 0, 0, 2], [-6, 0, 0, 1, 1], [-3, 0, 0, 0, 1]],
|
||||
[[-7, 0, 0, 0, 2], [-10, 0, 0, 0, 3], [-3, 0, 0, 0, 1]],
|
||||
[[-7, 0, 0, 0, 2], [-10, 0, 0, 0, 3], [-8, 1, 0, 0, 2]],
|
||||
[[-12, 1, 0, 0, 3], [-10, 0, 0, 0, 3], [-8, 1, 0, 0, 2]],
|
||||
[[-12, 1, 0, 0, 3], [-10, 0, 0, 0, 3], [-13, 2, 0, 0, 3]],
|
||||
[[-12, 1, 0, 0, 3], [-10, 0, 0, 0, 3], [-9, 1, -1, 0, 3]],
|
||||
[[-8, 0, -1, 0, 3], [-10, 0, 0, 0, 3], [-9, 1, -1, 0, 3]],
|
||||
[[-8, 0, -1, 0, 3], [-10, 0, 0, 0, 3], [-5, 0, -2, 0, 3]],
|
||||
[[-8, 0, -1, 0, 3], [-3, 0, -3, 0, 3], [-5, 0, -2, 0, 3]],
|
||||
[[-4, -1, -2, 0, 3], [-3, 0, -3, 0, 3], [-5, 0, -2, 0, 3]],
|
||||
[[-4, -1, -2, 0, 3], [-6, -1, -1, 0, 3], [-5, 0, -2, 0, 3]],
|
||||
[[-4, -1, -2, 0, 3], [-6, -1, -1, 0, 3], [-8, -1, 0, 0, 3]],
|
||||
[[-7, -2, 0, 0, 3], [-6, -1, -1, 0, 3], [-8, -1, 0, 0, 3]],
|
||||
[[-9, -1, -1, 1, 3], [-6, -1, -1, 0, 3], [-8, -1, 0, 0, 3]],
|
||||
[[-10, 0, 0, 0, 3], [-6, -1, -1, 0, 3], [-8, -1, 0, 0, 3]],
|
||||
[[-10, 0, 0, 0, 3], [-7, 0, 0, -1, 3], [-8, -1, 0, 0, 3]],
|
||||
[[-10, 0, 0, 0, 3], [-7, 0, 0, -1, 3], [-13, 0, 0, 0, 4]],
|
||||
[[-10, 0, 0, 0, 3], [-16, 0, 0, 1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-19, 0, 0, 2, 4], [-16, 0, 0, 1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-19, 0, 1, 1, 4], [-16, 0, 0, 1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-15, -1, 0, 1, 4], [-16, 0, 0, 1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-16, 0, 0, 1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-12, 0, 1, 0, 3], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-17, 1, 1, 0, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-12, -1, 0, 0, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-13, 0, 1, -1, 4], [-13, 0, 0, 0, 4]],
|
||||
[[-16, 0, 1, 0, 4], [-10, 0, 0, 0, 3], [-13, 0, 0, 0, 4]],
|
||||
[[-13, 0, 0, 1, 3], [-10, 0, 0, 0, 3], [-13, 0, 0, 0, 4]],
|
||||
[[-17, 0, 0, 0, 5], [-10, 0, 0, 0, 3], [-13, 0, 0, 0, 4]],
|
||||
[[-17, 0, 0, 0, 5], [-14, 0, 0, -1, 5], [-13, 0, 0, 0, 4]],
|
||||
[[-17, 0, 0, 0, 5], [-14, 0, 0, -1, 5], [-17, 0, 0, -1, 6]],
|
||||
[[-16, 1, 0, -1, 5], [-14, 0, 0, -1, 5], [-17, 0, 0, -1, 6]],
|
||||
[[-15, 0, 0, -2, 6], [-14, 0, 0, -1, 5], [-17, 0, 0, -1, 6]],
|
||||
[[-15, 0, 0, -2, 6], [-13, -1, 0, -2, 6], [-17, 0, 0, -1, 6]],
|
||||
[[-15, 0, 0, -2, 6], [-13, -1, 0, -2, 6], [-16, -1, 0, -2, 7]],
|
||||
[[-10, -1, 0, -2, 5], [-13, -1, 0, -2, 6], [-16, -1, 0, -2, 7]],
|
||||
[[-14, -1, 0, -3, 7], [-13, -1, 0, -2, 6], [-16, -1, 0, -2, 7]],
|
||||
[[-11, -1, -1, -2, 6], [-13, -1, 0, -2, 6], [-16, -1, 0, -2, 7]],
|
||||
[[-19, -1, 1, -2, 7], [-13, -1, 0, -2, 6], [-16, -1, 0, -2, 7]],
|
||||
[[-19, -1, 1, -2, 7], [-18, 0, 0, -2, 7], [-16, -1, 0, -2, 7]],
|
||||
[[-21, 0, 0, -1, 7], [-18, 0, 0, -2, 7], [-16, -1, 0, -2, 7]],
|
||||
[[-20, -1, 0, -2, 8], [-18, 0, 0, -2, 7], [-16, -1, 0, -2, 7]],
|
||||
[[-20, -1, 0, -2, 8], [-14, -1, -1, -2, 7], [-16, -1, 0, -2, 7]],
|
||||
[[-20, -1, 0, -2, 8], [-22, -1, 1, -2, 8], [-16, -1, 0, -2, 7]],
|
||||
[[-20, -1, 0, -2, 8], [-18, -2, 0, -2, 8], [-16, -1, 0, -2, 7]],
|
||||
[[-20, -1, 0, -2, 8], [-18, -2, 0, -2, 8], [-21, 0, 0, -2, 8]],
|
||||
[[-20, -1, 0, -2, 8], [-18, -2, 0, -2, 8], [-17, -1, -1, -2, 8]],
|
||||
[[-16, -2, -1, -2, 8], [-18, -2, 0, -2, 8], [-17, -1, -1, -2, 8]],
|
||||
[[-16, -2, -1, -2, 8], [-18, -2, 0, -2, 8], [-20, -2, 1, -2, 8]],
|
||||
[[-19, -3, 1, -2, 8], [-18, -2, 0, -2, 8], [-20, -2, 1, -2, 8]],
|
||||
[[-19, -3, 1, -2, 8], [-21, -3, 2, -2, 8], [-20, -2, 1, -2, 8]],
|
||||
[[-19, -3, 1, -2, 8], [-17, -4, 1, -2, 8], [-20, -2, 1, -2, 8]],
|
||||
[[-19, -3, 1, -2, 8], [-17, -4, 1, -2, 8], [-14, -4, 1, -3, 8]],
|
||||
[[-15, -4, 0, -2, 8], [-17, -4, 1, -2, 8], [-14, -4, 1, -3, 8]],
|
||||
[[-11, -4, 1, -3, 7], [-17, -4, 1, -2, 8], [-14, -4, 1, -3, 8]],
|
||||
[[-11, -4, 1, -3, 7], [-13, -4, 2, -3, 7], [-14, -4, 1, -3, 8]],
|
||||
[[-11, -4, 1, -3, 7], [-9, -5, 1, -3, 7], [-14, -4, 1, -3, 8]],
|
||||
[[-11, -4, 1, -3, 7], [-9, -5, 1, -3, 7], [-7, -4, 1, -3, 6]],
|
||||
[[-11, -4, 1, -3, 7], [-9, -5, 1, -3, 7], [-12, -3, 1, -3, 7]],
|
||||
[[-11, -4, 1, -3, 7], [-9, -5, 1, -3, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-5, -6, 1, -4, 7], [-9, -5, 1, -3, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-7, -5, 0, -3, 7], [-9, -5, 1, -3, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-3, -5, 1, -4, 6], [-9, -5, 1, -3, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-8, -4, 1, -4, 7], [-9, -5, 1, -3, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-8, -4, 1, -4, 7], [-10, -4, 2, -4, 7], [-6, -5, 1, -4, 7]],
|
||||
[[-8, -4, 1, -4, 7], [-10, -4, 2, -4, 7], [-7, -4, 2, -5, 7]],
|
||||
[[-4, -4, 2, -5, 6], [-10, -4, 2, -4, 7], [-7, -4, 2, -5, 7]],
|
||||
[[-9, -3, 2, -5, 7], [-10, -4, 2, -4, 7], [-7, -4, 2, -5, 7]],
|
||||
[[-9, -3, 2, -5, 7], [-11, -3, 3, -5, 7], [-7, -4, 2, -5, 7]],
|
||||
[[-9, -3, 2, -5, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-10, -2, 3, -6, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-14, -3, 3, -4, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-6, -3, 2, -6, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-14, -3, 4, -5, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-10, -4, 3, -5, 7], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-15, -3, 3, -5, 8], [-11, -3, 3, -5, 7], [-8, -3, 3, -6, 7]],
|
||||
[[-15, -3, 3, -5, 8], [-11, -3, 3, -5, 7], [-17, -3, 3, -4, 8]],
|
||||
[[-15, -3, 3, -5, 8], [-16, -2, 3, -5, 8], [-17, -3, 3, -4, 8]],
|
||||
[[-15, -3, 3, -5, 8], [-12, -3, 2, -5, 8], [-17, -3, 3, -4, 8]],
|
||||
[[-15, -3, 3, -5, 8], [-12, -3, 3, -6, 8], [-17, -3, 3, -4, 8]],
|
||||
[[-15, -3, 3, -5, 8], [-12, -3, 3, -6, 8], [-9, -3, 2, -6, 8]],
|
||||
[[-7, -3, 2, -7, 8], [-12, -3, 3, -6, 8], [-9, -3, 2, -6, 8]],
|
||||
[[-7, -3, 2, -7, 8], [-4, -3, 2, -8, 8], [-9, -3, 2, -6, 8]],
|
||||
[[-7, -3, 2, -7, 8], [-4, -3, 2, -8, 8], [-1, -3, 1, -8, 8]],
|
||||
[[-7, -3, 2, -7, 8], [-4, -3, 2, -8, 8], [-9, -3, 3, -7, 8]],
|
||||
[[-7, -3, 2, -7, 8], [-4, -3, 2, -8, 8], [-1, -3, 2, -9, 8]],
|
||||
[[1, -3, 1, -9, 8], [-4, -3, 2, -8, 8], [-1, -3, 2, -9, 8]],
|
||||
[[1, -3, 1, -9, 8], [4, -3, 1, -10, 8], [-1, -3, 2, -9, 8]],
|
||||
[[1, -3, 2, -10, 8], [4, -3, 1, -10, 8], [-1, -3, 2, -9, 8]],
|
||||
[[1, -3, 2, -10, 8], [4, -3, 1, -10, 8], [7, -3, 1, -11, 8]],
|
||||
[[9, -3, 1, -12, 8], [4, -3, 1, -10, 8], [7, -3, 1, -11, 8]],
|
||||
[[0, -3, 1, -10, 9], [4, -3, 1, -10, 8], [7, -3, 1, -11, 8]],
|
||||
[[4, -3, 2, -11, 8], [4, -3, 1, -10, 8], [7, -3, 1, -11, 8]],
|
||||
[[8, -4, 1, -11, 8], [4, -3, 1, -10, 8], [7, -3, 1, -11, 8]],
|
||||
[[8, -4, 1, -11, 8], [5, -4, 1, -11, 9], [7, -3, 1, -11, 8]],
|
||||
[[8, -4, 1, -11, 8], [12, -4, 1, -11, 7], [7, -3, 1, -11, 8]],
|
||||
[[8, -4, 1, -11, 8], [12, -4, 1, -11, 7], [11, -4, 0, -11, 8]],
|
||||
[[8, -4, 1, -11, 8], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[12, -4, 2, -12, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[15, -4, 1, -11, 6], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[10, -3, 1, -11, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[14, -4, 0, -11, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[18, -4, 1, -12, 6], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[13, -3, 1, -12, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[17, -4, 0, -12, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[9, -4, 2, -11, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[13, -5, 1, -11, 7], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[8, -4, 1, -11, 8], [12, -4, 1, -11, 7], [15, -4, 1, -12, 7]],
|
||||
[[8, -4, 1, -11, 8], [12, -4, 1, -11, 7], [6, -4, 1, -10, 8]],
|
||||
[[8, -4, 1, -11, 8], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[-1, -4, 1, -9, 9], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[3, -4, 2, -10, 8], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[6, -4, 1, -9, 7], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[1, -3, 1, -9, 8], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[7, -5, 1, -10, 8], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[2, -4, 1, -10, 9], [3, -4, 1, -9, 8], [6, -4, 1, -10, 8]],
|
||||
[[2, -4, 1, -10, 9], [-1, -4, 1, -10, 10], [6, -4, 1, -10, 8]],
|
||||
[[2, -4, 1, -10, 9], [-1, -4, 1, -10, 10], [1, -3, 1, -10, 9]],
|
||||
[[2, -4, 1, -10, 9], [6, -4, 1, -10, 8], [1, -3, 1, -10, 9]],
|
||||
[[2, -4, 1, -10, 9], [6, -4, 1, -10, 8], [5, -4, 0, -10, 9]],
|
||||
[[2, -4, 1, -10, 9], [1, -3, 1, -10, 9], [5, -4, 0, -10, 9]],
|
||||
[[2, -4, 1, -10, 9], [1, -3, 1, -10, 9], [4, -3, 1, -11, 9]],
|
||||
[[2, -4, 1, -10, 9], [1, -3, 1, -10, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 1, -10, 9], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[-7, -4, 1, -8, 10], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[-3, -4, 2, -9, 9], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[0, -4, 1, -8, 8], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[-4, -4, 1, -9, 10], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[3, -4, 1, -9, 8], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[-2, -3, 1, -9, 9], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 0, -9, 9], [-3, -4, 1, -8, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 0, -9, 9], [5, -4, 0, -10, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 1, -10, 9], [5, -4, 0, -10, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 1, -10, 9], [5, -4, 1, -11, 9], [0, -4, 1, -9, 9]],
|
||||
[[2, -4, 1, -10, 9], [-4, -4, 1, -9, 10], [0, -4, 1, -9, 9]],
|
||||
[[-7, -4, 1, -8, 10], [-4, -4, 1, -9, 10], [0, -4, 1, -9, 9]],
|
||||
[[-3, -4, 2, -9, 9], [-4, -4, 1, -9, 10], [0, -4, 1, -9, 9]],
|
||||
[[1, -5, 1, -9, 9], [-4, -4, 1, -9, 10], [0, -4, 1, -9, 9]],
|
||||
[[1, -5, 1, -9, 9], [3, -4, 1, -9, 8], [0, -4, 1, -9, 9]],
|
||||
[[-4, -4, 1, -9, 10], [3, -4, 1, -9, 8], [0, -4, 1, -9, 9]],
|
||||
[[-4, -4, 1, -9, 10], [-2, -3, 1, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[3, -4, 1, -9, 8], [-2, -3, 1, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[3, -4, 1, -9, 8], [2, -4, 0, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[-2, -3, 1, -9, 9], [2, -4, 0, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[-2, -4, 0, -9, 10], [2, -4, 0, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[5, -4, 0, -9, 8], [2, -4, 0, -9, 9], [0, -4, 1, -9, 9]],
|
||||
[[5, -4, 0, -9, 8], [2, -4, 0, -9, 9], [4, -5, 0, -9, 9]],
|
||||
[[6, -5, 0, -10, 9], [2, -4, 0, -9, 9], [4, -5, 0, -9, 9]],
|
||||
[[6, -5, 0, -10, 9], [6, -5, -1, -9, 9], [4, -5, 0, -9, 9]],
|
||||
[[9, -5, -1, -9, 8], [6, -5, -1, -9, 9], [4, -5, 0, -9, 9]],
|
||||
[[9, -5, -1, -9, 8], [6, -5, -1, -9, 9], [8, -6, -1, -9, 9]],
|
||||
[[4, -4, -1, -9, 9], [6, -5, -1, -9, 9], [8, -6, -1, -9, 9]],
|
||||
[[10, -6, -1, -10, 9], [6, -5, -1, -9, 9], [8, -6, -1, -9, 9]],
|
||||
[[10, -6, -1, -10, 9], [12, -7, -1, -10, 9], [8, -6, -1, -9, 9]],
|
||||
[[10, -6, -1, -10, 9], [12, -7, -1, -10, 9], [9, -7, -1, -10, 10]],
|
||||
[[10, -6, -1, -10, 9], [12, -7, -1, -10, 9], [16, -7, -1, -10, 8]],
|
||||
[[14, -7, -2, -10, 9], [12, -7, -1, -10, 9], [16, -7, -1, -10, 8]],
|
||||
[[14, -7, -2, -10, 9], [12, -7, -1, -10, 9], [11, -6, -1, -10, 9]]
|
||||
]
|
||||
Loading…
Reference in a new issue