]> Shamusworld >> Repos - music/blob - i-could-sing-of-your-love-forever.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / i-could-sing-of-your-love-forever.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 % or 16
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)
14                 { \fontsize #3.5 "I Could Sing Of Your Love Forever" } }
15         composer = \markup { \override #'(font-family . sans) "Martin Smith" }
16         arranger = \markup { \override #'(font-family . sans) "arr. Ed Smart" }
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 f \major
28         \numericTimeSignature
29         \time 4/4
30
31         % Intro
32
33         \repeat volta 2
34         {
35                 s1*4 |   % 1-4
36         }
37
38         \repeat volta 2
39         {
40                 % Verse
41
42                 \mark \markup { \override #'(font-family . sans) { \box { A } } }
43
44                 s1*8 \bar "||"   % 5-12
45
46                 % Chorus
47
48                 \mark \markup { \override #'(font-family . sans) { \box { B } } }
49
50                 s1*8 |   % 13-20
51         }
52         \alternative
53         {
54                 {
55                         s1*4 |   % 21-24
56                 }
57                 {
58                         s1 |   % 25
59                 }
60         }
61
62         % Bridge
63
64         s1*7 \bar "||"   % 26-32
65
66         % Solo
67
68         \mark \markup { \override #'(font-family . sans) { \box { C } } }
69
70         \key g \major
71
72         s1*8 |   % 33-40
73
74         % Chorus (redux)
75
76         \key f \major
77
78         \repeat volta 2
79         {
80                 \mark \markup { \override #'(font-family . sans) { \box { D } } }
81
82                 s1*8 |   % 41-48
83         }
84
85         \mark \markup { \override #'(font-family . sans) { \box { E } } }
86
87         s1*9 \bar "|."   % 49-57
88 }
89
90
91 %
92 % Lead vocal
93 %
94 LeadVox = \relative c'
95 {
96         \clef G
97
98         % Intro
99
100         R1*4 |   % 1-4
101
102         % Verse
103
104         r8 c' c8 a16 a ~ a g8 g16 ~ g f f8 |   % 5
105         r8 c' c8 a16 a ~ a g8 g16 ~ g f f8 |   % 6
106         r8 c' c8 a16 a ~ a g8 g16 ~ g f8. |   % 7
107         g8 g g f16 a ~ a g8 g16 ~ g f f8 |   % 8
108         r8 c' c8 a16 a ~ a g8 g16 ~ g f f8 |   % 9
109         r8 c' c8 a16 a ~ a g8 g16 ~ g f f8 |   % 10
110         r8 c' c c c c c c |   % 11
111         d8 c c c a4 ( g8 f ) |   % 12
112
113         % Chorus
114
115         r4 f8 f f g a c ~ |   % 13
116         c4 f,8 g ~ g a ~ a4 |   % 14
117         r4 f8 f f g a c ~ |   % 15
118         c4 a8 a ~ a g4 ( f8 ) |   % 16
119         r4 f8 f f g a c ~ |   % 17
120         c4 f,8 g ~ g a ~ a4 |   % 18
121         r4 f8 f f g a c ~ |   % 19
122         c4 a8 a ~ a g4 ( f8 ) |   % 20
123
124         R1 |   % 21
125         R1 |   % 22
126         R1 |   % 23
127         R1 |   % 24
128
129         r2 bf16 a8 g16 ~ g f8. |   % 25
130
131         % Bridge
132
133         d8 f4. r2 |   % 26
134         r4 r8 f d'16 c8 c16 ~ c8 c |   % 27
135         a4 ( g ) r2 |   % 28
136         r4 r8 f bf16 a8 g16 ~ g f8. |   % 29
137         d4 f8 f r f f d' ~ |   % 30
138         d8 c4 c8 ~ c a c d ~ |   % 31
139         d8 c4 a8 ( ~ a g4 f8 ) |   % 32
140
141         % Solo
142
143         R1*8 |   % 33-40
144
145         % Chorus (redux)
146
147         r4 f8 f f g a c ~ |   % 41
148         c4 f,8 g ~ g a ~ a4 |   % 42
149         r4 f8 f f g a c ~ |   % 43
150         c4 a8 a ~ a g4 ( f8 ) |   % 44
151         r4 f8 f f g a c ~ |   % 45
152         c4 f,8 g ~ g a ~ a4 |   % 46
153         r4 f8 f f g a c ~ |   % 47
154         c4 a8 a ~ a g4 ( f8 ) |   % 48
155
156         r4 f8 f f g a c ~ |   % 49
157         c4 f,8 g ~ g a ~ a4 |   % 50
158         r4 f8 f f g a c ~ |   % 51
159         c4 a8 a ~ a g4 ( f8 ) |   % 52
160         r4 f8 f f g a c ~ |   % 53
161         c4 f,8 g ~ g a ~ a4 |   % 54
162         r4 f8 f f g a c ~ |   % 55
163         c4 a8 a ~ a g4 ( f8 ) ~ |   % 56
164         f1^\fermata |   % 57
165 }
166
167
168 LeadVoxText = \lyricmode
169 {
170         O- ver the moun- _ tains and _ the sea
171         Your ri- ver runs _ with love _ for me
172         And I will o- _ pen up _ my heart
173         and let the hea- _ ler set _ me free
174
175         I'm hap- py to _ be in _ the truth
176         And I will dai- _ ly lift _ my hands
177         For I will al- ways sing of
178         when your love came down __ _ _
179
180         I could sing of your love _ for- e- _ ver _
181         I could sing of your love _ for- e- _ ver _
182         I could sing of your love _ for- e- _ ver _
183         I could sing of your love _ for- e- _ ver _
184
185         Oh I feel _ like dan- cing
186         It's fool- ish- ness _ I know _
187         But when the world _ has seen the light
188         they will dance _ with joy _ like we're dan- _ cing now __ _ _ _
189
190         I could sing of your love _ for- e- _ ver _
191         I could sing of your love _ for- e- _ ver _
192         I could sing of your love _ for- e- _ ver _
193         I could sing of your love _ for- e- _ ver _
194
195         I could sing of your love _ for- e- _ ver _
196         I could sing of your love _ for- e- _ ver _
197         I could sing of your love _ for- e- _ ver _
198         I could sing of your love _ for- e- _ ver _
199 }
200
201
202 %
203 % Chord names
204 %
205 Chords = \chordmode
206 {
207         % Intro
208
209         f2.. g8:m11 |   % 1
210         s1 |   % 2
211         bf1:9^7 |   % 3
212         bf2/c c |   % 4
213
214         % Verse
215
216         f1 |   % 5
217         g1:m11 |   % 6
218         bf1:9^7 |   % 7
219         bf4..:/c c16 s2 |   % 8
220         f1 |   % 9
221         g1:m11 |   % 10
222         bf1:9^7 |   % 11
223         bf2/c c |   % 12
224
225         % Chorus
226
227         f2.. g8:m11 |   % 13
228         s1 |   % 14
229         bf2..:9^7 bf8/c |   % 15
230         s2 c |   % 16
231         f2.. g8:m11 |   % 17
232         s1 |   % 18
233         bf2..:9^7 bf8/c |   % 19
234         s2 c |   % 20
235
236         f2.. g8:m11 |   % 21
237         s1 |   % 22
238         bf2..:9^7 bf8/c |   % 23
239         s2 c |   % 24
240
241         g1:m11 |   % 25
242
243         % Bridge
244
245         f1/a |   % 26
246         bf1:9^7 |   % 27
247         bf4./c c8 s2 |   % 28
248         ef1:maj7 |   % 29
249         d1:m9 |   % 30
250         g4.:m7 f8/a s2 |   % 31
251         bf4./c c/d d4 |   % 32
252
253         % Solo
254
255         g2.. a8:m11 |   % 33
256         s1 |   % 34
257         c1:maj7 |   % 35
258         c4../d d16 s2 |   % 36
259         g2.. a8:m11 |   % 37
260         s1 |   % 38
261         c1:maj7 |   % 39
262         bf2./c c4 |   % 40
263
264         % Chorus (redux)
265
266         f2.. g8:m11 |   % 41
267         s1 |   % 42
268         bf2..:maj7 bf8/c |   % 43
269         s4.. c16 s2 |   % 44
270         f2.. g8:m11 |   % 45
271         s1 |   % 46
272         bf2..:maj7 bf8/c |   % 47
273         s2 c |   % 48
274
275         f2.. g8:m11 |   % 49
276         s1 |   % 50
277         bf2..:maj7 bf8/c |   % 51
278         s2 c |   % 52
279         f2.. g8:m11 |   % 53
280         s1 |   % 54
281         bf1:maj7 |   % 55
282         bf2/c c |   % 56
283         f1 |   % 57
284 }
285
286
287 %
288 % Chord rhythms
289 %
290 StaffC = \relative c
291 {
292         \numericTimeSignature
293         \override NoteHead #'style = #'slash
294         \tiny
295
296         % Intro
297
298         c4 c c c8 c ~ |   % 1
299         c4 c c c |   % 2
300         c4 c c c |   % 3
301         c4 c c c |   % 4
302
303         % Verse
304
305         c4 ~ c8. c16 ~ c4 c |   % 5
306         c4 ~ c8. c16 ~ c4 c |   % 6
307         c4 ~ c8. c16 ~ c4 c |   % 7
308         c4 ~ c8. c16 ~ c4 c |   % 8
309         c4 ~ c8. c16 ~ c4 c |   % 9
310         c4 c8. c16 ~ c4 c |   % 10
311         c4 c c c |   % 11
312         c8-> c c c c c c c |   % 12
313
314         % Chorus
315
316         c4 c c c8 c ~ |   % 13
317         c4 c c c |   % 14
318         c4 c c c8 c-> ~ |   % 15
319         c4 c c c |   % 16
320         c4 c c c8 c ~ |   % 17
321         c4 c c c |   % 18
322         c4 c c c8 c-> ~ |   % 19
323         c4 c c c |   % 20
324
325         c4 c c c8 c ~ |   % 21
326         c4 c c c |   % 22
327         c4 c c c8 c ~ |   % 23
328         c4 c c c |   % 24
329
330         c4. c8 ~ c4 c |   % 25
331
332         % Bridge
333
334         c4. c8 ~ c4 c |   % 26
335         c4. c8 ~ c4 c |   % 27
336         c4. c8 ~ c4 c |   % 28
337         c4. c8 ~ c4 c |   % 29
338         c4. c8 ~ c4 c |   % 30
339         c4.-> c8-> ~ c4 c |   % 31
340         c4.-> c8-> ~ c4 c-> |   % 32
341
342         % Solo
343
344         c4 c c c8 c-> ~ |   % 33
345         c4 c8. c16 ~ c4 c |   % 34
346         c4 c8. c16 ~ c4 c |   % 35
347         c4 c8. c16 ~ c4 c |   % 36
348         c4 c c c8 c-> ~ |   % 37
349         c4 c8. c16 ~ c4 c |   % 38
350         c4 c8. c16 ~ c4 c |   % 39
351         c4 c c c |   % 40
352
353         % Chorus (redux)
354
355         c4 c c c8 c-> ~ |   % 41
356         c4 c8. c16 ~ c4 c |   % 42
357         c4 c c c8 c-> ~ |   % 43
358         c4 c8. c16 ~ c4 c |   % 44
359         c4 c c c8 c-> ~ |   % 45
360         c4 c8. c16 ~ c4 c |   % 46
361         c4 c c c8 c-> ~ |   % 47
362         c4 c c c |   % 48
363
364         c4-> c c c8 c ~ |   % 49
365         c4 c-> c c-> |   % 50
366         c4 c-> c c8-> c ~ |   % 51
367         c4 c c c |   % 52
368         c4 c c c8 c-> ~ |   % 53
369         c4 c c c |   % 54
370         c4-> c c c |   % 55
371         c2->_\markup { \italic { rit. } } c-> |   % 56
372         c1^\fermata |   % 57
373 }
374
375
376 \score
377 {
378         <<
379                 \Global         % The "roadmap" that everything else depends on
380
381                 \context Staff
382                 <<
383                         \new Voice = "lead" \LeadVox
384                         \new Lyrics \lyricsto "lead" \LeadVoxText
385                 >>
386
387                 \new ChoirStaff
388                 <<
389                         \new ChordNames \Chords
390                         \new RhythmicStaff \StaffC
391                 >>
392
393                 \set Score.skipBars = ##t
394                 \set Score.melismaBusyProperties = #'()
395         >>
396 }
397
398
399 \paper
400 {
401         #(define fonts (make-pango-font-tree
402                 "Times New Roman"
403                 "LilyJAZZText"
404                 "Luxi Mono"
405                 (/ staffSize 20)))
406
407 % Don't spread staves vertically across last page (default: t)
408 %       ragged-last-bottom = ##f
409 % Don't spread staves vertically across the page (default: f)
410 %       ragged-bottom = ##t
411 % Allow partial line for last stave (default: f)
412 %       ragged-last = ##t
413
414 % To find out what's eating the space at the top...
415 %       annotate-spacing = ##t
416 }
417