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