-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGresley_Music_all.ly
More file actions
1524 lines (1400 loc) · 36.2 KB
/
Gresley_Music_all.ly
File metadata and controls
1524 lines (1400 loc) · 36.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% Music of the Gresley MS - Lisa Koch, December 2017
% This single Lilypond file produces both period and modern notation
\version "2.18.2" % necessary for upgrading to future LilyPond versions.
#(set-default-paper-size "letter" 'landscape)
\paper {
print-all-headers = ##t
print-page-number = ##f
oddHeaderMarkup = \markup \null
evenHeaderMarkup = \markup \null
}
\header {
% Titles and subtitles are given in the Score sections below
% title = "Music of the Gresley Manuscript"
% subtitle = "Accademia della Danza, Barony of Carolingia, AS LII"
composer = " "
tagline = ##f
}
\layout {
indent = #0
ragged-right = ##t
\context { \Score
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/1)
}
}
MensStyle = {
\autoBeamOff
\stemUp
\override NoteHead.style = #'petrucci
\override Rest.style = #'mensural
\override Stem.neutral-direction = #up
\set Score.tempoHideNote = ##t
\set Score.timing = ##f
\textLengthOff
\override Staff.KeySignature.glyph-name-alist =
#alteration-mensural-glyph-name-alist
\set Staff.forceClef = ##f
\defineBarLine "|||||." #'("|||||.""|||||.""|||||.")
\defineBarLine "||||" #'("||||""||||""||||")
\defineBarLine ".|||||" #'(".|||||"".|||||"".|||||")
\defineBarLine ".|||" #'(".|||"".|||"".|||")
}
ModStyle = {
\set Score.tempoHideNote = ##t
\set Score.timing = ##f
\textLengthOff
\set Staff.forceClef = ##f
}
%%%%%%%%%%%%%% Music goes here %%%%%%%%%%%%%%%%%%%%%%%%
% -------- M1 -------------------------------------
MusicOneOne = \relative c {
\key c \major
\cadenzaOn
f1 f2^\markup {3} f1 f2
c1 c2 c1 c2 f1. a2 g1 f\breve
\bar "|" \noBreak
c'1 a1 d1 c1. a2 a1
f2 a2 g1 g\breve
\bar "|" \noBreak
c,1 c1 f1 f1
\bar "|" \noBreak
a1. b1. c1. c1 a1
\once \override NoteHead.color = #grey { b1^\markup { \teeny "[fades away]" } }
\once \override NoteHead.color = #(x11-color 'grey65) a1
\once \override NoteHead.color = #(x11-color 'grey75) g1
}
MusicOneTwo = \relative c {
\key c \major
\cadenzaOn
\textLengthOn
f1 c2 f1 c2 f1 g2 f1
\bar "|" \noBreak
a1. b1.
\override TextScript.extra-offset = #'(2 . 5)
c1.-\markup { \teeny " ut sup[ra] [illegible] " }
\bar "|" \noBreak
s2 s2
}
MusicOneThree = \relative c' {
\key c \major
\cadenzaOn
g1 g2 f1. e1 d2 c1 c2^\markup { "3" }
g'1 f2 e2 d1 c\breve
\bar "|" \noBreak
g'1 f2^\markup { "3." } e2 d1 c\breve
\bar "|" \noBreak
g'1. f1. e1. c1.
\bar "|" \noBreak
g'1 f2 e2 d1 c\breve
\bar "|" \noBreak
g'1
\once \override NoteHead.color = #grey { \once \override Stem.color = #grey f2^\markup { \teeny "[fades away]" } }
\once \override NoteHead.color = #(x11-color 'grey60) { \once \override Stem.color = #(x11-color 'grey60) e2 }
\once \override NoteHead.color = #(x11-color 'grey70) { \once \override Stem.color = #(x11-color 'grey70) d2 }
\once \override NoteHead.color = #(x11-color 'grey80) c\breve
}
% -------- M2 -------------------------------------
MusicTwoOne = \relative c {
\key c \major
\cadenzaOn
\textLengthOn
\xNotesOn
f1 g2 a1 e2 f1 g2 d1
\bar "|" \noBreak
f2 g1. e1 d2 e2 g2 e2 d2 c\breve
\xNotesOff
\bar "|" \noBreak
% next is a spacer to get the previous bar line to print
\skip 1
\override Staff.Clef.full-size-change = ##t
\set Staff.forceClef = ##t
e1 f2 g1 e2 f1 g2 e1
a1. g1.f1.e2 f2 g2
\once \override NoteHead.color = #(x11-color 'grey40) { \once \override Stem.color = #(x11-color 'grey40) e2 }
\once \override NoteHead.color = #(x11-color 'grey70) { d1. }
\once \override NoteHead.color = #(x11-color 'grey70) c\breve
\bar "||||"
}
MusicTwoTwo = \relative c {
\key c \major
\cadenzaOn
d1_\markup { "Alas þ[e] herd whill þat I co[]th dans" }
d2 e1 f2 g1 g2^\markup { 3 } g1 g2
c1 c2 c2 b1 a\breve
\bar "|" \noBreak
a1 a2 a1 a2
g1^\markup {".1."}
g2 g1 g2 a1 g2 f2 e1 d\breve
\bar "|" \noBreak
f1 g2 a1^\markup { "2." } g2 f2 e1 d\breve
\bar "|" \noBreak
\once \override TextScript.extra-offset = #'(0 . 2.5)
s4_\markup { \teeny "[blots]" }
}
MusicTwoThree = \relative c {
\key c \major
\cadenzaOn
\textLengthOn
d1 d2 e1^\markup { "2" } f2 g1 g2 g1 g2
c1 c2 c2 b1 a1.^\markup {".1."}
\override Staff.Clef.full-size-change = ##t
\clef "petrucci-c4"
a1 a2 a1 a2 g1 g2 g1 g2 a1 g2 f2 e2 d\breve
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/2)
\bar "|||||."
}
% modern version of MusicTwoThree to handle the mid-staff clef change
MusicTwoThreeModern = \relative c {
\key c \major
\cadenzaOn
\textLengthOn
d1 d2 e1^\markup { "2" } f2 g1 g2 g1 g2
c1 c2 c2 b1 a1.^\markup {".1."}
\set Staff.forceClef = ##t
\clef "treble_8"
a1 a2 a1 a2 g1 g2 g1 g2 a1 g2 f2 e2 d\breve
\override SpacingSpanner.base-shortest-duration = #(ly:make-moment 1/2)
\bar "|||||."
}
% -------- M3 -------------------------------------
MusicThreeOne = \relative c {
\key c \major
\cadenzaOn
f1. c1. d1. c1.
g'1. a1 g2 f2 e1 d1.
f1. c1. d1. c1.
g'1 f2 e2 d1 c\breve
\bar "|" \noBreak
e1. g1 a1.
e1. e2 g1 g2
\once \override NoteHead.color = #grey { g1^\markup { \teeny "[fades away]" } }
\once \override NoteHead.color = #(x11-color 'grey65) {\override Stem.color = #(x11-color 'grey65) g2 }
}
MusicThreeTwo = \relative c' {
\key c \major
\cadenzaOn
a\breve_\markup { \with-color #grey "[] gyng[er] de [] / 2" }
g\breve c2 b2 a2 g2 f\breve a\breve e\breve
c'2 b2 a2 g2 e\breve
\bar "|" \noBreak
g1 a2 b1 c2 b1 a2 g1 f1 e1 e2 e1. e1 e2 e1
\bar "|" \noBreak
f1 g2 a1 b2 a1 g2
\once \override NoteHead.color = #grey { f1^\markup { \teeny "[faded]" } }
\once \override NoteHead.color = #(x11-color 'grey65) b1
}
MusicThreeThree = \relative c' {
\key c \major
\cadenzaOn
g1_\markup { \with-color #grey "Thi[] [] day" }
g2 a2^\markup { 2 } g1. f2 e2 d2 c\breve
f1. g2 a1 a2 f2 e1 d\breve
g1 g2 a2 g1 g2 f2 e1 d1 c\breve
g'1. a2 g1 g2 e2 d1 c\breve
\bar "|" \noBreak
d1 e2 f1 d2
\once \override NoteHead.color = #grey { e1^\markup { \teeny "[faded]" } }
\once \override NoteHead.color = #(x11-color 'grey60) { \once \override Stem.color = #(x11-color 'grey60) f2 }
\once \override NoteHead.color = #(x11-color 'grey60) g1
}
% -------- M4 -------------------------------------
MusicFourOne = \relative c {
\key c \major
\cadenzaOn
f1_\markup { "Brestow is A mery town" }
f2 f2 g1 e2 d1 c1 c2
f1 f2 f2 g1 e2 d1 c1 c2^\markup { 3 }
f1 e2 f1 g2 a1 a2 a1.
d,1. g1 f2 g2 a2 g\breve
\bar "|"
c1 c2 a1 a2 c1 c2 s1
\bar "|"
}
MusicFourTwo = \relative c' {
\key c \major
\cadenzaOn
d1. c1 b2 a2 a1^\markup { "3" } g\breve
\bar "|" \noBreak
f1 f2 f1 e1 d\breve
\bar "|" \noBreak
a'1. g1 e2 f1. g\breve
\bar "|" \noBreak
a1. a1. a1. g\breve
\bar "|" \noBreak
a1. f1. g1. a1. b1. g1. f1.
\bar "|" \noBreak
g1. a1. g2 f1 d2 e1 d\breve
\bar "|."
}
MusicFourThree = \relative c' {
\key c \major
\cadenzaOn
c1 b2 a1 g2 c1 b2 a1 g2
c1. c1. e2 d1 c1
\bar "|"
e1. d1 e2 f1 g2
e1 d2 e1 e2 d1 f2 e2 d1 c1 c2 c1
\bar "|"
c1 b2 a1 g2 c1 b2 a1 g2 c1. c1. e2
\once \override NoteHead.color = #(x11-color 'grey50) d1
\once \override NoteHead.color = #(x11-color 'grey80) c1
}
% -------- M5 -------------------------------------
MusicFiveOne = \relative c {
\key c \major
\cadenzaOn
f1_\markup { "Trobyll me þe bordon" }
f2 g1 g2 a1 a2 a1 r1
f2 e1 d1.^\markup { 3 } e1 d1
f1 e2 f1 g2 a1 a2 a1 a2
d,1. g1 f2 g2 a1 g\breve
\bar "|"
d1 c1^\markup {".1."} d1 c1
\bar "|"
f1. g1. a1.^\markup { 3 } a1 a2
}
MusicFiveTwo = \relative c' {
\key c \major
\cadenzaOn
g2 f2 g\breve
\bar "|" \noBreak
d1 c1^\markup {".1."} d1 c1
\bar "|" \noBreak
f1. g1. a1. a1^\markup {"1."}
a2 g2 f2 g\breve
\bar "|" \noBreak
f1 g1 e1 f1^\markup { 2 } g1 g1 d1 g\breve
\bar "|" \noBreak
c1 b2 a2 g1 f\breve
\bar "|||||."
}
MusicFiveThree = \relative c' {
\key c \major
\cadenzaOn
c1. c1. f,1. f1.^\markup { 3 } g1 f2 e2 d1 c\breve
\bar "|" \noBreak
f1. a1. c1 d2 c2 b1 a1.^\markup { "2./" } b1. b1 b2 a\breve
\bar "|" \noBreak
e1 f1^\markup {"1."} d1 c\breve
\bar "|" \noBreak
e1. e1 e2 e1^\markup { 3 } e2 d1 d2 f2 e2 d1
\textLengthOn
\once \override TextScript.extra-offset = #'(2 . 0)
c\breve^\markup { \huge "." }
\bar "|" \noBreak
s4^\markup { \huge ",,.." }
\once \override TextScript.extra-offset = #'(-2 . 4)
s2-\markup { \fontsize #-2 "ut supra " } s2
\bar ".|||"
}
% -------- M6 -------------------------------------
MusicSixOne = \relative c' {
\key c \major
\cadenzaOn
c1 c2 a1 a2 g1 a2 f2 e1 d1^\markup { 3 } d2 d1.
f1 f2 d1 d2 g1 f2 e2 d1 c\breve
\bar "|" \noBreak
f1^\markup { 2. } f1 f1
\bar "|" \noBreak
f1 f1 f1
\bar "|" \noBreak
f1 f1 f1
\bar "|" \noBreak
g1 g1 g1 a\breve
\bar "|" \noBreak
f1 f1 f1 a1 a1 a1
}
MusicSixTwo = \relative c' {
\key f \major
\cadenzaOn
bes1 bes1 bes1 bes1 a1 a1 g\breve
\bar "|" \noBreak
a1 a1 a1 c1 c1 c1 f1 f1 f1 e1 e1 d\breve
\bar "|" \noBreak
d1 d1 d1 d1 d1 d1 d2 d2 d2 c1 a2 c2 d2 d2 c\breve
\bar "|||||."
}
MusicSixThree = \relative c {
\key c \major
\cadenzaOn
e1. d1 e2 f1 e2 d1 c2
e1. d1 e2 f1 d2 c\breve
\bar "|" \noBreak
e1 f2 g1. a1. g1.
c1. g1. a1.^\markup { \fontsize #-3 "smudge" } g1.
e1 f2 g1. a1. g1.
f1 e2 c2 d2 c\breve
\bar "|" \noBreak
e1 e2 d1 e2 f1 e2 d1 c2
e1 e2 d1 e2 f1 d2 c\breve
\bar "|"
}
% -------- M7 -------------------------------------
MusicSevenOne = \relative c {
\key c \major
\cadenzaOn
c1_\markup {Ly hartt is An old hors & may no lang[er] drawe |3|}
c2 d1 d2 c1 c1 c2^\markup {3}
e2 e2 e2 e2 d1 g1 a1 g1 f2 d2 e1 d\breve
\bar "|" \noBreak
e2 e2 e2 e2 e2 e2 e2 e2
f2 g1 f2 e2 d1 d\breve
\bar "|" \noBreak
c1 c2 d1 d2 c1 c1 c2 e2 e2 e2 e2 d1
}
MusicSevenTwo = \relative c' {
\key c \major
\cadenzaOn
g1 a1 g1 f2 d2 e1 d\breve
\bar "|" \noBreak
f1 a1 g1 f\breve
\bar "|" \noBreak
c1. f1. a1. g1 g2 f1 f2 c2 d1 c\breve
\bar ".|||||"
\skip 1 \skip 1 \skip 1 \skip 1
% some invisible stuff to get the staff to extend beyond the final bar lines
\stopStaff \once \override NoteHead.color = #white g'\longa
}
% define that odd key signature with the flat placed on F instead of B
wronglineflat = #`((0 . ,NATURAL) (1 . ,NATURAL) (2 . ,NATURAL)
(3 . ,FLAT) (4 . ,NATURAL) (5 . ,NATURAL) (6 . ,NATURAL))
MusicSevenThree = \relative c' {
\key c \wronglineflat
\cadenzaOn
e1. fes2 e2 d4 c4 b2 a2
c1 d2 fes2 e2 e2 d4 c4 b2 a2
\bar "|" \noBreak
c2. d4 e2 fes2 g1 e1 fes2 d2 e1 d\breve
\bar "|" \noBreak
e1 fes1 a1 g2 e1 fes2 g1. e1
\bar "|" \noBreak
e1. fes2 e2 d4 c4 b2 a2
c2 d2 fes2 e2 e2
\once \override NoteHead.color = #grey d\breve
}
%%%%%%%%%%%%%% end of music, page layouts below %%%%%%%%%%%%%%%%%%%
% We will print all the music pages twice -- once in Petrucci notation and once in Modern notation
% -------- M1 -------------------------------------
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicOneOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = "Music of the Gresley Manuscript"
subtitle = "Accademia della Danza, Barony of Carolingia, AS LII"
subsubtitle = "page 73"
piece = \markup { \with-color #grey \italic "[Illegible]" " P[er]nes a g[ ]" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicOneTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { \with-color #grey \italic "B[re]stein is a mary town" } }
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicOneThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "Eglamo[r]" }
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \small { \italic { Comment 1: } The first two staves of music have titles which are crossed out with horizontal strokes, which have been represented with greyed italic text. Brackets denote abbreviated text; empty brackets denote illegible text. }
\hspace #0
\wordwrap \small { \italic { Comment 2: } This page is badly damaged; toward the right edge, the ink fades to a faint shadow. On lines one and three, notes respresented in the palest shades of grey are increasingly conjectural. These lines have no final bar, and the manuscript may originally have contained additional notes.}
\hspace #0
} }
% -------- Page M2 -------------------------------------
\pageBreak
\score {
\new Staff \with { firstClef = ##f } <<
{ \clef "petrucci-c4" \MensStyle \MusicTwoOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 74"
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicTwoTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "P[er]nes i[n] gre | 2./" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicTwoThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\markup {
\column{
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \small { \italic { Comment: } The first staff has no title. The notes in the first half of the line, before the clef, have been crossed out with horizontal strokes; these notes are represented here with cross-shaped note heads. The notes fade away toward the right of the page, but this staff does end with definite final multiple bar lines.}
\hspace #0
}
}
% -------- Page M3 -------------------------------------
\pageBreak
\score {
\new Staff \with { firstClef = ##f } <<
{ \clef "petrucci-c4" \MensStyle \MusicThreeOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 75"
}
}
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicThreeTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\score {
\new Staff \with { firstClef = ##f } <<
{ \clef "petrucci-c4" \MensStyle \MusicThreeThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\hspace #0 \hspace #0 \hspace #0
\wordwrap \small { \italic { Comment: } This page is also badly damaged, especially toward the right edge, where the ink fades to a faint shadow. Notes represented in pale shades of grey are increasingly faded. The staves on this page have no final bar lines, and the manuscript may originally have contained additional notes at the ends of the lines.}
\hspace #0
} }
% -------- Page M4 -------------------------------------
\pageBreak
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicFourOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 76"
piece = \markup { "Esp[er]ans/ 3" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicFourTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicFourThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "Bayon / 2." }
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \small { \italic { Comment:} Some of the ink
at the far right margin of the page has been rubbed
off. Line 1 has a scratched area before an apparent final bar line which may have contained an additional note.
The last C note in line 3 is very faint and could be just a smudge.}
\hspace #0
} }
% -------- Page M5 -------------------------------------
\pageBreak
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicFiveOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 77"
piece = \markup { "Northhu[m]bland/3" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicFiveTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicFiveThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "Attendans" }
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \small { \italic { Comment 1:} Line 1 of the music
on this page contains a semibreve rest after the seventh note.}
\wordwrap \small { \italic { Comment 2:} The \italic{u} in the word over
the first line is written upside-down, but meaning is known.}
\wordwrap \small { \italic { Comment 3:} There are several
small dots and marks at the top of the bar line after the
final note of line three.}
\hspace #0
} }
% -------- Page M6 -------------------------------------
\pageBreak
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicSixOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 78"
piece = \markup { "Talbott 2./" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c4" \MensStyle \MusicSixTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicSixThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "Lybens distonys/" }
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
} }
% -------- Page M7 -------------------------------------
\pageBreak
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicSevenOne
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = "page 79"
piece = \markup { "Temp[er]ans 3/" }
}
}
\score {
\new Staff <<
{ \clef "petrucci-c5" \MensStyle \MusicSevenTwo
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
}
}
\score {
\new Staff <<
{ \clef "petrucci-c2" \MensStyle \MusicSevenThree
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f
subtitle = ##f
piece = \markup { "Laduches" }
}
}
\markup {
\column {
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \huge { \with-color #white "Spacer text" }
\hspace #0
\wordwrap \small { \italic { Comment 1: } The last note on the third staff is squeezed in at the edge of the page and partly scratched away.}
\hspace #0
\wordwrap \small { \italic { Comment 2: } The flat for the "key signature" on the 3rd staff is placed on F rather than B.}
\hspace #0
} }
%%% End of Petrucci notation pages, now the modern notation pages follow
% -------- M1 modern -------------------------------------
\score {
\new Staff <<
{ \clef "treble_8" \ModStyle \shiftDurations #2 #0 {\MusicOneOne}
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = "Music of the Gresley Manuscript (modern notation)"
subtitle = "Accademia della Danza, Barony of Carolingia, AS LII"
subsubtitle = "page 73"
piece = \markup { \with-color #grey \italic "[Illegible]" " P[er]nes a g[ ]" }
}
}
\score {
\new Staff <<
{ \clef "treble_8" \ModStyle \shiftDurations #2 #0 {\MusicOneTwo}
}
>>
\layout {
\context { \Staff
\remove "Time_signature_engraver"
}
}
\header {
title = ##f