-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustman.ly
3338 lines (3008 loc) · 76.1 KB
/
justman.ly
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
\version "2.18.2"
global = {
\accidentalStyle modern
}
% umpteenth score, gonna be great
% designate the title, composer and poet!
\header {
title = \markup { \fontsize #0.4 \bold "Loyal to the Group of Seventeen's Story: The Just Man" }
subtitle = \markup { "from" \italic "Citadel of the Autarch" }
poet = "Gene Wolfe"
composer = "Nathan Turczan, Tanner Pfeiffer, Allån Vasquez-Lopez, Noah Schwartz, Travis Ciortan"
}
%designate language
\language "english"
%english-qs-qf-tqs-tqf
\paper {
system-system-spacing.basic-distance = #8
score-system-spacing =
#'((basic-distance . 12)
(minimum-distance . 6)
(padding . 1)
(stretchability . 12))
}
Travisonenotes = {
\tempo 4 = 84
\mark \markup{ \box 1 }
\clef bass
\partial 4
g4
g2 a2 r2 b8 b8 b4 \tuplet 3/2 {r4 b a} \tuplet 3/2 {g g fs} e8 e8 e4 r8 e e fs g2 a8 a8 a4
r4 b \tuplet 3/2 { b b b } b4. b8 d'4 d' f'1 f'4 e' d' c' e' c' a2\fermata \bar "|."
}
Travisonewords = \lyricmode {
In times past, loy- al- ty to the cause of the pop- u- lace was to be found ev'- ry- where.
The will of the Group of Sev- en- teen was the will of ev'- ry- one.
}
Tanneronenotes = {
\clef bass
\partial 4
c4
c2 d2 r2 e8 e e4 \tuplet 3/2 {r4 e e } \tuplet 3/2 { b, b, b, } a,8 a, a,4 r8 a, a, a, a,2 d8 d d4
r4 d4 \tuplet 3/2 { ds ds ds } fs4. fs8 a4 a c'1 b4 b b b a g g\fermata( fs) \bar "|."
}
Tanneronewords = \lyricmode { In times past, loy- al- ty to the cause of the pop- u- lace was to be found ev'- ry- where.
The will of the Group of Sev- en- teen was the will of ev'- ry- one.
}
Nathanonenotes = {
\clef bass
\partial 4
f,4
f,2 g,2 r2 a,8 a, a,4 \tuplet 3/2 {r4 a, a, } \tuplet 3/2 { e, e, e, } d,8 d, d,4 r8 d, d, d, d,2 g,8 g, g,4
r4 g,4 \tuplet 3/2 { gs, gs, gs, } d4. d8 f4 f af1 g4 g g g f e d2\fermata \bar "|."
}
Nathanonewords = \lyricmode { In times past, loy- al- ty to the cause of the pop- u- lace was to be found ev'- ry- where.
The will of the Group of Sev- en- teen was the will of ev'- ry- one.
}
Allánonenotes = {
\mark \markup{ \box 1 }
\clef bass
\cadenzaOn
\omit Stem
g2 a4 bf4 c'4 d'2 \bar "|."
}
Allánonewords = \lyricmode { Once up- on a time… }
%-----------------------------------------------------------------------------------------------------------------------------
Travistwonotes = {
\tempo 4 = 96
\mark \markup{ \box 2 }
\clef bass
\partial 4
r4 r1 r1
r2. r2. r2 r8 bf8
\time 5/8
bf8 g8 a4 g8
\time 4/4
bf a c'4 r4 r8
c'8 c' bf bf af af4 r8 bf8 af4 g4 r2
\clef treble
\tempo 4 = 144
\transpose df f { af'4^\markup "hissed, a threat" af'4 af'2 af'4 af'4 af'2
\time 3/2
af'2 af'2 af'2 af'1
af'4 af'4
\time 4/4
af'2 af'4 af'4 af'2 af'4 af'4
\time 3/2
af'2 af'1
\bar "|."
}
}
Travistwowords = \lyricmode {and let them look for i- dle land.
Let ev'- ry- one they meet di- rect them.
It is bet- ter to walk a thou- sand leagues than to sit in the House of Star- va- tion. }
Tannertwonotes = {
\clef bass
\partial 4
r4 r1 r1
r4 d8 e fs4
\tuplet 4/3 {fs8 d d d e e e e}
c8 c d4 r8 g8
\time 5/8
fs8 e8 d4 e8
\time 4/4
fs g a4 r4 r8
a8 a g g f f4 r8 g8 f4 e4 r2
\transpose df f { f4^\markup "sung, lamenting" f4 f2 e4 e4 e2
\time 3/2
f2 f2 g2 g1
f4 g4
\time 4/4
af2 g4 f4 e2 f4 e4
\time 3/2
df2 c1
\bar "|."
}
}
Tannertwowords = \lyricmode { let him band to- geth- er with oth- ers who are i- dle too, and let them look for i- dle land.
Let ev'- ry- one they meet di- rect them.
It is bet- ter to walk a thou- sand leagues than to sit in the House of Star- va- tion. }
Nathantwonotes = {
\clef bass
\partial 4
d4 \tuplet 3/2 {e4 d c} d4 g,
r8 e8 d8 c8 d4 g,4
\time 3/4
r4 bf,8 c d4
\tuplet 4/3 {d8 bf, bf, bf, c c c c}
a,8 a, bf,4 r8 c8
\time 5/8
bf,8 a,8 g,4 a,8
\time 4/4
bf, c d4 r4 r8
d8 d c c c c4 r8 c8 c4 c4 r2
f,4^\markup "vocal fry, starved" f,4 f,2 f,4 f,4 f,2
\time 3/2
f,2 f,2 f,2 f,1
f,4 f,4
\time 4/4
f,2 f,4 f,4 f,2 f,4 f,4
\time 3/2
f,2 f,1
\bar "|."
}
Nathantwowords = \lyricmode { Let no one be i- dle. If one is i- dle,
let him band to- geth- er with oth- ers who are i- dle too, and let them look for i- dle land.
Let ev'- ry- one they meet di- rect them.
It is bet- ter to walk a thou- sand leagues than to sit in the House of Star- va- tion.
}
Allántwonotes = {
\mark \markup{ \box 2 }
\cadenzaOn
\omit Stem
\clef bass
c'4 c' c' c' c' d'2 e'4 d' e' d' c' a \bar "" \break
g e g a g a d' c' \bar "|."
}
Allántwowords = \lyricmode { There was a re- mote farm worked in part- ner- ship by peo- ple who were not re- lat- ed. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisthreenotes = {
\tempo 4 = 156
\mark \markup{ \box 3 }
\clef bass
bf2. g4 d'2 r2 r1 r1 r1 r1 r1
g4 g4 a2
a8 b c' d' e' c' a4 \bar "|."
}
Travisthreewords = \lyricmode {One is strong
Which is best?
He who serves the pop- u- lace. }
Tannerthreenotes = {
\clef bass
r1 r2 r4 d4 g2 a2 bf4 g4 g2 r1 r1 r1
d4 d4 e2
f8 g af bf c' af f4 \bar "|."
}
Tannerthreewords = \lyricmode { an- oth- er beau- ti- ful
Which is best?
He who serves the pop- u- lace.}
Nathanthreenotes = {
\clef bass
r1 r1 r1 r2 r4 d4 ef2. d4 df bf, d bf, g, g,2.
bf,4 bf,4 df2
d8 e f g a f d4 \bar "|."
}
Nathanthreewords = \lyricmode { a third a cun- ning ar- tif- i- cer.
Which is best?
He who serves the pop- u- lace.}
Allánthreenotes = {
\mark \markup{ \box 3 }
\clef bass
\cadenzaOn
\omit Stem
c'4 d' e'2 d'4 c' b2 a2 \bar "|."
}
Allánthreewords = \lyricmode { On this farm lived a good man. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisfournotes = {
\tempo 4 = 192
\mark \markup{ \box 4 }
\clef bass
\partial 2
a4 a4 a2 a4 a4 a4 a4 a4 a4 c'2 c'4 d'4~ d'8 d'8 d' e'~ e'4 r4 r2
a4 a4 a2 a4 a4 a4 a4 a4 a4 c'2 c'4 d'4~ d'8 d'8 d' e'~ e'4 r4 r2
a4 a a2 a2 b2 r2 r2
a2 b2~ b4 b4~ b1 \bar "|."
}
Travisfourwords = \lyricmode { Let the work be di- vid- ed by a wise di- vid- er of work.
Let the food be di- vid- ed by a just di- vid- er of food.
Let the pigs grow fat. Let rats starve.
}
Tannerfournotes = {
\clef bass
\partial 2
a4 a4 a2 a4 a4 a4 a4 a4 a4 a2 a4 c'4~ c'8 c'8 c' d'~ d'4 r4 r2
a4 a4 a2 a4 a4 a4 a4 a4 a4 a2 a4 c'4~ c'8 c'8 c' d'~ d'4 r4 r2
a4 a a2 a2 a2 r2 r2
a2 a2~ a4 a4~ a1 \bar "|."
}
Tannerfourwords = \lyricmode { Let the work be di- vid- ed by a wise di- vid- er of work.
Let the food be di- vid- ed by a just di- vid- er of food.
Let the pigs grow fat. Let rats starve.
}
Nathanfournotes = {
\clef bass
\partial 2
a4 a4 a2 a4 a4 g4 g4 g4 g4 g2 g4 a4~ a8 a8 a c'~ c'4 r4 r2
a4 a4 a2 a4 a4 g4 g4 g4 g4 g2 g4 a4~ a8 a8 a c'~ c'4 r4 r2
a4 a g2 g2 g2 r2 r2
a2 a2~ a4 gs4~ gs1 \bar "|."
}
Nathanfourwords = \lyricmode { Let the work be di- vid- ed by a wise di- vid- er of work.
Let the food be di- vid- ed by a just di- vid- er of food.
Let the pigs grow fat. Let rats starve.
}
Allánfournotes = {
\mark \markup{ \box 4 }
\clef bass
\cadenzaOn
\omit Stem
a4 b c' b a a gs gs a \bar "|."
}
Allánfourwords = \lyricmode { The oth- ers cheat- ed him of his share. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisfivenotes = {
\mark \markup{ \box 5 }
\tempo 4 = 192
\clef bass
\time 4/4
\partial 4 a4 a2 a \tuplet 3/2 {a2 a a} \tuplet 3/2 {g2 g g} f2 r2 r2 r4 e4 ds2 e2~ e4 ds cs ds4 e1 \time 5/4 e2. e4 e4 \time 4/4 e2 e2 e1 \bar "|."
}
Travisfivewords = \lyricmode {The peo- ple meet- ing in coun- sel may judge, but no one is to re- ceive more than a hun- dred blows. }
Tannerfivenotes = {
\clef bass
\time 4/4
\partial 4 a4 a2 a \tuplet 3/2 {g2 f e} \tuplet 3/2 {d2 d d} c2 r2 r2 r4 c4 b,2 c2~ c4 b, a, b,4 c1 \time 5/4 b,2. b,4 b,4 \time 4/4 b,2 b,2 b,1 \bar "|."
}
Tannerfivewords = \lyricmode { The peo- ple meet- ing in coun- sel may judge, but no one is to re- ceive more than a hun- dred blows. }
Nathanfivenotes = {
\clef bass
\time 4/4
\partial 4 a4 g2 f \tuplet 3/2 {e2 d c} \tuplet 3/2 {b,2 b, b,} a,2 r2 r2 r4 a,4 a,2 b,2~ b,4 a, g, a,4 b,1 \time 5/4 e,2. e,4 e,4 \time 4/4 e,2 e,2 e,1 \bar "|."
}
Nathanfivewords = \lyricmode { The peo- ple meet- ing in coun- sel may judge, but no one is to re- ceive more than a hun- dred blows. }
Allánfivenotes = {
\mark \markup{ \box 5 }
\clef treble
\time 4/4
\cadenzaOn
\omit Stem
e'4 ds' fs' r4 a b c' b \bar "|."
}
Allánfivewords = \lyricmode { He com- plained, and they beat him. }
%-----------------------------------------------------------------------------------------------------------------------------
Travissixnotes = {
\mark \markup{ \box 6 }
\tempo 4 = 120
\clef bass
\time 3/4
b4 e fs
\time2/4
g2
\time 3/4
a4 fs2
\time 2/4
r2
\time 3/4
r2.
b4 e fs g4 g4 a4 fs2.
\time 2/4
r2
\time 3/4
r2.
\time 4/4
a4 b cs' d' e'2. cs'4 a4 fs d fs g1 \bar "|."
}
Travissixwords = \lyricmode { How are the hands nour- ished?
How does the blood reach the hands?
If the veins are closed, the hands will rot a- way. }
Tannersixnotes = {
\clef bass
\time 3/4
r2.
\time2/4
r2
\time 3/4
r2.
\time 2/4
fs4 a
\time 3/4
b2.
r2.
r2.
r2.
\time 2/4
fs4 a
\time 3/4
b2.
\time 4/4
e4 fs g a b2. a4 fs4 d b, d e1 \bar "|."
}
Tannersixwords = \lyricmode {
By the blood.
By the veins.
If the veins are closed, the hands will rot a- way. }
Nathansixnotes = {
\clef bass
\time 3/4
r2.
\time2/4
r2
\time 3/4
r2.
\time 2/4
b,4 d
\time 3/4
e2.
r2.
r2.
r2.
\time 2/4
b,4 d
\time 3/4
e2.
\time 4/4
cs4 d e fs g2. g4 fs4 e d cs d1 \bar "|."
}
Nathansixwords = \lyricmode {
By the blood.
By the veins.
If the veins are closed, the hands will rot a- way. }
Allánsixnotes = {
\mark \markup{ \box 6 }
\clef bass
\cadenzaOn
\omit Stem
a4 c' d' d'2 c'4 e' d' c' a \bar "|."
}
Allánsixwords = \lyricmode { He left that farm and took to the roads. }
%-----------------------------------------------------------------------------------------------------------------------------
Travissevennotes = {
\mark \markup{ \box 7 }
\tempo 4 = 120
\time 5/4
\clef bass
\partial 2
a4 a
b2
b4 c' c'
\time 4/4
d'2 c' r2 c'2 c'4 c' b b b a2 r2.
\bar "|."
}
Travissevenwords = \lyricmode {Where the Group of Sev- en- teen sit, there fi- nal jus- tice is done. }
Tannersevennotes = {
\time 5/4
\clef bass
\partial 2
d4 d
e2
e4 fs fs
\time 4/4
gs2 fs r2 g2
\time 5/4
g4 g fs fs fs e2 r2.
\bar "|."
}
Tannersevenwords = \lyricmode { Where the Group of Sev- en- teen sit, there fi- nal jus- tice is done. }
Nathansevennotes = {
\time 5/4
\clef bass
\partial 2
a,4 a,
a,2
a,4 a, a,
\time 4/4
a,2 a, r2 a,2 a,4 a, a, a, a, a,2 r2.
\bar "|."
}
Nathansevenwords = \lyricmode { Where the Group of Sev- en- teen sit, there fi- nal jus- tice is done. }
Allánsevennotes = {
\mark \markup{ \box 7 }
\clef treble
\cadenzaOn
\omit Stem
a4 b cs' d' cs' b a r4 cs' d' e'2 fs'4 e' d' cs' d' e' f' d' \bar "|."
}
Allánsevenwords = \lyricmode { He went to the cap- i- tal and com- plained of the way he had been treat- ed. }
%-----------------------------------------------------------------------------------------------------------------------------
Traviseightnotes = {
\mark \markup{ \box 8 }
\tempo 4 = 120
\clef bass
\time 5/4
d'4 e' fs' fs'2 fs'4 e' e' d' d'
\time 3/4
cs'2.
d'4 d' cs'
\time 5/4
cs'2 d'2 b4 b2. a4 gs g2 fs2.
\bar "|."
}
Traviseightwords = \lyricmode {Let there be clean wa- ter for those who toil.
Let there be hot food for them and a clean bed. }
Tannereightnotes = {
\clef bass
\time 5/4
a4 a a a2 fs4 g fs fs g
\time 3/4
e2.
fs4 gs gs
\time 5/4
fs2 fs2 e4 d4( cs2) cs8( d8) b,4 cs2 a,2.
\bar "|."
}
Tannereightwords = \lyricmode { Let there be clean wa- ter for those who toil.
Let there be hot food for them and a clean bed. }
Nathaneightnotes = {
\clef bass
\time 5/4
fs4 e d d2 b,4 cs cs b, b,
\time 3/4
a,2.
cs4 b, b,
\time 5/4
a,2 a,2 gs,4 gs,2. fs,4 e, e,2 d,2.
\bar "|."
}
Nathaneightwords = \lyricmode { Let there be clean wa- ter for those who toil.
Let there be hot food for them and a clean bed. }
Alláneightnotes = {
\mark \markup{ \box 8 }
\clef bass
\cadenzaOn
\omit Stem
c'4 a g e g a2
\bar "" \break
d2 a4 bf a g fs g a2 g4 \bar "|."
}
Alláneightwords = \lyricmode { He came back to the farm, tired and hun- gry a- fter his jour- ney. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisninenotes = {
\mark \markup{ \box 9 }
\tempo 4 = 192
\clef bass
ds2 e2~ e4 ds cs ds4 e1 \time 5/4 e2. e4 e4 \time 4/4 e2 e2 e1 \bar "|."
}
Travisninewords = \lyricmode { No one is to re- ceive more than a hun- dred blows. }
Tannerninenotes = {
\clef bass
b,2 c2~ c4 b, a, b,4 c1 \time 5/4 b,2. b,4 b,4 \time 4/4 b,2 b,2 b,1 \bar "|."
}
Tannerninewords = \lyricmode { No one is to re- ceive more than a hun- dred blows. }
Nathanninenotes = {
\clef bass
a,2 b,2~ b,4 a, g, a,4 b,1 \time 5/4 e,2. e,4 e,4 \time 4/4 e,2 e,2 e,1 \bar "|."
}
Nathanninewords = \lyricmode { No one is to re- ceive more than a hun- dred blows. }
Allánninenotes = {
\mark \markup{ \box 9 }
\clef bass
\cadenzaOn
\omit Stem
fs4 g c b e \bar "|."
}
Allánninewords = \lyricmode { They beat him a- gain. }
%-----------------------------------------------------------------------------------------------------------------------------
Travistennotes = {
\mark \markup{ \box 10 }
\tempo 4 = 144
\clef treble
\partial 4
f'4 f'2 d'4 ef' f'2 r4 f'4 ef' d' c' bf c'2 r4 d'4 d'2 c'4 r4
\time 3/4
d'( ef') ef'
\clef bass
df'( c') c' b2 cs'4 d'2 r4 cs'( d') b
\time 4/4
b4( cs') cs'4 r4
\time 3/4
cs'4 cs'( d') a a2
\time 4/4
b2 r4
\transpose c fs, {
e'4
e'2 f'2
f'4 e'4
r2
\tuplet 3/2{ e'2 f'2 f'2 }
d'2 e'2
e'4 d'4
r2
}
\bar "|."
}
Travistenwords = \lyricmode { Be- hind ev'- ry- thing some fur- ther thing is found, for- ev- er;
thus the tree be- hind the bird, stone be- neath soil, the sun be- hind Urth.
Be- hind our ef- forts, let there be found our ef- forts. }
Tannertennotes = {
\clef bass
\partial 4
bf4 c'2 bf4 bf4 bf2 r4 g af f f f f2 r4 f4 g2 af4 r4
\time 3/4
g2 f4 ef2 ef4 e2 e4 fs2 r4 fs2 e4
\time 4/4
e2 e4 r4
\time 3/4
fs4 fs2 e4 e( ds) ds( cs)
r4
\transpose c fs, {
g4
a2 a2
g4 g4
r2
\tuplet 3/2{ a2 a2 g2 }
g2 g2
a4 b4
r2
}
\bar "|."
}
Tannertenwords = \lyricmode { Be- hind ev'- ry- thing some fur- ther thing is found, for- ev- er;
thus the tree be- hind the bird, stone be- neath soil, the sun be- hind Urth.
Be- hind our ef- forts, let there be found our ef- forts. }
Nathantennotes = {
\clef bass
\partial 4
d4 f2 f4 ef4 d2 r4 c4 c bf, a, bf, a,2 r4
bf,4 bf,2 af,4 r4
\time 3/4
bf,2 bf,4 bf,2 af,4 af,4( a,4) a,4 d2 r4 d2 a,4
\time 4/4
a,2 a,4 r4
\time 3/4
d4 d2
c4 c( b,)
b,( fs,) r4
\transpose c fs, {
c4
f2 f2
c4 c4
r2
\tuplet 3/2{ f2 f2 c2 }
c2 c2
f4 g4
r2
}
\bar "|."
}
Nathantenwords = \lyricmode { Be- hind ev'- ry- thing some fur- ther thing is found, for- ev- er;
thus the tree be- hind the bird, stone be- neath soil, the sun be- hind Urth.
Be- hind our ef- forts, let there be found our ef- forts. }
Allántennotes = {
\mark \markup{ \box 10 }
\clef bass
\cadenzaOn
\omit Stem
\transpose c g {c4 a2 g f4 e2 c4 d4} r4
\bar "" \break
g4 e g a2 g4 fs2 d4 e fs g fs e d2 \bar "|."
}
Allántenwords = \lyricmode { The just man did not give up.
He left the farm a- gain to walk to the cap- i- tal. }
%-----------------------------------------------------------------------------------------------------------------------------
Traviselevennotes = {
\mark \markup{ \box 11 }
\tempo 4 = 108
\time 3/4
\clef bass
\partial 4
r4
r2.
\time 5/4
r2. r2
\time 4/4
af2 r4 af4
af4 gf2 gf4
gf f r2
\time 5/4
r2. r2
\time 4/4
r2 g4 g4
fs2 a4 a
b a r2
df'2 r4 df'4
ef'2 ff'2
ef'4\tenuto ef'4\tenuto r2
\time 3/4
r2.^\markup { \italic molto \italic rit. }
\time 4/4
ff'1^\markup { \italic a \italic tempo }
ef'1
\time 2/4
df'4 df'4
\time 4/4
ds'2 r4 e'8( g'8)
g'2 f'4.( ef'8)
\time 3/4
d'2 c'4
\time 4/4
c'2. d'4
ef'1 \bar "|."
}
Traviselevenwords = \lyricmode {
No, for all cry to- geth- er.
is it those who cry loud- est?
No, for all cry loud- ly.
long- est shall be heard, and jus- tice shall be done to them. }
Tannerelevennotes = {
\clef bass
\time 3/4
\partial 4
r4
r2.
\time 5/4
r2. r2
c2 r4 c4
df4 ef2 ef4
df df r2
\time 5/4
df4. c8~ c2 bf,8 af,8
\time 4/4
ff2 e4 e4
e2 fs4 fs
fs fs r2
bf2 r4 bf4
cf'2 df'2
df'4\tenuto cf'4\tenuto r2
\time 3/4
bf4 cf'4 df'4
\time 4/4
df'1
c'1
\time 2/4
bf4 bf4
\time 4/4
b!2 r4 bf4
bf2 bf2
\time 3/4
bf2 a4
\time 4/4
af2. af4
g1 \bar "|."
}
Tannerelevenwords = \lyricmode {
No, for all cry to- geth- er.
Who, then, shall be heard— is it those who cry loud- est?
No, for all cry loud- ly.
Those who cry long- est shall be heard, and jus- tice shall be done to them. }
Nathanelevennotes = {
\clef bass
\time 3/4
\partial 4
f,4
c2 bf,4
\time 5/4
\tuplet 4/3{ af, g, f, ef,} f,2
\time 4/4
f,2 r4 f,4 gf,4 af,2 af,4 af, gf, r2
\time 5/4
r2. r2
\time 4/4
r2
b,4 b,4
c2 e4 e
e ds r2
g2 r4 g4
af2 af2
bf4\tenuto bf4\tenuto r2
\time 3/4
r2.
\time 4/4
af1 af,1
\time 2/4
af4 af4
\time 4/4
g2 r4 g8( ef8)
ef2 d4.( ef8)
\time 3/4
f2 f4
\time 4/4
ef4.( d8 c4) bf,4 ef,1 \bar "|."
}
Nathanelevenwords = \lyricmode {Can all pe- ti- tion- ers be heard?
No, for all cry to- geth- er.
is it those who cry loud- est?
No, for all cry loud- ly.
long- est shall be heard, and jus- tice shall be done to them. }
Allánelevennotes = {
\mark \markup{ \box 11 }
\clef bass
\cadenzaOn
\omit Stem
a4 a b cs' d' cs' b a r4 \bar "" \break
cs'! d' e'4 f' e' d' cs' e'4 d'4 cs' b as4. as8 cs'4 cs' e'2
\bar "" \break
a4 fs'2 e'4 d'4 cs'!2 a4 fs fs fs fs r4
\bar "" \break
\transpose bf a {
bf4 cf'4 df'4 df'2
c'2 c'4 bf af } ef' ef' ef' ef' d' bf r4
\bar "" \break
g a2 bf!4 c' c' bf a2 fs!4 g a4 g2 d4 ef d c2 \bar "|."
}
Allánelevenwords = \lyricmode { Ar- riv- ing at the cap- i- tal,
he camped up- on the ver- y door- step of the Group of Sev- en- teen
and begged all who passed to lis- ten to him.
Af- ter a long time he was ad- mit- ted to the pal- ace,
where those in au- thor- i- ty heard his com- plaints with sym- pa- thy. }
%-----------------------------------------------------------------------------------------------------------------------------
Travistwelvenotes = {
\mark \markup{ \box 12 }
\tempo 4 = 144
\clef bass
\time 3/4
c'4 cf' cf'
\time 4/4
bf bf a bf
\time 3/4
cf'
r2 bf4 a bf cf' r2 cf'4
bf bf a
r4 bf4
\time 4/4
a bf cf' bf
\time 3/4
a bf cf' c'!2 r4 \bar "|."
}
Travistwelvewords = \lyricmode { So say the Group of Sev- en- teen:
From those who steal, take all they have,
for noth- ing that they have is their own.
}
Tannertwelvenotes = {
\clef bass
\time 3/4
f4 f e
\time 4/4
f e f f
\time 3/4
e
r2 f4 f f f
r2 e4 f e f
r4 f4
\time 4/4
e f e f
\time 3/4
e f f e2 r4 \bar "|."
}
Tannertwelvewords = \lyricmode { So say the Group of Sev- en- teen:
From those who steal, take all they have,
for noth- ing that they have is their own.
}
Nathantwelvenotes = {
\clef bass
\time 3/4
c4 b, b,
\time 4/4
c c c c
\time 3/4
b,
r2 c4 c c b,
r2 b,4 c c c
r4 c4
\time 4/4
df c b, c
\time 3/4
df c b, a,2 r4 \bar "|."
}
Nathantwelvewords = \lyricmode { So say the Group of Sev- en- teen:
From those who steal, take all they have,
for noth- ing that they have is their own.
}
Allántwelvenotes = {
\mark \markup{ \box 12 }
\clef bass
\cadenzaOn
\omit Stem
e'4 d' c' c'4 a g e g a2
\transpose d c {
cs'4 d' e' fs'2 e'2 r4 \bar "" \break
cs'4 e'2 d'2 r4 e'4 d' b4 as2 \bar "|."
}
}
Allántwelvewords = \lyricmode {They told him to go back to the farm and tell the bad men— in their name— that they must leave. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisthirteennotes = {
\mark \markup{ \box 13 }
\tempo 4 = 72
\clef bass
\partial 4
\time 3/4
b8 b d'4 d'4 b8 b
\time 2/4
d'4 d'4
\time 3/8
b8 d' g'
\time 3/4
fs'8 fs' e'4 a8 b
c'4. c'8 a8 b8 c'4
r2 \bar "|."
}
Travisthirteenwords = \lyricmode {As a good child to its moth- er, so is the cit- i- zen to the Group of Sev- en- teen. }
Tannerthirteennotes = {
\clef bass
\partial 4
\time 3/4
d8 d g4 g4 d8 d
\time 2/4
fs4 fs4
\time 3/8
d8 g b
\time 3/4
a8 a g4 fs8 fs
fs4 fs4 fs8 fs8 fs4
r2 \bar "|."
}
Tannerthirteenwords = \lyricmode { As a good child to its moth- er, so is the cit- i- zen to the Group of Sev- en- teen. }
Nathanthirteennotes = {
\clef bass
\partial 4
\time 3/4
g,8 g, g,4 g,4 g,8 g,
\time 2/4
g,4 g,4
\time 3/8
g,8 b, d
\time 3/4
c8 c c4 c8 d
g,4 g,4 g,8 g,8 g,4
r2 \bar "|."
}
Nathanthirteenwords = \lyricmode { As a good child to its moth- er, so is the cit- i- zen to the Group of Sev- en- teen. }
Allánthirteennotes = {
\mark \markup{ \box 13 }
\clef treble
\cadenzaOn
\omit Stem
a4 c' fs'2 e'4 d' fs' g' \bar "|."
}
Allánthirteenwords = \lyricmode { He did just as they had said. }
%-----------------------------------------------------------------------------------------------------------------------------
Travisfourteennotes = {
\mark \markup{ \box 14 }
\tempo 4 = 120
\clef bass
a4 d' c' g a2 r2
c'4 b c' r4
\time 3/4
c'4 c' c'
\clef treble
d' e' e' e' e' e' f' f' f' g'2 r4
\time 4/4
\clef bass
\transpose e c' {ds2 e2~ e4 ds cs ds4 e1 \time 5/4 e2. e4 e4 \time 4/4 e2 e2 e1} \bar "|."
}
Travisfourteenwords = \lyricmode {What is fool- ish speech?
It is wind.
It has come in at the ears and goes out of the mouth.
No one is to re- ceive more than a hun- dred blows. }
Tannerfourteennotes = {
\clef bass
e4 e e e e2 r2