]> Shamusworld >> Repos - music/blob - he-who-began-a-good-work-in-you.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / he-who-began-a-good-work-in-you.ly
1 \version "2.16.0"
2 \include "pop-chords.ly"
3 \include "english.ly"
4
5 % Good sizes are 16, 18, & 20
6 staffSize = #16
7 #(set-default-paper-size "letter")
8 #(set-global-staff-size staffSize)
9 #(ly:set-option (quote no-point-and-click))
10
11
12 \header
13 {
14         title    = \markup { \override #'(font-family . sans) \fontsize #3.5 "He Who Began A Good Work In You" }
15         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Words & music by Andre Crouch" }
16         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Ed Smart/Shamus Hammons" }
17         tagline  = "Engraved by JLH and Lilypond 2.8.2"
18 }
19
20
21 %
22 % Song's structure
23 %
24 Global =
25 {
26         \clef G
27         \key a \major
28         \numericTimeSignature
29         \time 4/4
30
31         \repeat volta 2
32         {
33                 s1^"Moderately, not too slow" |   % 1
34                 s1 |   % 2
35         }
36         \alternative
37         {
38                 {
39                         s1*2 |   % 3-4
40                 }
41                 {
42                         s1*2 \bar "||"   % 5-6
43                 }
44         }
45
46         % Chorus
47
48         \once \override Score.RehearsalMark #'self-alignment-X = #left
49         \mark \markup { \override #'(font-family . sans) { \box { A } } \hspace #1.0 \raise #2.0 \musicglyph #"scripts.segno" }
50
51         s1*12 |   % 7-18
52
53         s2... \once \override Score.RehearsalMark #'self-alignment-X = #right
54         \mark \markup { \italic { to Coda } \hspace #1.0 \musicglyph #"scripts.coda" } s16 |   % 19
55
56         s1 \bar "||"   % 20
57
58         % Interlude
59
60         s1*4 \bar"||"   % 21-24
61
62         % Verse
63
64         \mark \markup { \override #'(font-family . sans) { \box { B } } }
65
66         s1*15 |   % 25-39
67         R1
68         \once \override Score.RehearsalMark #'self-alignment-X = #right
69         \mark "D.S. al Coda"
70         \bar "||"   % 40
71 %       \break
72
73         % Coda (chorus again)
74
75 \stopStaff s1 \startStaff
76 % s1
77 \set Score.currentBarNumber = #41
78
79         \once \override Score.RehearsalMark #'self-alignment-X = #left
80         \mark \markup { { \musicglyph #"scripts.coda" } "Coda" }
81
82         s1 \bar "||"   % 43
83
84         \mark \markup { \override #'(font-family . sans) { \box { C } } }
85
86         s1*14 |   % 42-55
87
88         % Ending
89
90         \repeat volta 2
91         {
92                 s1*2 |   % 56-57
93         }
94         \alternative
95         {
96                 {
97                         s1*2 |   % 58-59
98                 }
99                 {
100                         s1 |   % 60
101                 }
102         }
103
104         s1 \bar "|."   % 61
105 }
106
107
108 %
109 % Lead vocal
110 %
111 LeadXvoxA = \relative c'
112 {
113         \clef G
114
115         % Intro
116
117         R1*6 |   % 1-6
118
119         % Chorus
120
121         \stemUp a'4. gs8 ~ gs4 r8 e |   % 7
122         fs [ gs ] a [ b ~ ] b gs4 e8 ~ |   % 8
123         e2 r |   % 9
124         R1 |   % 10
125         a4. gs8 ~ gs4 r8 e |   % 11
126         fs [ gs ] a [ b ~ ] b gs4 \stemDown cs8 ~ |   % 12
127         cs1 ~ |   % 13
128         cs2 r8 b cs [ d ~ ] |   % 14
129         d [ cs ] \stemUp b [ a ] a [ b ~ ] b4 |   % 15
130         r2 r8 \stemDown b cs [ d ~ ] |   % 16
131         d [ cs ] \stemUp b [ a ] \stemDown cs [ b ~ ] b4 |   % 17
132         r2 r8 b cs [ d ~ ] |   % 18
133         d [ cs ] \stemUp b [ a ~ ] a [ b ] \stemDown cs [ d ~ ] |   % 19
134         d [ cs ] \stemUp b [ a ] a [ b ] gs [ a ~ ] \bar "||"   % 20
135
136         % Interlude
137
138         a2 r |   % 21
139         R1 |   % 22
140         R1 |   % 23
141         r2. r8 cs,16 [ d ] |   % 24
142
143         % Verse
144
145         e8 [ e ] e [ e ~ ] e [ d ] cs4 |   % 25
146         e8 [ fs ] gs [ a ~ ] a [ gs ] e [ d ~ ] |   % 26
147         d4 r r8 e fs [ b, ] ~ |   % 27
148         b2 r4 r8 e16 [ fs ] |   % 28
149         gs8 [ gs ] gs [ gs ~ ] gs [ fs ] e4 |   % 29
150         gs8 [ gs ] gs [ gs ~ ] gs [ a ] b [ e, ~ ] |   % 30
151         e2. r4 |   % 31
152         R1 |   % 32
153         e8 [ e ] e [ e ~ ] e4 r8 cs16 [ d ] |   % 33
154         e8 [ fs ] gs [ a ~ ] a [ gs ] e4 |   % 34
155         fs8 [ fs ] fs [ fs ~ ] fs4 d8 [ e ] |   % 35
156         fs [ gs ] a [ b ~ ] b [ a ] fs4 |   % 36
157         gs8 [ gs ] gs [ gs ~ ] gs fs4 e8 |   % 37
158         \times 2/3 { gs4 gs gs  } \times 2/3 { gs a \stemDown b  } |   % 38
159         \stemUp a1 |   % 39
160         R1 |   % 40
161
162         % Coda (chorus again)
163
164         s1 % Blank bar for coda
165
166         d8 \repeatTie [ cs ] \stemUp b [ a ] a [ b ] gs4 |   % 41
167         \stemUp a4. gs8 ~ gs4 r8 e |   % 42
168         fs [ gs ] a [ b ~ ] b gs4 e8 ~ |   % 43
169         e2 r |   % 44
170         R1 |   % 45
171         a4. gs8 ~ gs4 r8 e |   % 46
172         fs [ gs ] a [ b ~ ] b gs4 \stemDown cs8 ~ |   % 47
173         cs1 ~ |   % 48
174         cs2 r8 b cs [ d ~ ] |   % 49
175         d [ cs ] \stemUp b [ a ] a [ b ~ ] b4 |   % 50
176         r2 r8 \stemDown b cs [ d ~ ] |   % 51
177         d [ cs ] \stemUp b [ a ] \stemDown cs [ b ~ ] b4 |   % 52
178         r2 r8 b cs [ d ~ ] |   % 53
179         d [ cs ] \stemUp b [ a ~ ] a [ b ] \stemDown cs [ d ~ ] |   % 54
180         d [ cs ] \stemUp b [ a ] a [ b ] gs4 |   % 55
181
182         % Ending
183
184         a2 r |   % 56
185         R1 |   % 57
186
187         R1 |   % 58
188         R1 |   % 59
189
190         R1 |   % 60
191
192         r1^\fermata |   % 61
193 }
194
195
196 LeadXvoxATextA = \lyricmode
197 {
198         He who  _ be- gan a good work  _ in you  _
199         He who  _ be- gan a good work  _ in you  _
200                 _ Will be fai-  _ thful to com- plete it  _
201         Will be fai-  _ thful to com- plete it  _
202         He who start-  _ ed the work  _ will be fai-
203                 _ thful to com- plete it in you  _
204
205         If the trou- ble you're fac-  _ ing is
206         slow- ly re- pla-  _ cing your hope  _ with des- pair _
207         And the pro- cess is long  _ and you're
208         lo- sing your songs  _ in the night  _
209         You can be sure  _ that the Lord has his hand  _ on you
210         Safe and se- cure  _ He will ne- ver a- band-  _ on you
211         You are his trea-  _ sure And
212         He finds His plea- sure in you
213
214         _ thful to com- plete it in
215
216         He who  _ be- gan a good work  _ in you  _
217         He who  _ be- gan a good work  _ in you  _
218                 _ Will be fai-  _ thful to com- plete it  _
219         Will be fai-  _ thful to com- plete it  _
220         He who start-  _ ed the work  _ will be fai-
221                 _ thful to com- plete it in you  _
222 }
223
224
225 %
226 % Background vocals
227 %
228 BgXvoxA = \relative c'
229 {
230         \clef G
231         \numericTimeSignature
232
233         % Intro
234
235         R1 |   % 1
236         R1 |   % 2
237
238         R1 |   % 3
239         R1 |   % 4
240
241         R1 |   % 5
242         R1 |   % 6
243
244         % Chorus
245
246         R1_\markup { \italic { 1st time unison, 2nd harmony } } |   % 7
247         R1 |   % 8
248         R1 |   % 9
249         R1 |   % 10
250
251 %But this does... FINALLY!
252 %{
253 % lyrics follow voice above
254         R1 |   % 11
255         r2 r4 r8 << { \voiceOne fs'8 ~ } \context Voice = "v" { \voiceTwo <b, gs> ~ } >> |   % 12
256         << { \voiceOne fs'2 ~ fs4. f8 ~ } \context Voice = v { \voiceTwo <b, gs>1 ~ } >> |   % 13
257         << { \voiceOne f'2 } \context Voice = v { \voiceTwo <b, gs>2 } >> \oneVoice r2 |   % 14
258 %}
259
260 % lyrics follow voice below
261         R1 |   % 11
262         r2 r4 r8 << { \voiceOne <b' gs> ~ } \context Voice = "v" { \voiceTwo fs8 ~ } >> |   % 12
263         << { \voiceOne <b gs>1 ~ } \context Voice = v { \voiceTwo fs2 ~ fs4. f8 ~ } >> |   % 13
264         << { \voiceOne <b gs>2 } \context Voice = v { \voiceTwo f2 } >> \oneVoice r2 |   % 14
265
266         <d' a fs>1 |   % 15
267         <b a fs>4. <b gs e>8 ~ <b gs e>4 r |   % 16
268         <d a fs>1 |   % 17
269         <b a fs>4. <b gs e>8 ~ <b gs e>4 r8 <a fs d> ~ |   % 18
270         <a fs d>4. <a e cs>8 ~ <a e cs>4. <fs d b>8 ~ |   % 19
271         <fs d b>4 <fs d b>8 <fs d b> <fs d b> <fs d a> <fs d a> <e cs a> ~ |   % 20
272
273         % Interlude
274
275         <e cs a>2 r |   % 21
276         R1 |   % 22
277         R1 |   % 23
278         R1 |   % 24
279
280         % Verse
281
282         R1 |   % 25
283         R1 |   % 26
284         R1 |   % 27
285         R1 |   % 28
286         R1 |   % 29
287         R1 |   % 30
288         R1 |   % 31
289         R1 |   % 32
290
291         a8 [ a ] a [ a ~ ] a4 r8 a16 [ a ] |   % 33
292         a8 [ a ] b [ cs ~ ] cs [ a ] gs4 |   % 34
293         R1 |   % 35
294         R1 |   % 36
295         R1 |   % 37
296         R1 |   % 38
297         R1 |   % 39
298         R1 |   % 40
299
300         % Coda (chorus again)
301
302 \stopStaff s1 \startStaff
303
304         R1 |   % 41
305
306         R1 |   % 42
307         R1 |   % 43
308         R1 |   % 44
309         R1 |   % 45
310         R1 |   % 46
311         R1 |   % 47
312         R1 |   % 48
313         R1 |   % 49
314         R1 |   % 50
315         R1 |   % 51
316         R1 |   % 52
317         R1 |   % 53
318         R1 |   % 54
319         R1 |   % 55
320
321         % Ending
322
323         R1 |   % 56
324         R1 |   % 57
325
326         R1 |   % 58
327         R1 |   % 59
328
329         R1 |   % 60
330
331         r1^\fermata |   % 61
332 }
333
334
335 BgXvoxATextA = \lyricmode
336 {
337 %\set associatedVoice = foo
338 %       Not
339 %       you __ _ _ _ _
340         you __ _ _
341 %\set associatedVoice = bg
342         ooo fai- thful _ ooo fai- thful _
343         Ah __ _ _ _ _ _ to com- plete it in you _
344 }
345
346
347 %
348 % Instrumental lines
349 %
350 RhythmB = \relative c'
351 {
352         \clef G
353         \tiny
354
355         % Intro
356
357         \stemDown a'8 [ b cs b ~ ] b [ e ~ ] e4 |   % 1
358         d8 [ e cs b ~ ] b2 |   % 2
359
360         a8 [ b cs b ~ ] b [ e cs a ~ ] |   % 3
361         \stemUp a1 |   % 4
362
363         \stemDown a8 [ b cs b ~ ] b [ e cs a ~ ] |   % 5
364         \stemUp a1 |   % 6
365
366         % Chorus
367
368         s1*14 |   % 7-20
369
370         % Interlude
371
372         \stemDown a8 [ b cs b ~ ] b [ e ~ ] e4 |   % 21
373         d8 [ e cs b ~ ] b2 |   % 22
374         a8 [ b cs b ~ ] b [ e cs a ~ ] |   % 23
375         \stemUp a1 |   % 24
376
377         % Verse
378
379         s1*16 |   % 25-40
380
381         % Coda (chorus again)
382
383         s1 % Blank bar for coda
384
385         s1*15 |   % 41-55
386
387         % Ending
388
389         \stemDown a8 [ b cs b ~ ] b [ e ~ ] e4 |   % 56
390         d8 [ e cs b ~ ] b2 |   % 57
391
392         a8 [ b cs b ~ ] b [ e cs a ~ ] |   % 58
393         \stemUp a1 |   % 59
394
395         \stemDown a8 [ b cs b ~ ] b [ e cs a ~ ] |   % 60
396
397         \stemUp a1^\fermata |   % 61
398 }
399
400
401 %
402 % Chord names
403 %
404 Chords = \chordmode
405 {
406         % Intro
407
408         a4. cs4.:m7 s4 |   % 1
409         d4. e4.:sus4 e4 |   % 2
410
411         a4. cs2:m7 d8 |   % 3
412         s2 d/e |   % 4
413
414         fs4.:m7 e2 d8 |   % 5
415         s2 d/e |   % 6
416
417         % Chorus
418
419         a4. e4./gs s4 |   % 7
420         d4./fs e4./gs s8 cs8:m7 |   % 8
421         s1 |   % 9
422         b2:m7 d/e |   % 10
423         a4. e/gs s4 |   % 11
424         d4./fs e2/gs cs8:sus4.7 |   % 12
425         s2. s8 cs:7 |   % 13
426         s1 |   % 14
427         b1:m7 |   % 15
428         e4.:sus4 e s4 |   % 16
429         b1:m7 |   % 17
430         e4.:sus4 e s8 d8 |   % 18
431         s4. a2/cs b8:m7 |   % 19
432         s2 d4/e e |   % 20
433
434         % Interlude
435
436         a4. cs4.:m7 s4 |   % 21
437         d4. e4.:sus4 e4 |   % 22
438         fs4.:m7 e2 d8 |   % 23
439         s2 d/e |   % 24
440
441         % Verse
442
443         a4. e/gs s4 |
444         d4./fs a/e s4 |   % 28
445         d4. cs:m7 s8 b8:m7 |
446         s4. b:m7/a s4 |   % 30
447         e4./gs d/fs s4 |
448         e1 |   % 32
449         a1 |
450 %       d1/e |   % 34
451 % alt:
452         c2/d d |   % 34
453
454         a4. e/gs s4 |
455         d4./fs a/e s4 |   % 36
456         d4. cs:m7 s4 |
457         b4.:m7 b:m7/a s4 |   % 38
458         e4./gs d/fs s4 |
459         e4.:sus4 e s4 |   % 40
460         a1 |
461 %       d1/e |   % 42
462 % alt:
463         c2/d d |   % 42
464
465         % Coda (chorus again)
466
467 s1 % Blank bar for coda
468
469         b2:m7 d4/e e |   % 43
470         a4. e4./gs s4 |
471         d4./fs e4./gs s8 cs8:m7 |   % 45
472         s1 |
473 %       b2:m7 d/e |   % 47
474 % On Ed's chart it's like so:
475         d/e |   % 47
476         a4. e/gs s4 |
477         d4./fs e2/gs cs8:sus4.7 |   % 49
478         s2. s8 cs:7 |
479         s1 |   % 51
480         b1:m7 |
481         e4.:sus4 e s4 |   % 53
482         b1:m7 |
483         e4.:sus4 e s8 d8 |   % 55
484         s4. a2/cs b8:m7 |
485         s2 d4/e e |   % 57
486
487         % Ending
488
489
490         a4. cs4.:m7 s4 |
491         d4. e4.:sus4 e4 |   % 59
492
493         a4. cs2:m7 d8 |
494         s2 d/e |
495
496         fs4.:m7 e2 d8 |
497
498         s1 |
499 }
500
501
502 %
503 % Chord rhythms
504 %
505 StaffC = \relative c
506 {
507         \numericTimeSignature
508         \override NoteHead #'style = #'slash
509         \teeny
510
511         % Intro
512
513         \stemDown c'4. c8 ~ c4 c |   %1
514         c4. c8 ~ c4 c |   % 2
515
516         c4. c8 ~ c4. c8 ~ |   % 3
517         c4 c c c |   % 4
518
519         c4. c8 ~ c4. c8 ~ |   % 5
520         c4 c c c |   % 6
521
522         % Chorus
523
524         c4. c8 ~ c4 c |   % 7
525         c4. c8-> c4 r8 c8 ~ |   % 8
526         c4 c c c |   % 9
527         c4 c c c |   % 10
528         c4. c8 ~ c4 c |   % 11
529         c4. c8 ~ c4. c8 ~ |   % 12
530         c4 c c r8 c8 ~ |   % 13
531         c4 c c c |   % 14
532
533         c4 c c c |   % 15
534         c4. c8 ~ c4 c |   % 16
535         c4 c c c |   % 17
536         c4. c8 ~ c4 r8 c8 ~ |   % 18
537         c4. c8 ~ c4. c8 ~ |   % 19
538         c4 c c c |   % 20
539
540         % Interlude
541
542         c4. c8 ~ c4 c |   % 21
543         c4. c8 ~ c4 c |   % 22
544         c4. c8 ~ c4. c8 ~ |   % 23
545         c4 c c c |   % 24
546
547         % Verse
548
549         c4. c8 ~ c4 c |   % 25
550         c4. c8 ~ c4 c |   % 26
551         c4. c8 ~ c4 r8 c8 ~ |   % 27
552         c4. c8 ~ c4 c |   % 28
553         c4. c8 ~ c4 c |   % 29
554         c4 c c c |   % 30
555         c4 c c c |   % 31
556         c4 c c c |   % 32
557
558         c4. c8 ~ c4 c |   % 33
559         c4. c8 ~ c4 c |   % 34
560         c4. c8 ~ c4 c |   % 35
561         c4. c8 ~ c4 c |   % 36
562         c4. c8 ~ c4 c |   % 37
563         c4. c8 ~ c4 c |   % 38
564         c4 c c c |   % 39
565         c4 c c c |   % 40
566
567         % Coda (chorus again)
568
569 \stopStaff s1 \startStaff
570
571         c4 c c c |   % 41
572         c4. c8 ~ c4 c |   % 42
573         c4. c8-> c4 r8 c8 ~ |   % 43
574         c4 c c c |   % 44
575         c4 c c c |   % 45
576         c4. c8 ~ c4 c |   % 46
577         c4. c8 ~ c4. c8 ~ |   % 47
578         c4 c c r8 c8 ~ |   % 48
579         c4 c c c |   % 49
580
581         c4 c c c |   % 50
582         c4. c8 ~ c4 c |   % 51
583         c4 c c c |   % 52
584         c4. c8 ~ c4 r8 c8 ~ |   % 53
585         c4. c8 ~ c4. c8 ~ |   % 54
586         c4 c c c |   % 55
587
588         % Ending
589
590
591         \stemDown c4. c8 ~ c4 c |   % 56
592         c4. c8 ~ c4 c |   % 57
593
594         c4. c8 ~ c4. c8 ~ |   % 58
595         c4 c c c |   % 59
596
597         c4._\markup { \italic { rit. } } c8 ~ c4. c8 ~ |   % 60
598
599         c1 ^\fermata |   % 61
600 }
601
602
603 \score
604 {
605         <<
606                 \Global         % The "roadmap" that everything else depends on
607
608                 \context Staff
609                 <<
610                         \new Voice = "lead" \LeadXvoxA
611                         \new Lyrics \lyricsto "lead" \LeadXvoxATextA
612                         \new Voice \RhythmB
613                 >>
614
615                 \new Staff
616                 <<
617                         \new Voice = "bg" \BgXvoxA
618                         \new Lyrics \lyricsto "bg" \BgXvoxATextA
619                 >>
620
621                 \new ChoirStaff
622                 <<
623                         \new ChordNames \Chords
624                         \new RhythmicStaff \StaffC
625                 >>
626
627                 \set Score.skipBars = ##t
628                 \set Score.melismaBusyProperties = #'()
629         >>
630 }
631
632 \paper
633 {
634         #(define fonts (make-pango-font-tree
635                 "Times New Roman"
636                 "LilyJazz Text"
637                 "Luxi Mono"
638                 (/ staffSize 20)))
639
640 % Don't spread staves vertically across last page (default: t)
641 %       ragged-last-bottom = ##f
642 % Don't spread staves vertically across the page (default: f)
643 %       ragged-bottom = ##t
644 % Allow partial line for last stave (default: f)
645         ragged-last = ##t
646
647 % To find out what's eating the space at the top...
648 %       annotate-spacing = ##t
649 }
650