]> Shamusworld >> Repos - music/blob - lamb-of-god.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / lamb-of-god.ly
1 % Still need hairpins, directions, dynamics, etc...
2
3 \version "2.19.0"
4 \include "pop-chords.ly"
5 \include "english.ly"
6
7 % Good sizes are 16, 18, & 20 (11, 13, 14, 23, 26)
8 staffSize = #20
9 #(set-default-paper-size "letter")
10 #(set-global-staff-size staffSize)
11 #(ly:set-option (quote no-point-and-click))
12
13 %{ Some useful characters: ‘ ’ “ ” – — † ‡ • … %}
14
15 \header
16 {
17         title    = \markup { \override #'(font-family . sans) \fontsize #3.5 "Lamb of God" }
18         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Twila Paris" }
19         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Craig Harris" }
20         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
21 }
22
23
24 %
25 % Song's structure
26 %
27 Global =
28 {
29         \key c \major
30         \numericTimeSignature
31         \time 3/4
32
33         % Intro
34
35         s2.*3 \bar "||"   % 1-3
36
37         % Verse 1
38
39         \mark \markup { \override #'(font-family . sans) \box { A } }
40
41         s2.*8 \bar "||"   % 4-11
42
43         % Chorus
44
45         \once \override Score.RehearsalMark #'self-alignment-X = #left
46         \mark \markup { \override #'(font-family . sans) { \box { B } } \hspace #1.0 \raise #2.0 \musicglyph #"scripts.segno" }
47
48         s2.*7 |   % 12-18
49
50         \once \override Score.RehearsalMark #'self-alignment-X = #right
51         \once \override Score.RehearsalMark #'break-visibility = #begin-of-line-invisible
52         \mark \markup { \italic { to Coda } \hspace #1.0 \musicglyph #"scripts.coda" }
53
54         s2.*2 \bar "||"   % 19-20
55
56         \mark \markup { \override #'(font-family . sans) \box { C } }
57
58         s2.*8 \bar "||"   % 21-28
59
60         \once \override Score.RehearsalMark #'self-alignment-X = #right
61         \mark \markup { \italic { D.S. al Coda } }
62
63         \stopStaff s2. \startStaff
64         \set Score.currentBarNumber = #29
65
66         % Coda
67
68         \once \override Score.RehearsalMark #'self-alignment-X = #left
69         \mark \markup { { \musicglyph #"scripts.coda" } "Coda" }
70
71         s2.*2 \bar "||"   % 29-30
72
73         \key d \major
74         \mark \markup { \override #'(font-family . sans) \box { D } }
75
76         s2.*8 |   % 31-38
77
78         \repeat volta 2
79         {
80                 \mark \markup { \override #'(font-family . sans) \box { E } }
81
82                 s2.*7 |   % 39-45
83         }
84         \alternative
85         {
86                 {
87                         s2. |   % 46
88                 }
89                 {
90                         s2. \bar "|."   % 47
91                 }
92         }
93 }
94
95
96 %
97 % Lead vocal
98 %
99 LeadVox = \relative c'
100 {
101         \clef G
102
103         % Intro
104
105         s2. |   % 1
106         s2. |   % 2
107         s4 r8 c e g |   % 3
108
109         % Verse
110
111         g4. c,8 e d |   % 4
112         c4. c8 e g |   % 5
113         a4. a8 g e |   % 6
114         g4. g8 c b |   % 7
115         a4. a8 g e |   % 8
116         c4. c8 e g |   % 9
117         g8 c, e4 d |   % 10
118         c4. g'8 c b |   % 11
119
120         % Chorus
121
122         a4. c8 a8. g16 |   % 12
123         g4. c,8 e g |   % 13
124         a4. a8 g e |   % 14
125         g4. g8 c b |   % 15
126         a4. a8 g e |   % 16
127         c4. c8 e g |   % 17
128         g8 c, e4 d |   % 18
129         c4. s |   % 19
130
131         % Verse
132
133         s4 r8 c e g |   % 20
134         g4. c,8 e d |   % 21
135         c4. c8 e g |   % 22
136         a4. a8 g e |   % 23
137         g4. g8 c b |   % 24
138         a4. a8 g e |   % 25
139         c4. c8 e g |   % 26
140         g8 c, e4 d |   % 27
141         c4. g'8 c b |   % 28
142
143         % Coda
144
145         % blank measure between last measure and coda
146         s2.
147
148         c,4. s |   % 29
149
150         % Verse
151
152         s4. d8 fs a |   % 30
153         a4. d,8 fs e |   % 31
154         d4. d8 fs a |   % 32
155         b4. b8 a fs |   % 33
156         a4. a8 d cs |   % 34
157         b4. b8 a fs |   % 35
158         d4. d8 fs a |   % 36
159         a8 d, fs4 e |   % 37
160         d4 r8 a' d cs |   % 38
161
162         % Chorus
163
164         b4. d8 b8. a16 |   % 39
165         a4. d,8 fs a |   % 40
166         b4. b8 a fs |   % 41
167         a4. a8 d cs |   % 42
168         b4. b8 a fs |   % 43
169         d4. d8 fs a |   % 44
170         a8 d, fs4 e |   % 45
171
172         d4 r8 a' d cs |   % 46
173
174         d,2.^\fermata |   % 47
175 }
176
177
178 LeadVoxText = \lyricmode
179 {
180         Your on -- ly son, no sin to hide,
181         but you have sent him from your side,
182         to walk up -- on this guilt -- y sod,
183         and to be -- come the lamb of God.
184
185         Oh lamb of God,
186         sweet lamb of God,
187         I love the ho -- ly lamb of God,
188         Oh, wash me in his pre -- cious blood,
189         my Je -- sus Christ the lamb of God.
190
191         Your gift of love, they cru -- ci -- fied,
192         they laughed and scorned him as he died,
193         the hum -- ble king, they named a fraud,
194         and sac -- ri -- ficed the lamb of God.
195
196         Oh lamb of
197
198         God.
199
200         I was so lost, I should have died,
201         but you have brought me to your side,
202         to be led by your staff and rod,
203         and to be called a lamb of God.
204
205         Oh lamb of God,
206         sweet lamb of God,
207         I love the ho -- ly lamb of God,
208         Oh, wash me in his pre -- cious blood,
209         my Je -- sus Christ, the lamb of God.
210
211         Oh lamb of
212
213         God.
214 }
215
216
217 %
218 % Riffs
219 %
220 Riffs = \relative c'
221 {
222         \teeny
223
224         % Intro
225
226         r4 r8 c8 e g |   % 1
227         g8 c, e4 d |   % 2
228         c4^\fermata s2 |   % 3
229
230         s2.*15 |   % 4-18
231
232         s4. <c' e,>8 <b d,> <c e,> |   % 19
233         <g c,>4 s2 |   % 20
234
235         s2.*9 |   % 21-28 (+1 to skip for coda)
236
237         s4. c,16 d <e d>4 ~ |   % 29
238         <e d>4 <e cs>8 s4. |   % 30
239 }
240
241
242 %
243 % Chord names
244 %
245 Chords = \chordmode
246 {
247         % Intro
248
249         s2. |   % 1
250         f4:maj7 f:maj7/g g:7 |   % 2
251         c2. |   % 3
252
253         % Verse
254
255         c2 f4:maj7 |   % 4
256         c2 s8 g/b |   % 5
257         a2.:m7 |   % 6
258         g4:sus4 g c/e |   % 7
259         f2. |   % 8
260         a4:m7 f2 |   % 9
261         d4:m9 f:maj7 g:9 |   % 10
262         c4:sus4 c c:sus2/e |   % 11
263
264         % Chorus
265
266         f2 b4:m7.5-/f |   % 12
267         c2/e c8 g/b |   % 13
268         a2:m f4:maj9 |   % 14
269         g4:sus4 g c/e |   % 15
270         f2. |   % 16
271         a2:m af4:aug |   % 17
272         c4/g f:maj7 g8:sus4.7 g:7 |   % 18
273         c2. |   % 19
274
275         % Verse
276
277         f2.:maj7/g |   % 20
278         c2 f8:maj7 g:7 |   % 21
279         c2 s8 g/b |   % 22
280         a2:m7 f4:maj7 |   % 23
281         g4:sus4 g c/e |   % 24
282         f2 c4/g |   % 25
283         a4:m f2:maj7 |   % 26
284         d4:m9 f:maj7 g |   % 27
285         c4:sus4 c c/e |   % 28
286
287         % Coda
288
289         % blank measure between last measure and coda
290         s2.
291
292         c2 e4:m7/a |   % 29
293
294         % Verse
295
296         s4 a:7 g:maj7/a |   % 30
297         d2 g8:maj7 a:7 |   % 31
298         d2 s8 a/cs |   % 32
299         b2:m g4:maj9 |   % 33
300         a4:sus4 a d/fs |   % 34
301         g2 d4/a |   % 35
302         b4:m7 g2:maj7 |   % 36
303         e4:m7 g:maj7 a:7 |   % 37
304         d4:sus4 d d/fs |   % 38
305
306         % Chorus
307
308         g2 a4/g |   % 39
309         d2/fs d8 a/cs |   % 40
310         b2:m g4:maj7 |   % 41
311         a4:sus4 a d/fs |   % 42
312         g2 a4 |   % 43
313         b2:m bf4:aug |   % 44
314         d4/a g:maj7 e8:m7/a a:7 |   % 45
315
316         d4:sus4 d d/fs |   % 46
317
318         d2. |   % 47
319 }
320
321
322 %
323 % Chord rhythms
324 %
325 Rhythm = \relative c
326 {
327         \override Staff.TimeSignature #'style = #'()
328         \override NoteHead #'style = #'slash
329         \teeny
330
331         % Intro
332
333         r2. |   % 1
334         c4 c c |   % 2
335         c2.^\fermata |   % 3
336
337         % Verse
338
339         c4 c c |   % 4
340         c4 c c8 c |   % 5
341         c4 c c |   % 6
342         c4 c c |   % 7
343         c4 c c |   % 8
344         c4 c c |   % 9
345         c4 c c |   % 10
346         c4 c c |   % 11
347
348         % Chorus
349
350         c4 c c |   % 12
351         c4 c c8 c |   % 13
352         c4 c c |   % 14
353         c4 c c |   % 15
354         c4 c c |   % 16
355         c4 c c |   % 17
356         c4 c c8 c |   % 18
357         c4 c c |   % 19
358
359         % Verse
360
361         c4 c c |   % 20
362         c4 c c8 c |   % 21
363         c4 c c8 c |   % 22
364         c4 c c |   % 23
365         c4 c c |   % 24
366         c4 c c |   % 25
367         c4 c c |   % 26
368         c4 c c |   % 27
369         c4 c c |   % 28
370
371         % Coda
372
373         % blank measure between last measure and coda
374 %hm. Shouldn't need /startStaff /stopStaff... !!! FIX !!!
375         \stopStaff s2. \startStaff
376
377         c4 c c |   % 29
378
379         % Verse
380
381         c4 c c |   % 30
382         c4 c c8 c |   % 31
383         c4 c c8 c |   % 32
384         c4 c c |   % 33
385         c4 c c |   % 34
386         c4 c c |   % 35
387         c4 c c |   % 36
388         c4 c c |   % 37
389         c4 c c |   % 38
390
391         % Chorus
392
393         c4 c c |   % 39
394         c4 c c8 c |   % 40
395         c4 c c |   % 41
396         c4 c c |   % 42
397         c4 c c |   % 43
398         c4 c c |   % 44
399         c4 c c8 c |   % 45
400
401         c4 c c |   % 46
402
403         c2.^\fermata |   % 47
404 }
405
406
407 Dynamics =
408 {
409         % Intro
410
411         s4_\markup { \italic { Piano } } s2 |   % 1
412         s2.*9 |   % 2-10
413         s4. s4._\markup { \italic { Band in } } |   % 11
414         s2.*34 |   % 12-44 (+1 for blank coda)
415         s4 s2_\markup { \italic { Rit. last time } } |   % 45
416 }
417
418
419 \score
420 {
421         <<
422                 \Global         % The "roadmap" that everything else depends on
423                 \set Score.skipBars = ##t
424                 \set Score.melismaBusyProperties = #'()
425
426                 \context Staff
427                 <<
428                         \new Voice = "lead" \LeadVox
429                         \new Voice \Riffs
430                         \new Lyrics \lyricsto "lead" \LeadVoxText
431                 >>
432
433                 \new ChoirStaff
434                 <<
435                         \new ChordNames \Chords
436 %Capo 3 edition
437 %                       \new ChordNames \transpose f d \Chords
438                         \new RhythmicStaff << \Rhythm \Dynamics >>
439                 >>
440         >>
441 }
442
443
444 \paper
445 {
446         #(define fonts (make-pango-font-tree
447                 "Times New Roman"
448                 "LilyJAZZText"
449                 "Luxi Mono"
450                 (/ staffSize 20)))
451
452 % The first two seem to be obsolete...
453
454 % Don't spread staves vertically across last page (default: t)
455 %       ragged-last-bottom = ##f
456 % Don't spread staves vertically across the page (default: f)
457 %       ragged-bottom = ##t
458 % Allow partial line for last stave (default: f)
459         ragged-last = ##t
460
461 % To find out what's eating the space at the top...
462 %       annotate-spacing = ##t
463 }
464