]> Shamusworld >> Repos - music/blob - lord-i-lift-your-name-on-high.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / lord-i-lift-your-name-on-high.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 %Let's bump up the title size and switch to the chord font. :-)
14
15         title    = \markup { \override #'(font-family . sans)
16                 { \fontsize #3.5 "Lord I Lift Your Name On High" } }
17 %       composer = \markup { \override #'(font-family . sans) "" }
18         arranger = \markup { \override #'(font-family . sans) "arr. Ed Smart/Shamus Hammons" }
19         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
20 }
21
22
23 %
24 % Song's structure
25 %
26 Global =
27 {
28         \clef F
29         \key g \major
30         \numericTimeSignature
31         \time 4/4
32
33         % Intro
34
35         \repeat volta 2
36         {
37                 \once \override Score.RehearsalMark #'self-alignment-X = #left
38                 \mark \markup { \small \italic { Bass line througout } }
39                 s1*4 |   % 1-4
40         }
41
42         \clef G
43
44         \repeat volta 2
45         {
46                 % Verse
47
48                 \mark \markup { \override #'(font-family . sans) { \box { A } } }
49                 s1*8 \bar"||"   % 5-12
50
51                 % Chorus
52
53                 \mark \markup { \override #'(font-family . sans) { \box { B } } }
54                 s1*7 |   % 13-19
55         }
56         \alternative
57         {
58                 {
59                         s1*2 |   % 20-21
60                 }
61                 {
62                         s1 |   % 22
63                 }
64         }
65
66         % Chorus (redux)
67
68         \mark \markup { \override #'(font-family . sans) { \box { C } } }
69         s1*8 |   % 23-30
70
71         % Tag
72
73         s1*4 \bar "|."   % 31-34
74 }
75
76
77 %
78 % Lead vocal
79 %
80 LeadVox = \relative c
81 {
82         \set Voice.autoBeaming = ##f
83
84         % Intro
85
86         s1*4 |   % 1-4
87
88         % Verse
89
90         r4 b'8 [ d ] g [ fs16 e ] ~ e8 [ d ] ~ |   % 5
91         d8 [ d ] ~ d2 r4 |   % 6
92         r4 b8 [ d ] g [ fs16 e ] ~ e8 [ d ] |   % 7
93         e8 ([ d ]) d2 r4 |   % 8
94         r4 b8 [ d ] g [ fs16 e ] ~ e8 [ d ] ~ |   % 9
95         d8 [ d ] ~ d2 r4 |   % 10
96         r4 b8 [ d ] g [ fs16 e ] ~ e8 [ d ] |   % 11
97         e8 ([ d ]) d2 r4 |   % 12
98
99         % Chorus
100
101         r8 b' b [ b ] c4 b8 [ g16 a ] |   % 13
102         r4 d c4. b16 [ b ] |   % 14
103         r4 b8 [ b16 c (] ~ c8 [ b ]) a [ g16 a ] |   % 15
104         r4 d c4. b16 [ b ] |   % 16
105         r4 b8 [ b16 c (] ~ c8 [ b ]) a8 [ g16 a ] ~ |   % 17
106         a4 a8 [ a16 b (] ~ b8 [ a ]) g8 [ fs16 g ] ~ |   % 18
107         g4 e8 [ g ] a [ g16 fs ] ~ fs8 [ g ] ~ |   % 19
108
109         g8 [ g ] ~ g2. |   % 20
110         R1 |   % 21
111
112         g8 \repeatTie [ g ] ~ g2. |   % 22
113
114         % Chorus (redux)
115
116         r8 b b [ b ] c4 b8 [ g16 a ] |   % 23
117         r4 d c4. b16 [ b ] |   % 24
118         r4 b8 [ b16 c (] ~ c8 [ b ]) a [ g16 a ] |   % 25
119         r4 d c4. b16 [ b ] |   % 26
120         r4 b8 [ b16 c (] ~ c8 [ b ]) a8 [ g16 a ] ~ |   % 27
121         a4 a8 [ a16 b (] ~ b8 [ a ]) g8 [ fs16 g ] ~ |   % 28
122         g4 e8 [ g ] a [ g16 fs ] ~ fs8 [ g ] ~ |   % 29
123         g8 [ g ] ~ g2. |   % 30
124
125         % Tag
126
127         r4 e8 [ g ] a [ g16 fs ] ~ fs8 [ g ] ~ |   % 31
128         g8 [ g ] ~ g2. |   % 32
129         r4 e8 [ g ] a [ g16 fs ] ~ fs8 [ g ] ~ |   % 33
130         g8 [ g ] ~ g2.-\fermata |   % 34
131 }
132
133
134 LeadVoxText = \lyricmode
135 {
136         Lord I lift your name _ on _ high _
137         Lord I love to sing _ your prai- _ ses
138         I'm so glad you're in _ my _ life _
139         I'm so glad you came _ to save _ us
140
141         You came from hea- ven to earth
142         to show the way
143         From the earth __ _ _ to the cross
144         my debt to pay
145         From the cross __ _ _ to the grave _
146         from the grave __ _ _ to the sky _
147         Lord I lift your name _ on _ high _
148
149         _ high _
150
151         You came from hea- ven to earth
152         to show the way
153         From the earth __ _ _ to the cross
154         my debt to pay
155         From the cross __ _ _ to the grave _
156         from the grave __ _ _ to the sky _
157         Lord I lift your name _ on _ high _
158
159         Lord I lift your name _ on _ high _
160         Lord I lift your name _ on _ high. _
161 }
162
163
164 %
165 % Riffs
166 %
167 Riffs = \relative c
168 {
169         \set Voice.autoBeaming = ##f
170
171         \tiny
172         g8 [ g ] r a16 [ b ] c8 [ c ] r d16 [ e ] |   % 1
173         d8 [ d ] r a16 [ b ] c [ c8 c16 ] ~ c [ c b a ] |   % 2
174         g8 [ g ] r a16 [ b ] c8 [ c ] r d16 [ e ] |   % 3
175         d8 [ d ] r a16 [ b ] c [ c8 c16 ] ~ c [ c b a ] |   % 4
176         \normalsize
177 }
178
179
180 %
181 % Chord names
182 %
183 Chords = \chordmode
184 {
185         % Intro
186
187         g2 c |   % 1
188         d2 c |   % 2
189         g2 c |   % 3
190         d2 c |   % 4
191
192         % Verse
193
194         g2 c |   % 5
195         d2 c |   % 6
196         g2 c |   % 7
197         d2 c |   % 8
198         g2 c |   % 9
199         d2 c |   % 10
200         g2/b c |   % 11
201         d1 |   % 12
202
203         % Chorus
204
205         g2 c |   % 13
206         d2 c |   % 14
207         g2 c |   % 15
208         d2 c |   % 16
209         g2 c/e |   % 17
210         d2 e4:m7 b8.:m7 a16:m7 |   % 18
211         s2 d |   % 19
212
213         g2 c |   % 20
214         d2 c |   % 21
215
216         g2 c4 d |   % 22
217
218         % Chorus (redux)
219
220         g2 c |   % 23
221         d2 c |   % 24
222         g2 c |   % 25
223         d2 c |   % 26
224         g2 c/e |   % 27
225         d2 e4:m7 b8.:m7 a16:m7 |   % 28
226         s2 d |   % 29
227
228         % Tag
229
230         g2 c |   % 30
231         d2 c |   % 31
232         g2 c |   % 32
233         d2 c |   % 33
234         g1 |   % 34
235 }
236
237
238 %
239 % Chord rhythms
240 %
241 StaffC = \relative c
242 {
243         \set Voice.autoBeaming = ##f
244         \numericTimeSignature
245         \override NoteHead #'style = #'slash
246         \teeny
247
248         % Intro
249
250         c4-\markup { \small \italic { bass solo 1st time, band in 2nd } } c c c |   % 1
251         c4 c c c |   % 2
252         c4 c c c |   % 3
253         c4 c c c |   % 4
254
255         \repeat volta 2
256         {
257                 % Verse
258
259                 c4 c c c |   % 5
260                 c4 c c c |   % 6
261                 c4 c c c |   % 7
262                 c4 c c c |   % 8
263                 c4 c c c |   % 9
264                 c4 c c c |   % 10
265                 c4 c c c |   % 11
266                 c4 c \< c c \! |   % 12
267
268                 % Chorus
269
270                 c4 c c c |   % 13
271                 c4 c c c |   % 14
272                 c4 c c c |   % 15
273                 c4 c c c |   % 16
274                 c4 c c c |   % 17
275                 c4 c c c8. [ c16 ] ~ |   % 18
276                 c4 c c c |   % 19
277         }
278         \alternative
279         {
280                 {
281                         c4 c c c |   % 20
282                         c4 c c c |   % 21
283                 }
284                 {
285                         c4 c c-> c-> |   % 22
286                 }
287         }
288
289         % Chorus (redux)
290
291         c8-> [ c-> ] r4 c8-> [ c-> ] r4 |   % 23
292         c8-> [ c-> ] r4 c c |   % 24
293         c8-> [ c-> ] r4 c8-> [ c-> ] r4 |   % 25
294         c8-> [ c-> ] r4 c c |   % 26
295         c4 c c c |   % 27
296         c4 c c c8. [ c16 ] ~ |   % 28
297         c4 c c c |   % 29
298         c4 c c c |   % 30
299
300         % Tag
301
302         c4 c c c |   % 31
303         c4 c c c |   % 32
304         c4 c c_\markup { \italic { rit. } } c |   % 33
305         c1-\fermata |   % 34
306 }
307
308
309 \score
310 {
311         <<
312                 \Global         % The "roadmap" that everything else depends on
313
314                 \context Staff
315                 <<
316                         \new Voice = "lead" \LeadVox
317                         \new Voice = "riffs" \Riffs
318                         \new Lyrics \lyricsto "lead" \LeadVoxText
319                 >>
320
321                 \new ChoirStaff
322                 <<
323                         \new ChordNames \Chords
324                         \new RhythmicStaff \StaffC
325                 >>
326
327                 \set Score.skipBars = ##t
328                 \set Score.melismaBusyProperties = #'()
329         >>
330 }
331
332
333 \paper
334 {
335         #(define fonts (make-pango-font-tree
336                 "Times New Roman"
337                 "LilyJAZZText"
338                 "Luxi Mono"
339                 (/ staffSize 20)))
340
341 % Don't spread staves vertically across last page (default: t)
342 %       ragged-last-bottom = ##f
343 % Don't spread staves vertically across the page (default: f)
344 %       ragged-bottom = ##t
345 % Allow partial line for last stave (default: f)
346         ragged-last = ##t
347
348 % To find out what's eating the space at the top...
349 %       annotate-spacing = ##t
350 }
351