]> Shamusworld >> Repos - music/blob - word-of-god-speak.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / word-of-god-speak.ly
1 \version "2.19.0"
2 \include "pop-chords.ly"
3 \include "english.ly"
4
5 % Good sizes are 16, 18, & 20 (11, 13, 14, 23, 26)
6 staffSize = #18
7 #(set-default-paper-size "letter")
8 #(set-global-staff-size staffSize)
9 #(ly:set-option (quote no-point-and-click))
10
11 \header
12 {
13         title    = \markup { \override #'(font-family . sans) \fontsize #3.5 "Word Of God, Speak" }
14 %       composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "" }
15         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Ed Smart" }
16         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
17 }
18
19 % Useful tweak abbreviations (hn = harmony note)
20
21 hn = #(define-music-function (parser location arg) (ly:music?)
22 ;; Harmony Note: Set the tweaks property of the passed in note to use a smaller font
23
24   (set! (ly:music-property arg 'tweaks)
25     (acons 'font-size -3.0 (ly:music-property arg 'tweaks))) arg)
26
27 %
28 % Song's structure
29 %
30 Global =
31 {
32         \key c \major
33         \numericTimeSignature
34         \time 4/4
35
36         % Intro
37
38         \once \override TextScript #'padding = #2.0
39         s1*0^\markup { \large \italic { Piano only } }
40
41         s1*4 \bar "||"   % 1-4
42
43         % Verse
44
45         \mark \markup { \override #'(font-family . sans) { \box { A } } }
46         s1*8 \bar "||"   % 5-12
47
48         % Chorus
49
50         \mark \markup { \override #'(font-family . sans) { \box { B } } }
51         s1*8 \bar "||"   % 13-20
52
53         % Midtro
54
55         \mark \markup { \override #'(font-family . sans) { \box { B2 } } }
56         s1*4 \bar "||"   % 21-24
57
58         % Verse
59
60         \mark \markup { \override #'(font-family . sans) { \box { C } } }
61         s1*8 \bar "||"   % 25-32
62
63         % Chorus
64
65         \mark \markup { \override #'(font-family . sans) { \box { D } } }
66         s1*8 \bar "||"   % 33-40
67
68         \mark \markup { \override #'(font-family . sans) { \box { E } } }
69         s1*9 \bar "||"   % 41-49
70
71         \mark \markup { \override #'(font-family . sans) { \box { F } } }
72         s1*4 \bar "|."  % 96-100
73 }
74
75
76 %
77 % Lead vocal
78 %
79 LeadVox = \relative c'
80 {
81         % Intro
82
83         r1 |   % 1
84         r1 |   % 2
85         r1 |   % 3
86         r4 r8. c16 e8 g a g ~ |   % 4
87
88         % Verse
89
90         g2 ~ g8 e16 g a4 ~ |   % 5
91         a16 g g8 ~ g4 r g8 g16 g |   % 6
92         c,16 c8. c4 r c16 d8. ~ |   % 7
93         d8 c ~ c8. c16  e8 g a g ~ |   % 8
94
95         g2 ~ g8. e16 a4 ~ |   % 9
96         a16 g g8 ~ g2 g8 g16 g ~ |   % 10
97         g2 r8. g16 c d8 d16 ~ |   % 11
98         d2 <c, \hn e>8 <d \hn f>16 <e \hn g> ~ <e \hn g>8 <e \hn g> ~ |   % 12
99
100         % Chorus
101
102         <e \hn g>4 r8 <g, \hn c>16 <g \hn c> <e' \hn g>8 <d \hn f> <c \hn e> <d \hn g> ~ |   % 13
103         <d \hn g>4 r <d \hn g>8 <d \hn g> <e \hn g> <d \hn g> ~ |   % 14
104         <d \hn g>8 <c \hn f>16 <c \hn f> ~ <c \hn f>2 <a \hn c>8 <d \hn g> ~ |   % 15
105         <d \hn g>8 <c \hn f>16 <c \hn f> r8. <a \hn c>16 <\hn g c \hn e>8 <\hn a d \hn f> <\hn c e \hn g> <\hn c e \hn g> ~ |   % 16
106
107         <\hn c e \hn g>4 r8.<g \hn e'>16 <\hn c e \hn g>8 <\hn a d \hn f> <\hn g c \hn e> <\hn c d \hn g> ~ |   % 17
108         <\hn c d \hn g>4 r <\hn b d \hn g>8 <\hn b d \hn g> <\hn c e \hn g> <\hn bf d \hn g> ~ |   % 18
109         <\hn bf d \hn g>8 <\hn bf c \hn f>16 <\hn bf c \hn f> ~ <\hn bf c \hn f>4 r8 <a \hn c> <c \hn f> <\hn a d \hn g> ~ |   % 19
110         <\hn a d \hn g>8 <\hn a c \hn f>16 <\hn a c \hn f> ~ <\hn a c \hn f>4 <g \hn g'>8 <g \hn g'>16 <g \hn g'> ~ <g \hn g'>8 <g \hn g'> ~ |   % 20
111
112         % Midtro
113
114         <g \hn g'>4 r r2 |   % 21
115         r1 |   % 22
116         r1 |   % 23
117         r4 r8. <\hn g c>16 <\hn c e>8 <\hn e g> <\hn f a> <\hn e g> ~ |   % 24
118
119         % Verse
120
121         <\hn e g>4 r r8 <\hn c e>16 <\hn e g> <\hn f a>4 ~ |   % 25
122         <\hn f a>16 <\hn e g> <\hn e g>8 ~ <\hn e g>4 r8. g16 g8 g16 g ~ |   % 26
123         g16 c,8. r4 r8. c16 c8 d16 c16 ~ |   % 27
124         c4 r <\hn c e>8 <\hn e g> <\hn f a> <\hn e g> ~ |   % 28
125
126         <\hn e g>4 r r8 <\hn c e>16 <\hn e g> <\hn f a>4 ~ |   % 29
127         <\hn f a>16 <\hn e g> <\hn e g>8 ~ <\hn e g>4 r8. g16 g8 g16 g ~ |   % 30
128         g16 g r8 r4 r <\hn g, c \hn f>16 <\hn c d \hn g>8 <\hn c d \hn g>16 ~ |   % 31
129         <\hn c d \hn g>4 r <\hn g c \hn e>8 <\hn a d \hn f>16 <\hn c e \hn g> ~ <\hn c e \hn g>8 <\hn c e \hn g> ~ |   % 32
130
131         % Chorus
132
133         <\hn c e \hn g>4 r8 <\hn g c>16 <\hn g c> <\hn c e \hn g>8 <\hn a d \hn f> <\hn g c \hn e> <\hn c d \hn g> ~ |   % 33
134         <\hn c d \hn g>2 <\hn b d \hn g>8 <\hn b d \hn g> <\hn c e \hn g> <\hn bf d \hn g> ~ |   % 34
135         <\hn bf d \hn g>8 <\hn bf c \hn f>16 <\hn bf c \hn f> ~ <\hn bf c \hn f>2 <a \hn c>8 <\hn a d \hn g> ~ |   % 35
136         <\hn a d \hn g>8 <\hn a c \hn f>16 <\hn a c \hn f> r8. <a \hn c>16 <\hn g c \hn e>8 <\hn a d \hn f> <\hn c e \hn g> <\hn c e \hn g> ~ |   % 36
137
138         <\hn c e \hn g>4 r8.<g \hn e>16 <\hn c e \hn g>8 <\hn a d \hn f> <\hn g c \hn e> <\hn c d \hn g> ~ |   % 37
139         <\hn c d \hn g>4 r <\hn b d \hn g>8 <\hn b d \hn g> <\hn c e \hn g> <\hn bf d \hn g> ~ |   % 38
140         <\hn bf d \hn g>8 <\hn bf c \hn f>16 <\hn bf c \hn f> ~ <\hn bf c \hn f>4 r8 <a \hn c> <c \hn f> <\hn a d \hn g> ~ |   % 39
141         <\hn a d \hn g>8 <\hn a c \hn f>16 <\hn a c \hn f> ~ <\hn a c \hn f>4 <\hn g f' \hn g>8 <\hn a e' \hn a>16 <\hn c d \hn g \hn c> ~ <\hn c c \hn g' \hn c>8 <\hn c e \hn g \hn c> ~ |   % 40
142
143         <\hn c e \hn g \hn c>4 r8 <\hn g c \hn e \hn g>16 <\hn g c \hn e \hn g> <\hn c \hn e g \hn c>8 <\hn a \hn d f \hn a> <\hn g \hn c e \hn g> <\hn g \hn c e \hn g> ~ |   % 41
144         <\hn g \hn c d \hn g>4 r <\hn g \hn b d \hn g>8 <\hn g \hn b d \hn g> <\hn a \hn c e \hn g> <\hn bf d \hn g> ~ |   % 42
145         <\hn bf d \hn g>8 <\hn bf c \hn f>16 <\hn bf c \hn f> ~ <\hn bf c \hn f>4 r <a \hn c>8 <\hn a d \hn g> ~ |   % 43
146         <\hn a d \hn g>8 <\hn a c \hn f>16 <\hn a c \hn f> r8. <a \hn c \hn f>16 <\hn g c \hn e \hn g>8 <\hn a d \hn f \hn a> <\hn c e \hn g \hn c> <\hn c e \hn g \hn c> ~ |   % 44
147
148         <\hn c e \hn g \hn c>4 r8. <c \hn e \hn g>16 <\hn c \hn e g \hn c>8 <\hn a \hn d f \hn a> <\hn g \hn c e \hn g> <\hn g \hn c e \hn g> ~ |   % 45
149         <\hn g \hn c d \hn g>4 r <\hn g \hn b d \hn g>8 <\hn g \hn b d \hn g> <\hn a \hn c e \hn g> <\hn bf d \hn g> ~ |   % 46
150         <\hn bf d \hn g>8 <\hn bf c \hn f>16 <\hn bf c \hn f> ~ <\hn bf c \hn f>4 r8 <a \hn c> <c \hn f> <\hn a d \hn g> ~ |   % 47
151         <\hn a d \hn g>8 <\hn a c \hn f>16 <\hn a c \hn f> ~ <\hn a c \hn f>2 r4 |   % 48
152         r4 r8. c16 e8 g a g ~ |   % 49
153
154         % End
155
156         g2 r8 e16 g a4 ~ |   % 50
157         a16 g g8 ~ g4 r g8 g16 g |   % 51
158         c,16 c8. c4 r c16 d8. ~ |   % 52
159         d8 c ~ c2.-\fermata |   % 53
160 }
161
162
163 LeadVoxText = \lyricmode
164 {
165         I'm find -- ing my -- self _ _ at a loss _ for words _
166         and the fun -- ny thing is, it's o -- _ kay _
167         The last thing I need _ _ is to _ be heard _
168         but to hear _ what you might say _
169
170         Word of God _ speak, _ would you pour down like rain, _
171         wash -- ing my eyes _ to see _ your ma -- _ jes -- ty
172         To be still and know _ that you're in this place, _
173         please let me stay _ and rest _ in your ho -- _ li -- ness _
174         Word of God _ speak. _
175
176         I'm find -- in' my -- self _ in the midst _ of you _
177         be -- yond the mu -- _ sic, be -- yond the noise, _
178         all that I need _ is to be _ with you, _
179         and in the qui -- _ et, hear your voice, _
180
181         Word of God _ speak, _ would you pour down like rain, _
182         wash -- ing my eyes _ to see _ your ma -- _ jes -- ty
183         To be still and know _ that you're in this place, _
184         please let me stay _ and rest _ in your ho -- _ li -- ness _
185
186         Word of God _ speak, _ would you pour down like rain, _
187         wash -- ing my eyes _ to see _ your ma -- _ jes -- ty
188         To be still and know _ that you're in this place, _
189         please let me stay _ and rest _ in your ho -- _ li -- ness _
190
191         I'm find -- ing my -- self _ at a loss _ for words _
192         and the fun -- ny thing is, it's o -- _ kay _
193 }
194
195
196 Riffs = \relative c''
197 {
198 }
199
200
201 %
202 % Chord names
203 %
204 Chords = \chordmode
205 {
206         % Intro
207
208         c2. c4:sus4 |   % 1
209         c2. c4:sus2 |   % 2
210         c2./f c4:sus4/f |   % 3
211         c2./f c4:sus2/f |   % 4
212
213         % Verse
214
215         c2. c4:sus4 |   % 5
216         c2. c4:sus2 |   % 6
217         c2./f c4:sus4/f |   % 7
218         c2./f c4:sus2/f |   % 8
219
220         c2. c4:sus4 |   % 9
221         c2. c4:sus2 |   % 10
222         c2./f c4:sus4/f |   % 11
223         c1/f |   % 12
224
225         % Chorus
226
227         c1 |   % 13
228         g2:sus4 g4 a:m11 |   % 14
229         bf1:sus2 |   % 15
230         f2 c/f |   % 16
231
232         c1 |   % 17
233         g2:sus4 g4 a:m11 |   % 18
234         bf1:sus2 |   % 19
235         f1 |   % 20
236
237         % Midtro
238
239         c2. c4:sus4 |   % 21
240         c2. c4:sus2 |   % 22
241         c2./f c4:sus4/f |   % 23
242         c2./f c4:sus2/f |   % 24
243
244         % Verse
245
246         c2. c4:sus4 |   % 25
247         c2. c4:sus2 |   % 26
248         c2./f c4:sus4/f |   % 27
249         c2./f c4:sus2/f |   % 28
250
251         c2. c4:sus4 |   % 29
252         c2. c4:sus2 |   % 30
253         c2./f c4:sus4/f |   % 31
254         c1 |   % 32
255
256         % Chorus
257
258         c1 |   % 33
259         g2:sus4 g4 a:m11 |   % 34
260         bf1:sus2 |   % 35
261         f2 c/f |   % 36
262
263         c1 |   % 37
264         g2:sus4 g4 a:m11 |   % 38
265         bf1:sus2 |   % 39
266         f1 |   % 40
267
268         c1 |   % 41
269         g2:sus4 g4 a:m11 |   % 42
270         bf1:sus2 |   % 43
271         f2 c/f |   % 44
272
273         c1 |   % 45
274         g2:sus4 g4 a:m11 |   % 46
275         bf1:sus2 |   % 47
276         f1 |   % 48
277         f1:sus2 |   % 49
278
279         % End
280
281         c2. c4:sus4 |   % 50
282         c2. c4:sus2 |   % 51
283         c2./f c4:sus4/f |   % 52
284         f1:sus2 |   % 53
285 }
286
287
288 %
289 % Chord rhythms
290 %
291 Rhythm = \relative c
292 {
293         \numericTimeSignature
294         \override NoteHead #'style = #'slash
295         \teeny
296
297         % Intro
298
299         c4 c c c |   % 1
300         c4 c c c |   % 2
301         c4 c c c |   % 3
302         c4 c c c |   % 4
303
304         % Verse
305
306         c4 c c c |   % 5
307         c4 c c c |   % 6
308         c4 c c c |   % 7
309         c4 c c c |   % 8
310
311         c4 c c c |   % 9
312         c4 c c c |   % 10
313         c4 c c c |   % 11
314         c4 c c c |   % 12
315
316         % Chorus
317
318         c4 c c c |   % 13
319         c4 c c c |   % 14
320         c4 c c c |   % 15
321         c4 c c c |   % 16
322
323         c4 c c c |   % 17
324         c4 c c c |   % 18
325         c4 c c c |   % 19
326         c4 c c c |   % 20
327
328         % Midtro
329
330         c4 c c c |   % 21
331         c4 c c c |   % 22
332         c4 c c c |   % 23
333         c4 c c c |   % 24
334
335         % Verse
336
337         c4 c c c |   % 25
338         c4 c c c |   % 26
339         c4 c c c |   % 27
340         c4 c c c |   % 28
341
342         c4 c c c |   % 29
343         c4 c c c |   % 30
344         c4 c c c |   % 31
345         c4 c c c |   % 32
346
347         % Chorus
348
349         c4 c c c |   % 33
350         c4 c c c |   % 34
351         c4 c c c |   % 35
352         c4 c c c |   % 36
353
354         c4 c c c |   % 37
355         c4 c c c |   % 38
356         c4 c c c |   % 39
357         c4 c c c |   % 40
358
359         c4 c c c |   % 41
360         c4 c c c |   % 42
361         c4 c c c |   % 43
362         c4 c c c |   % 44
363         c4 c c c |   % 45
364         c4 c c c |   % 46
365         c4 c c c |   % 47
366         c4 c c c |   % 48
367         c1^\fermata |   % 49
368
369         % Outro
370
371         c4 c c c |   % 50
372         c4 c c c |   % 51
373         c4 c c c |   % 52
374         c1^\fermata |   % 53
375 }
376
377
378 Dynamics =
379 {
380         s1*12 |   % 1-12
381         s4_\markup { \italic { Add bass, pad } } s2. |   % 13
382         s1*7 |   % 14-20
383         s4_\markup { \italic { Add perc, Ac. gtrs. } } s2. |   % 21
384         s1*28 |   % 22-49
385         s4_\markup { \italic { Piano only, like intro } } s2. |   % 50
386         s1*2 |   % 51-52
387         s4_\markup { \italic { Full band } } s2. |   % 53
388 }
389
390
391 \score
392 {
393         <<
394                 \Global         % The "roadmap" that everything else depends on
395                 \set Score.skipBars = ##t
396                 \set Score.melismaBusyProperties = #'()
397
398                 \context Staff
399                 <<
400                         \new Voice = "lead" \LeadVox
401                         \new Voice \Riffs
402                         \new Lyrics \lyricsto "lead" \LeadVoxText
403                 >>
404
405                 \new ChoirStaff
406                 <<
407                         \new ChordNames \Chords
408                         \new RhythmicStaff << \Rhythm \Dynamics >>
409                 >>
410         >>
411 }
412
413
414 \paper
415 {
416         #(define fonts (make-pango-font-tree
417                 "Times New Roman"
418                 "LilyJAZZText"
419                 "Luxi Mono"
420                 (/ staffSize 20)))
421
422 % Spread staves vertically across last page (default: t)
423 %       ragged-last-bottom = ##f
424 % Don't spread staves vertically across the page (default: f)
425 %       ragged-bottom = ##t
426 % Allow partial line for last stave (default: f)
427 %       ragged-last = ##t
428
429 % To find out what's eating the space at the top...
430 %       annotate-spacing = ##t
431 }
432