-
Notifications
You must be signed in to change notification settings - Fork 2
/
book.ly
1233 lines (1083 loc) · 32 KB
/
book.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.14.2"
%TODO
% - Hineh mah tov
% - Ego Sum Pauper
% - Hard Winter (Jan Harmon) - http://harmonpublishing.com/jan/songs/music/hard_winter-04nov07.pdf
% - on a gray and misty mornig (Krumm)
% - o how lovely is the evening
\layout { indent = 0.0\cm }
\paper {
#(set-paper-size "letter")
#(define bottom-margin (* 0.75 in))
#(define left-margin (* 0.75 in))
#(define line-width (* 7.25 in))
#(define top-margin (* 0.75 in))
ragged-right = ##f
scoreTitleMarkup = \markup {
\override #'(baseline-skip . 3.5)
\column {
\override #'(baseline-skip . 3.5)
\huge \larger \bold \fill-line {
\larger \fromproperty #'header:title
}
\fill-line {
\fromproperty #'header:poet
{ \large \bold \fromproperty #'header:instrument }
\fromproperty #'header:composer
}
}
}
tocItemMarkup = \markup \large \fill-line {
\fromproperty #'toc:text \fromproperty #'toc:page
}
ragged-last-bottom = ##t
}
\layout {
\context {
\Score
\override NonMusicalPaperColumn #'page-break-permission = ##f
}
}
\book {
\markuplist { \table-of-contents }
\pageBreak
\markup {}
\tocItem "Ah, Comme C'est Chose et Belle"
\score {
\transpose a d \relative a' {
\key a \minor
\time 4/4
a2 a4 a | d c b2 |
a4^"*" c c c | b a4.( gis16 fis gis4) | \break
a^"*" a f f | g a e2 |
e'2^"*" f4 a | g e e2 |
cis4^"*" a'4.( g8 f e | d4) a2. \bar "||"
}
\addlyrics {
Ah, comme c'est chos -- e bel
-- le de te lou -- er, Sei
-- gneur, et de tres haute l'hon -- neur.
Chan -- tez de coeur fi -- de
-- le, chan -- tez!
}
\header {
title = "Ah, Comme C'est Chose Belle"
composer = "Traditional"
}
}
\markup{}
\tocItem "All Praise to Thee"
\score {
\transpose c f \relative c' {
\key c \major
\time 4/4
\partial 4 c4 | c b c c^"*" | d d e
c | f f e e | d d c
g' | f d e e | d d c
g | a b c e | d d c \bar "||"
}
\addlyrics {
All praise to thee, my God, this night,
for all the bless -- ings of the light.
Keep me, O keep me, King of Kings,
Be -- neath thine own Al -- might -- y wings.
}
\header {
title = "All Praise to Thee"
composer = "Thomas Tallis"
poet = "Thomas Ken"
}
}
\markup {}
\tocItem "Alleluia"
\score {
\relative c' {
\key a \minor
\time 6/8
d4.^"In 3 or 6 parts" a' | g c, | f8^"(*)"( e) d e4 c8 | b4 d8 g4. | a4.^"*" r4 c8
b8( a) b e,4 e8 | a4^"(*)" e8 c4. | d4 d8 c( d) e | f4^"*" f8 e( d c) |
d4. e | a,^"(*)" c | d2.~ | d \bar "||"
}
\addlyrics {
Al -- le -- lu -- ia,
Al -- le -- lu -- ia, Al -- le -- lu -- ia,
Al -- le -- lu -- ia,
Al -- le -- lu -- ia, Al -- le -- lu -- ia,
Al -- le -- lu -- ia, Al -- le -- lu -- ia.
}
\header {
title = "Alleluia"
composer = "David Hogan"
}
}
\markup{}
\tocItem "Appalachian Round"
\score {
\transpose a g \relative c' {
\key a \dorian
\time 4/4
a'4 g a e | fis8( e) d4 e2 | c4 c g' a | e4. a8 a2 |
a4^"*" b c b | a b8( a) g2 | c4 c b c8( a) | g4. a8 a2 |
e'4 d c8( d) e4 | d fis e2 | e8 d c4 d c8( d) | e4. e8 e2 |
c4 b a g | a d8( c) b2 | c8( d) e4 a, g8( a) | b4. a8 a2 \bar "||"
}
\addlyrics {
Take me back, O hills I love;
Lift me from this lone -- ly bed;
Light my way with stars a -- bove;
Curl soft winds a -- bout my head.
Wash my feet in cry -- stal streams;
Cra -- dle my arms in boughs of oak;
Breathe the scent of pine for dreams;
Wrap me tight in earth -- en cloak.
}
\header {
title = "Appalachian Round"
composer = "Composer unknown (Tune: Welcome, Welcome, ev'ry guest, Southern Harmony #19b)"
poet = "George Furse"
}
}
\markup {}
\tocItem "Alleluia"
\score {
\relative c'' {
c1 | b | a | g | a2. b4 | c8( b a g a g f e | f2 g) | c,1 | \break
r4^"*" c e c | g' d g a8( b) | c( b) a( b) c4 d | b r g2 ~ | g4 g f2 | e4 r c'2 ~ | c4 a b2 | c1 | \break
c2. e4 | d8( c b a) g2 | g4 a fis2 | g2 r4 e | c2 d | c r4 c' | d2 d | e1 \bar "||"
}
\addlyrics {
A -- lle -- lu -- ia, a -- lle -- lu -- ia!
A -- lle -- lu -- ia, a -- lle -- lu -- ia, a -- lle -- lu -- ia, a -- lle -- lu -- ia, a -- lle -- lu -- ia!
A -- lle -- lu -- ia, a -- lle -- lu -- ia, a -- lle -- lu -- ia, a -- lle -- lu -- ia!
}
\header {
title = "Alleluia"
composer = "William Boyce (1710-1779)"
}
}
\markup {}
\tocItem "Be Like a Bird"
\score {
\relative c' {
\key a \minor
\time 2/2
e2 c4 d | e2.^"*" e4 | g f e d | e2 d4 e |
f2 d | bes c4 d | f( e) d c | c b2 c4 |
a1 | a' | g4 f e d | e2. f4 |
bes,1 | g'4( f2.) | e4 d b c | a1 \bar "||"
}
\addlyrics {
Be like a bird who, halt -- ing in her flight
On a limb too slight, feels it give way be -- neath her,
Yet sings, sings, know -- ing she has wings,
Yet sings, sings, know -- ing she has wings.
}
\header {
title = "Be Like a Bird"
poet = "Victor Hugo (adapted)"
composer = "Arthur Frackenpohl"
}
}
\markup {}
\tocItem "Blessed are We"
\score {
\transpose a d \relative c'' {
\key a \minor
\time 6/8
a8 a a b a b | c4. e4 d8 | c4 c8 b4 g8 | a2. |
c8^"*" c c d c d | e4. g4 a8 | g4 e8 d4 f8 | e4 d8 c4 b8 |
a4 c8 b( a) g | a4. e4 e8 | a a a g4 b8 | a2. \bar "||"
}
\addlyrics {
Bless -- ed are we in the mor -- ning,
for we shall be re -- newed.
Bless -- ed are we in the eve -- ning,
for we shall be fes -- tooned with all the
gra -- ces of the spi -- rit,
the flo -- wers of love di -- vine.
}
\header {
title = "Blessed are We"
composer = "Patricia McKernon"
}
}
\markup {}
\tocItem "Bubbling and Splashing"
\score {
\transpose c aes \relative c' {
\key c \major
\time 6/8
c8 c c b b b | a a a g8. f16 e8 | \break
f f f e8. d16 c8 | g'8. f16 g8 c,4 c8 | \break
c^"*" c c g' g g | a a a b g g | \break
c b c d c d | e8. f16 d8 e4 e8 | \break
e^"*" e e d8. c16 b8 | c c c b8. a16 g8 | \break
a g a g8. f16 e8 | c'8. d16 b8 c4. \bar "||"
}
\addlyrics {
Bub -- bling and splash -- ing and foam -- ing and dash -- ing
with noise and with bust -- le the brook rush -- es by,
But si -- lent and slow does the deep ri -- ver flow
on the smooth glass -- y sur -- face re -- flect -- ing the sky!
Thus shal -- ow pre -- tense bab -- bles on with -- out sense
while true know -- ledge and wis -- dom sit qui -- et -- ly by!
}
\header {
title = "Bubbling and Splashing"
composer = "Henry Purcell"
}
}
\markup {}
\tocItem "By the Waters of Babylon"
\score {
\transpose d a \relative c' {
\key d \minor
\time 4/4
d4( c8 bes a4) bes | c4( bes8 a) g4 a | bes4( a8 g) f4 g | a a d,2 | \break
f'4^"* If this jump is too hard, try going up instead of down to the A at the end of the first part"
f f f | f( e) r ees | ees( d) r d | d cis d r | \break
a4. bes8 c4 d | g,4. a8 bes4 c | f,4. g8 a4 bes | a a d,2 |
\bar "||"
}
\addlyrics {
By the wa -- ters, the wa -- ters of Ba -- by -- lon,
We lay down and wept, and wept, for thee, Zi -- on:
We re -- mem -- ber, we re -- mem -- ber, we re -- mem -- ber thee, Zi -- on!
}
\header {
title = "By the Waters of Babylon"
poet = "Biblical"
composer = "Philip Hayes"
}
}
\markup {}
\tocItem "Die Blumen"
\score {
\relative c' {
\key a \minor
\time 4/4
\partial 4 e4 | d c b e | c a a'4.( g8 | f4) e d f | e2.
e4^"*" | f a a gis | a4. b8 c4 a | d c b a | gis fis8( gis) e4
e | f2 d | e2. a,4 | b( c d) c8( d) | e2. \bar "||"
}
\addlyrics {
Die Blu -- men und das Laub,
Die fal -- len in dem Staub,
Und al -- ler Er -- den Herr -- lich -- keit
Die währt nur ei -- ne kur -- ze Zeit
Und muß ver -- gehn, und muß ver -- gehn.
}
\header {
title = "Die Blumen"
composer = "Traditional"
}
}
\markup {}
\tocItem "Come, Follow, Follow"
\score {
\relative c' {
\key c \major
\time 4/4
c'2 b4 b | a a g g | f f e e | d g c,2 |
c8^"*" d e f g4 e | f d g e | c8 d e f g4 c | d g, e'2 |
e4. e8 d4 g | c,4. c8 b4 e | a,4. a8 g4 c | c4 b c2 \bar "||"
}
\addlyrics {
Come, fol -- low, fol -- low, fol -- low,
fol -- low, fol -- low, fol -- low me.
Whi -- ther shall I fol -- low, fol -- low, fol -- low,
Whi -- ther shall I fol -- low, fol -- low thee?
To the green -- wood, to the green -- wood,
To the green -- wood, green -- wood tree.
}
\header {
title = "Come, Follow, Follow"
composer = "Edmund Nelham"
}
}
\markup {}
\tocItem "Cuckoo"
\score {
\relative f' {
\key f \major
\time 6/4
c'2 a4 f bes a | g2^"*" f4 a g f ~ |
f e f f bes, d | c2 f1 \bar "||"
}
\addlyrics {
Cu -- ckoo! as I mé walk -- èd
on a May morn -- ing, I heard a bird sing:
}
\header {
title = "Cuckoo"
composer = "Traditional"
}
}
\markup {}
\tocItem "Darkness Is Falling"
\score {
\relative c' {
\key a \minor
\time 4/4
a4 b8 c d4 c8 b | a4 b8 c d4 c8 b |
a4 b8 c d4 c8 d | e4 c8 a e'2 | \break
e4^"*" a f e8 d | e4 a f e8 d |
e4( gis8) a b4( a8 b) | c4 a8 e c'2 | \break
c^"*" a | c a |
c4 b8 e, g4 f8( g) | a1 \bar "||"
}
\addlyrics {
Dark -- ness is fall -- ing,
the moon will be ris -- ing,
the stars will be shin -- ing,
the sun's gone to sleep;
Close your eyes and I'll
rock you gent -- ly and
whis -- per sweet dreams while you sleep;
Good -- night, good -- night,
now it is time to sleep.
}
\header {
title = "Darkness Is Falling"
}
}
\markup {}
\tocItem "Dona Nobis (Schickele)"
\score {
\relative c' {
\key f \major
\time 3/4
r4 c' c | c8( d) d2 | d8( c) c2 |
c8( bes) bes4 bes8( a) | a4 bes2 | g2. | \break
r4^"*" a a | a8( bes) bes2 | bes8( a) a2 |
aes8( g) g4 g8( f) | f4 ees( d) | c2. | \break
f2^"*" f4 | f2 f4 | f2 f4 | ees2( d4 ~ | d) g2 | r4 c c |\break
c2.^"*"( ~ | c4 bes c ~ | c a c ~ | c g) bes |
r bes,2 | c2. \bar "||"
}
\addlyrics {
Do -- na no -- bis pa -- cem,
do -- na no -- bis pa -- cem,
Do -- na no -- bis pa -- cem,
do -- na no -- bis pa -- cem,
Do -- na no -- bis pa -- cem, pa -- cem,
Do -- na no -- bis pa -- cem,
}
\header {
title = "Dona Nobis Pacem"
composer = "Peter Schickele (P.D.Q. Bach)"
}
}
\markup {}
\tocItem "Dona Nobis (traditional)"
\score {
\relative c' {
\key f \major
\time 3/4
f8( c) a'2 | g8( c,) bes'2 | a4( g) f | f e2 |
d'4( c8 bes) a( g) | c4.( bes8) a4 | a8( g f4 e) | f2. | \break
c'2.^"*" | c2. | c4( bes) a | a g2 |
d'4 d2 | c2 c4 | c8( bes a4 g) | f2. | \break
f | e | f4.( g8) a( bes) | c4 c,2 |
bes'4 bes2 | a4 a2 | f8( a c4 c,) | f2. \bar "||"
}
\addlyrics {
Do -- na no -- bis pa -- cem, pa -- cem,
Do -- na no -- bis pa -- cem.
Do -- na no -- bis pa -- cem,
Do -- na no -- bis pa -- cem.
Do -- na no -- bis pa -- cem,
Do -- na no -- bis pa -- cem.
}
\header {
title = "Dona Nobis Pacem"
composer = "Traditional"
}
}
\markup {}
\tocItem "Fie, nay Prithee, John"
\score {
\relative g' {
\key g \major
\time 4/4
g4. b8 a fis d4 | e4. g8 fis d b4 | c4. e8 d b g4 | c d g,2 | \break
g'8^"*" d' d g, fis d' d fis, | e c' c e, d b' b d, | c a' a c, b g' g b, | a4 fis' g2 | \break
d'8 b g e' c a fis d' | b g e c' a fis d b' | g e c a' fis d b b' | e4 d8. c16 b2 \bar "||"
}
\addlyrics {
Fie, nay pri -- thee, John, do not quar -- rel, man;
let's be mer -- ry and drink a bout!
You're a rogue; you cheat -- ed me, I'll prove
be -- fore this com -- pa -- ny; I caren't a far -- thing,
sir, for all you are so stout!
Sir, you lie, I scorn your word, or an -- y man
who wears a sword; for all your huff,
who cares a damn, and who cares for you?
}
\header {
title = "Fie, nay Prithee, John"
composer = "Henry Purcell"
}
}
\markup {}
\tocItem "Gabriel John"
\score {
\transpose a e' \relative a' {
\key a \minor
\time 3/4
e4. d8 c4 | b2 c4 | a4. gis8 a4 | gis2 e'8 d |
f4. e8 d4 | b2 c4 | a4. b8 gis4 | a2. | \break
a4.^"*" b8 c( a) | e'2 e4 | e4.( f8) d4 | e4. c8 c4 |
a4. a8 f'4 | d2 g8 e | c4. d8 b4 | a2. | \break
e'4. d8 c4 | b2 c4 | a4. c8 b( a) | gis2 a8 a |
d,4. e8 f d | g4. f8 e4 | f4. d8 e4 | a2. \bar "||"
}
\addlyrics {
Un -- der this stone lies Ga -- bri -- el John,
in the year of our Lord one thou -- sand and one.
Co -- ver his head in turf or stone,
'tis all one, 'tis all one, turf or stone, 'tis all one.
Pray for the soul of Ga -- bri -- el John,
if you please, or you may let it a -- lone, 'tis all one.
}
\header {
title = "Gabriel John"
composer = "Henry Purcell"
}
}
\markup {}
\tocItem "Good Friend"
\score {
\relative a {
\key a \minor
\time 4/4
a4. a8 e'4. c8 | d4 e g,4. g8 | a4 a c4. b8 | b4 a2. | \break
a4.^"*" a8 e'4. c8 | d4 e g4. g8 | a4. e8 e4 d | e4 e2 e4 | \break
e4 e a4. a8 | b4 c b4. b8 | e,4 e a4. g8 | g4 a2 b4 | \break
c8 c4. c c8 | b4 a d, e8 e | a4. g8 e4. d8 | e( a) a2. \bar "||"
}
\addlyrics {
Oh the wind, it is a song
That har -- bors through the win -- ter.
Oh the sail, it is a door
That bids the song to en -- ter.
And let us sail the sea, good friend,
And let us sing to -- ge -- ther.
The sing -- er lasts a sea -- son long
While the song it lasts for -- ev -- er.
}
\header {
title = "Good Friend"
composer = "Jan Harmon"
}
}
\markup {}
\tocItem "Hava Nashira"
\score {
\relative c' {
\key c \major
\time 4/4
c2 g'4 a | g2 c, | f e4 d8( c) | d2 c |
c'^"*" b4 c | d2 e | c d4 e | f2 e |
e d4 c | b2 c | a g4 c | c( b) c2 \bar "||"
}
\addlyrics {
Ha -- va na -- shi -- ra, shir' ha -- lle -- lu -- ia.
Ha -- va na -- shi -- ra, shir' ha -- lle -- lu -- ia.
Ha -- va na -- shi -- ra, shir' ha -- lle -- lu -- ia.
}
\header {
title = "Hava Nashira"
composer = "Traditional"
}
}
\markup {}
\tocItem "Happy Birthday"
\score {
\transpose c f \relative c' {
\key c \major
\time 4/4
\partial 4 g4 | c e8 e e d c b | c4 c2
d4^"*" | e g8 g g f e d | e4 e2
f4 | g2 g | g2.
f4 | e c8 c g4 g | c2. \bar "||"
}
\addlyrics {
We wish you a ve -- ry hap -- py birth -- day,
A joy -- ous and ce -- le -- bra -- ted birth -- day,
To you, dear friend,
We wish you a long, long life!
}
\header {
title = "Happy Birthday"
composer = "Unknown"
}
}
\markup {}
\tocItem "Hotaru Koi"
\score {
\relative a' {
\key a \minor
\time 4/4
a4 r^"*" a^"*" r | a e8 g a4 r |
a a8 a a4 b | a g a r |
a a8 a a4 b | a g a r |
a4 r a r | a e8 g a4 r \bar "||"
}
\addlyrics {
Ho, ho, ho -- ta -- ru koi,
at -- chi no mi -- zu_wa ni -- gai zo,
kot -- chi no mi -- zu_wa a -- mai zo,
ho, ho, ho -- ta -- ru koi.
}
\header {
title = "Hotaru Koi"
composer = "Traditional"
}
}
\markup {}
\tocItem "Hymn for the Russian Earth"
\score {
\relative d' {
\key d \minor
\time 4/4
d4. e8 f4 g | f e d4. a8 |
d8^"*" e f g a4. a8 | d8. d16 d8 c a4. a8 |
bes4. a8 g( a) bes4 | a4. g8 f4 e8 f |
g4. f8 e a, f'8. e16 | d1 \bar "||"
}
\addlyrics {
If the peo -- ple lived their lives
As if it were a song for sing -- ing out of light
Pro -- vides the mu -- sic for the stars
To be dan -- cing cir -- cles in the night.
}
\header {
title = "Hymn for the Russian Earth"
composer = "Traditional"
}
}
\markup {}
\tocItem "Jubilate Deo"
\score {
\relative c'' {
\key c \major
\time 4/4
c2 d | e4 c c b |
c^"*" a g4. f8 | e4( f) d2 |
c g'4 g | c,1 \bar "||"
}
\addlyrics {
Ju -- bi -- la -- te De -- o,
Ju -- bi -- la -- te De -- o,
A -- lle -- lu -- ia!
}
\header {
title = "Jubilate Deo"
composer = "Michael Praetorius"
}
}
\markup {}
\tocItem "Los Bibilicos"
\score {
\relative c' {
\key d \dorian
\time 2/2
\partial 2
d4 d | d e d( c) | e2 d | f4( g) a a | c( b) a g | b2 a |
d4 c d a | g( c) b2 | a f4 g | c a g c | d f e2 | d \bar "||" \break
d,4^"*" f | g a g( f) | e2 d ~ | d d4 a | f' e d( c) | g'2 e ~ |
e d4 f | g a g( f) | e2 d ~ | d e4 g | a bes a g | a2 \bar "||" \break
% small notes down an octave
<< { \voiceOne a4^"*" a | a a a2 | g a }
\new Voice { \voiceTwo \teeny a,4 a | a a a2 | g a }
>> \oneVoice |
d4( e) f f | a( g) f e | d2 cis |
d4 e f f | g( f) e2 | e f4 e | e d c c | d d cis2 | d \bar "|."
}
\addlyrics {
Los bi -- bi -- li -- cos can -- tan
en los ar -- bo -- les de la flor.
Los bi -- bi -- li -- cos can -- tan
mien -- tras que sue -- no de paz y a -- mor.
Los bi -- bi -- li -- cos can -- tan.
Los bi -- bi -- li -- cos can -- tan.
Los bi -- bi -- li -- cos can -- tan.
Sue -- no de paz y a -- mor.
Los bi -- bi -- li -- cos can -- tan
en los ar -- bo -- les de la flor.
Los bi -- bi -- li -- cos can -- tan
mien -- tras que sue -- no de paz y a -- mor.
}
\header {
title = "Los Bibilicos"
composer = "Jan Harmon"
}
}
\tocItem "Little Genius"
\score {
\relative c'' {
\key c \major
\time 4/4
g8. g16 g g g g e8 c r4 | g'8. g16 g g g g e8 c r16 c b c | \break
a'4 r16 c, b c g'4 r16 c, c c | d8 a' g b, c16 c c c c c c c | \break
b8^"*" g r4 r16 c c c c c c c | b8 g r4 r16 c c c e4 | \break
r16 c c c f4 r16 c c c e c c c | g8 g g g c4 r16 c d e | \break
f8.^"*" d16 a b a b c4 r16 c d e | f8. d16 a b a b c8 c c'4 | \break
r8 c, c'4 r8 f, e16 d c b | a8 f' e d c4 r8 c | \break
d8.^"*" e16 f8. d16 c d e8 r c | d8. e16 f8. d16 c d e8 g c, | \break
r4 a'8 c, r4 g'8 c, | r8 d e f e4 r \bar "||"
}
\addlyrics {
Here we have a lit -- tle gen -- ius,
Now we call him A -- ma -- de -- us,
He used to be Mo -- zart to me
But now we use his mid -- dle name!
Oh yes he had to be a big shot,
A pr -- pre -- co -- cious lit -- tle big shot,
They made a flick and he got sick,
To Sal -- i -- er -- i was att -- rib -- u -- ted the blame.
And then he wrote his fam -- ous re -- qui -- em
To which he nev -- er wrote the last A -- men.
A -- men! A -- men! Oh wait, we have
a -- noth -- er verse to do.
This Mo -- zart craze is al -- most through,
Soon Hol -- ly -- wood must look a -- new,
Hay -- dn, Cho -- pin, Bar -- tók, or may -- be Crumb.
}
\header {
title = "Little Genius"
composer = "W.A. Mozart (lyrics unknown)"
}
}
\markup {}
\tocItem "My Friend Sharon"
\score {
\relative c' {
\key f \major
\time 4/4
a'4^"Swung eighths" f g e | f8 e d f e d c e | d c d4 r e | f4 r2. | \break
f4^"*" c c c | d8 c bes d c bes a c | bes a g4 r g | a4 r c c | \break
c'8^"*" bes a c bes a g bes | a( g) f( a) g f e g | f e d f e4 c8 e | f e f g a g a bes | \break
a^"*" a a a g4 g8 g | f e f a c4. c,8 | g' a bes2 c8 c | f,4 r2. \bar "||"
}
\addlyrics {
My friend Sha -- ron saved an ar -- ma -- dil -- lo
from a croc -- o -- dile one day.
My friend Sha -- ron saved an ar -- ma -- dil -- lo
from a croc -- o -- dile one day.
It was out in A -- ma -- ril -- lo where this vile child
had an ar -- ma -- dil -- lo by the tail
And he would have sent it sail -- ing to a smi -- ling croc -- o -- dile
On -- ly Sha -- ron hol -- lered, "\"Stop," you rot -- ten "kid!\"" And he did.
}
\header {
title = "My Friend Sharon"
composer = "Jan Harmon"
}
}
\markup {}
\tocItem "Noah's Dove"
\score {
\relative c' {
\key c \major
\time 4/4
g'4. g8 e g d4 ~
| d8 f16 f c8 c d4( b)
| r8^"*" b'4 a8 c c b4 ~
| b8 a16 a g8 g b4( g)
| r d8 d g e g4 ~
| g8 b,16 b f'8 e g2
\bar "||"
}
\addlyrics {
Oh, if I had wings just like No -- ah's dove
I would fly a -- way to the one I love
I would fly a -- way to the one I love.
}
\header {
title = "Noah's Dove"
composer = "Unknown"
}
}
\markup {}
\tocItem "Non nobis, Domine"
\score {
\relative c' {
\key c \major
\time 2/2
c2 d4^"* (5th below)" e | f4. f8 e4^"* (oct. below)" e | d2 c | r4 g' a8 a f4 |
c'2 c4 bes | a4. a8 g2 | r4 d e8 e c4 |
g'2 g4 f | e4. e8 d2 \bar "||"
}
\addlyrics {
Non no -- bis Do -- mi -- ne, non no -- bis,
sed no -- mi -- ni tu -- o da glo -- ri -- am,
sed no -- mi -- ni tu -- o da glo -- ri -- am.
}
\header {
title = "Non nobis, Domine"
composer = "William Byrd?"
}
}
\markup {}
\tocItem "The Old Astronomer to his Pupil"
\score {
\relative a {
\key a \minor
\time 4/4
a4 b c a | d b e d |
c^"*" e a a | a a gis( b) |
r^"*" a2 e4 | f f e gis |
a^"*" e e c' | b b b gis |
e^"*" r e c | f d b r |
}
\addlyrics {
Though my soul may set in dark -- ness,
It will rise in per -- fect light;
I have loved the stars too fond -- ly
To be fear -- ful of the night,
Fear -- ful of the night.
}
\header {
title = "The Old Astronomer to his Pupil"
composer = "Franz Josef Haydn (1732-1809)"
poet = "Sarah Williams (1841-1868)"
}
}
\markup {}
\tocItem "O Absalon My Son"
\score {
\transpose a fis \relative a' {
\key a \minor
\time 2/2
a2 b4. b8 | c4 b a d, | e1 |
a2 b4. b8 | c4 c, d e | e2. e8 e | \break
a2.^"*" g8 f | e4 d d'8( c) b( a) | gis2. e8 e |
a2. g8 f | e4 a c b | c1 | \break
c,2^"*" d4. d8 | e4 f f8( e) d( c) | b1 |
c2 d4. d8 | e4 e a gis | a1 \bar "||"
}
\addlyrics {
O Ab -- sa -- lon my son, my son.
O Ab -- sa -- lon my son, my son.
Would to God I had died for thee my son.
Would to God I had died for thee my son.
O Ab -- sa -- lon my son, my son.
O Ab -- sa -- lon my son, my son.
}
\header {
title = "O Absalon My Son"
composer = "Charles King (1687-1748)"
}
}
\markup {}
\tocItem "Onawa's Waltz"
\score {
\transpose c f \relative c' {
\key c \major
\time 3/4
e2 c4 | d b2 | c4. b8 a4 | g2 g4 |
a2 f4 | g c b | c2. ~ | c2 g4 | \break
g'2.^"*" | gis2. | a4. g8 f4 | e2. |
f4 g a | g2 f4 | e2. ~ | e2 d4 | \break
c8 d e4 g, | e'2. | a,8 b c4 f, | c'2 cis4 |
d2 c4 | b c d | c2. ~ | c2. \bar "||"
}
\addlyrics {
I've been wait -- ing all the day long
To see the stars in your eyes.
My love, come dance with me now,
See how the eve -- ning flies,
And as you sleep, my dear, Know that I'll be near,
To hold you when you a -- rise.
}
\header {
title = "Onawa's waltz"
composer = "John Krumm"
}
}
\markup {}
\tocItem "Rise Up, O Flame"
\score {
\relative d' {
\time 3/4
d4 d d | a'4.^"*"( g8 f e) | d( e) f( g) a4 | f4.( e8) d4 |
d' d d | a4.( g8) f( e) | d( e) f( g) a4 | d, \bar "||"
}
\addlyrics {
Rise up, O flame; by thy light glow -- ing
Show to us beau -- ty, vis -- ion and joy.
}
\header {
title = "Rise Up, O Flame"
composer = "Christoph Praetorius"
}
}
\markup {}
\tocItem "The Road"
\score {
\relative c' {
\key f \major
\time 3/4
\partial 4 c4 | f2 e4 | d bes d | g2 f4 | e f
g^"*" | a2 c4 | bes2 a4 | g8 a bes4 d | c2 c4 |
c c a | f2 f4 | bes8 c bes4. bes8 | g4 f e |
f2. | d2. | d4 c bes | c2 \bar "||"
}
\addlyrics {
The road is cal -- ling as leaves are fal -- ling,
It's back to home, my tra -- vels are now done;
I'll sit by the fire, and drink a toast to all of you–
Fare -- well, I must be gone...
}
\header {
title = "The Road"
composer = "John Krumm"
}
}
\markup {}
\tocItem "Rose, Rose / Ah! Poor Bird / Hey, Ho / Shalom Chaverim (Quodlibet)"
\score {
\transpose a d \relative a' {
\key a \minor
\time 4/4
a2 g | a e | a4^"*" a b b | c d8( c) b2 |
e4 e d d | c d8( c) b4 e, | a2 g4( b) | a1 \bar "||"
\break
a2 b | c1 | c2^"*" d | e1 |
e4 a a gis | a( e) e d | c2 b | a1 \bar "||"
\break
a2 g | a4 a8 a e2 | a4^"*" a b b | c8 c c c b2 |
e4. d8 e4. d8 | e4.( d8 e d) c( b) \bar "||"
\break
\partial 4 e,4 | a a8 b c4 a | c c8 d e4
e | a2. g4 | e2.
e4 | a e8( d) c4 d | e c8( b) a4
e | a2. b8( c) | a2. \bar "||"
}
\addlyrics {
Rose, rose, rose red, Will I e -- ver see thee wed?
I will mar -- ry at thy will, Sire, at thy will.
Ah! poor bird! Take thy flight
Far a -- bove the sor -- rows of this sad night.
Hey, ho, no -- bo -- dy home,
Meat nor drink nor mo -- ney have I none,
Still I will be mer -- ry.
Sha -- lom cha -- ver -- im, sha -- lom cha -- ver -- im,
Sha -- lom, sha -- lom,
L' -- hit -- ra -- ot, l' -- hit -- ra -- ot,
Sha -- lom, sha -- lom.
}
\header {
title = "Rose, Rose / Ah! Poor Bird / Hey, Ho / Shalom Chaverim"
composer = "Traditional"
}
}
\markup {}
\tocItem "Sanctus"
\score {
\transpose c f \relative c'' {