]> Shamusworld >> Repos - music/blob - i-have-decided-to-follow-jesus.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / i-have-decided-to-follow-jesus.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 = #20
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 "I Have Decided To Follow Jesus" }
14         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Traditional" }
15         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Roger Freeland" }
16         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
17 % Let's try a chord dictionary
18         subtitle = \markup {
19                 \override #'(font-family . sans) \override #'(baseline-skip . 2) {
20                 \center-column { C9 \fret-diagram-terse #"x;3;2;3;3;x;" } "     "
21                 \center-column { \concat{"B7" \chordSharp "9"} \fret-diagram-terse #"x;2;1;2;3;x;" } "     "
22                 \center-column { \concat{"B" \chordFlat "maj7"} \fret-diagram-terse #"x;1;3;2;3;x;" } "     "
23                 \center-column { "A7sus4" \fret-diagram-terse #"x;o;2;o;3;x;" } "     "
24                 \center-column { \concat{"F" \chordSharp "7" \chordSharp "5"} \fret-diagram-terse #"2;x;2;3;3;x;" } "     "
25                 \center-column { \concat{"A" \chordFlat "7" \chordFlat "5"} \fret-diagram-terse #"4;5;4;5;x;x;" } "     "
26                 \center-column { "A13" \fret-diagram-terse #"x;o;2;o;2;2;" } "     "
27                 \center-column { \concat{"C" \chordSharp "m11"} \fret-diagram-terse #"x;4;4;4;5;4;" } "     "
28                 \center-column { \concat{"F" \chordSharp "7" \chordSharp "9"} \fret-diagram-terse #"2;4;2;3;2;5;" } }
29         }
30 }
31
32
33 %
34 % Song's structure
35 %
36 Global =
37 {
38         \key d \major
39         \numericTimeSignature
40         \time 4/4
41
42         % Intro
43
44         s1*8 |   % 1-8
45
46         % Verse
47
48         \repeat volta 3
49         {
50                 \mark \markup { \override #'(font-family . sans) { \box { A } } }
51
52                 s1*14 |   % 9-22
53         }
54         \alternative
55         {
56                 {
57                         s1*4 |   % 23-26
58                 }
59                 {
60                         s1*3 |   % 27-29
61                 }
62         }
63
64         s1 |   % 30
65
66         % Tag
67
68         \repeat volta 1
69         {
70 %       \once \override Score.RehearsalMark #'self-alignment-X = #left
71                 \mark \markup { \override #'(font-family . sans) { \box { B } } } %\small \italic { Women 8vb throughout } }
72
73                 s1*8 |   % 31-38
74         }
75
76         % Ending
77
78 %       \once \override Score.RehearsalMark #'self-alignment-X = #left
79         \mark \markup { \override #'(font-family . sans) { \box { C } } } % \small \italic { On cue } }
80
81         s1*6 |   % 39-44
82         s1 \bar "|."   % 45
83 }
84
85
86 %
87 % Lead vocal
88 %
89 LeadVox = \relative c'
90 {
91         \clef G
92
93         % Intro
94
95         r1 |   % 1
96         r1 |   % 2
97         r1 |   % 3
98         r1 |   % 4
99         r1 |   % 5
100         r1 |   % 6
101         r1 |   % 7
102         r4 d d fs |   % 8
103
104         % Verse
105
106         a4. a8 ~ a8 r8 r4 |   % 9
107         r4 a b a |   % 10
108         fs4. d8 ~ d8 r8 r4 |   % 11
109         r4 d' d d |   % 12
110         d4. d8 ~ d8 r8 r4 |   % 13
111         r4 d e d |   % 14
112         b4. a8 ~ a8 r8 r4 |   % 15
113         r4 d, d fs |   % 16
114
115         a4. a8 ~ a8 r8 r4 |   % 17
116         r4 a b a |   % 18
117         fs4. d8 ~ d8 r8 r4 |   % 19
118         r4 a' b a |   % 20
119         fs4. r8 r2 |   % 21
120         r4 d fs e |   % 22
121
122         d4. r8 r2 |   % 23
123         r1 |   % 24
124         r1 |   % 25
125         r4 d d fs |   % 26
126
127         d4. r8 r2 |   % 27
128         r1 |   % 28
129         r1 |   % 29
130
131         r4 d' d fs |   % 30
132
133         % Tag
134
135         fs4 r r2 |   % 31
136         r4 d d fs |   % 32
137         fs4 r r2 |   % 33
138         r4 d d fs |   % 34
139         fs4 r r2 |   % 35
140         r4 d d fs |   % 36
141         fs4 r r2 |   % 37
142         r4 d d fs |   % 38
143
144         % Ending
145
146         r1 |   % 39
147         r1 |   % 40
148         r1 |   % 41
149         r1 |   % 42
150         r1 |   % 43
151         r1 |   % 44
152         r1^\fermata |   % 45
153 }
154
155
156 LeadVoxText = \lyricmode
157 {
158         I have de- ci- ded _ to fol- low Je- sus _
159         I have de- ci- ded _ to fol- low Je- sus _
160         I have de- ci- ded _ to fol- low Je- sus _
161         No tur- ning back, no tur- ning back.
162
163         Though none go
164
165         back.
166
167         No tur- ning back! No tur- ning back!
168         No tur- ning back! No tur- ning back!
169         No tur- ning
170 }
171
172 LeadVoxTextB = \lyricmode
173 {
174         _ _ _ with me, _ still I will fol- low _
175         Though none go with me, _ still I will fol- low _
176         Though none go with me, _ still I will fol- low _
177         No tur- ning back, no tur- ning back.
178
179         The world be-
180 }
181
182 LeadVoxTextC = \lyricmode
183 {
184         _ _ _ hind me, _ the cross be- fore me _
185         The world be- hind me, _ the cross be- fore me _
186         The world be- hind me, _ the cross be- fore me _
187         No tur- ning back, no tur- ning _
188 }
189
190
191 Riffs = \relative c'
192 {
193 }
194
195
196 %
197 % Chord names
198 %
199 Chords = \chordmode
200 {
201         % Intro
202
203         c4.:9 b2:7.9+ bf8:7+ |   % 1
204         s4. a2:sus4.7 c8:9 |   % 2
205         s4. b2:7.9+ bf8:7+ |   % 3
206         s4. a2:sus4.7 c8:9 |   % 4
207         s4. b2:7.9+ bf8:7+ |   % 5
208         s4. a2:sus4.7 c8:9 |   % 6
209         s4. b2:7.9+ bf8:7+ |   % 7
210         s4. a2:sus4.7 s8 |   % 8
211
212         % Verse
213
214         d2..:7+ g8:/a |   % 9
215         s1 |   % 10
216         d2..:7+ fs8:aug7 |   % 11
217         s1 |   % 12
218         g4.:7+ d2:/fs e8:m7 |   % 13
219         s4. a2:sus4.7 s8 |   % 14
220         d2..:7+ g8:m/a |   % 15
221         s1 |   % 16
222
223         d2..:7+ cs8:m11 |   % 17
224         s4. fs2:7.9+ b8:m7 |   % 18
225         s2.. e8:9 |   % 19
226         s1 |   % 20
227         e2..:m9 a8:13 |   % 21
228         s2.. c8:9 |   % 22
229
230         s4. b2:7.9+ bf8:7+ |   % 23
231         s4. a2:sus4.7 c8:9 |   % 24
232         s4. b2:7.9+ bf8:7+ |   % 25
233         s4. a2:sus4.7 s8 |   % 26
234
235         s4. b2:7.9+ bf8:7+ |   % 27
236         s4. a2:sus4.7 c8:9 |   % 28
237         s4. b2:7.9+ bf8:7+ |   % 29
238
239         s4 a:sus4.7 s2 |   % 30
240
241         % Tag
242
243         d2..:7+ af8:7.5- |   % 31
244         s1 |   % 32
245         g2..:7+ c8:9 |   % 33
246         s1 |   % 34
247         e2..:m7 a8:sus4.7 |   % 35
248         s1 |   % 36
249         c4.:9 b2:7.9+ bf8:7+ |   % 37
250         s4. a2:sus4.7 s8 |   % 38
251
252         % Ending
253
254         c4.:9 b2:7.9+ bf8:7+ |   % 39
255         s4. a2:sus4.7 c8:9 |   % 40
256         s4. b2:7.9+ bf8:7+ |   % 41
257         s4. a2:sus4.7 c8:9 |   % 42
258         s4. b2:7.9+ bf8:7+ |   % 43
259         s4. a2:sus4.7 s8 |   % 44
260         d1:7+ |   % 45
261 }
262
263
264 %
265 % Chord rhythms
266 %
267 Rhythm = \relative c
268 {
269         \numericTimeSignature
270         \override NoteHead #'style = #'slash
271         \teeny
272
273         % Intro
274
275         c4. c8 ~ c4. c8 ~ |   % 1
276         c4. c8 ~ c4. c8 ~ |   % 2
277         c4. c8 ~ c4. c8 ~ |   % 3
278         c4. c8 ~ c4. c8 ~ |   % 4
279         c4. c8 ~ c4. c8 ~ |   % 5
280         c4. c8 ~ c4. c8 ~ |   % 6
281         c4. c8 ~ c4. c8 ~ |   % 7
282         c4. c8 ~ c2 |   % 8
283
284         % Verse
285
286         c4 c c r8 c ~ |   % 9
287         c4 c c c |   % 10
288         c4 c c r8 c ~ |   % 11
289         c4 c c c |   % 12
290         c4. c8 ~ c4. c8 ~ |   % 13
291         c4. c8 ~ c2 |   % 14
292         c4 c c c8 c ~ |   % 15
293         c4 c c c |   % 16
294
295         c4 c c r8 c ~ |   % 17
296         c4. c8 ~ c4. c8 ~ |   % 18
297         c4 c c r8 c ~ |   % 19
298         c4 c c c |   % 20
299         c4 c c r8 c ~ |   % 21
300         c4 c c r8 c ~ |   % 22
301
302         c4. c8 ~ c4. c8 ~ |   % 23
303         c4. c8 ~ c4. c8 ~ |   % 24
304         c4. c8 ~ c4. c8 ~ |   % 25
305         c4. c8 ~ c2 |   % 26
306
307         c4. c8 ~ c4. c8 ~ |   % 27
308         c4. c8 ~ c4. c8 ~ |   % 28
309         c4. c8 ~ c4. c8 ~ |   % 29
310
311         c4 c r2 |   % 30
312
313         % Tag
314
315         c4 c c r8 c ~ |   % 31
316         c4 c c c |   % 32
317         c4 c c r8 c ~ |   % 33
318         c4 c c c |   % 34
319         c4 c c r8 c ~ |   % 35
320         c4 c c c |   % 36
321         c4. c8 ~ c4. c8 ~ |   % 37
322         c4. c8 ~ c2 |   % 38
323
324         % Ending
325
326         c4. c8 ~ c4. c8 ~ |   % 39
327         c4. c8 ~ c4. c8 ~ |   % 40
328         c4. c8 ~ c4. c8 ~ |   % 41
329         c4. c8 ~ c4. c8 ~ |   % 42
330         c4. c8 ~ c4. c8 ~ |   % 43
331         c4. c8 ~ c2 |   % 44
332         c1^\fermata |   % 45
333 }
334
335
336 Dynamics =
337 {
338         s1_\markup { \small \italic { Ac. guitar } } |   % 1
339         s1 |   % 2
340         s1_\markup { \small \italic { Guitar II in } } |   % 3
341         s1 |   % 4
342         s1_\markup { \small \italic { Bass in } } |   % 5
343         s1 |   % 6
344         s1_\markup { \small \italic { Drums in } } |   % 7
345         s1 |   % 8
346
347         s1*21 |   % 9-29
348         s4_\markup { \small \italic { Women 8vb throughout } } s2. | % 30
349
350         s1*8 |   % 31-38
351 %       s1 |   % 38
352
353         % Ending
354
355         s4_\markup { \small \italic { On cue } } s2. | % 39
356         s1*3 |   % 40-42
357         s4_\markup { \small \italic { rit. } } s2. | % 43
358 }
359
360
361 \score
362 {
363         <<
364                 \Global         % The "roadmap" that everything else depends on
365
366                 \context Staff
367                 <<
368                         \new Voice = "lead" \LeadVox
369                         \new Lyrics \lyricsto "lead" \LeadVoxText
370                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
371                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
372                 >>
373
374                 \new ChoirStaff
375                 <<
376 %                       \new Staff = "riff" \RhythmB
377                         \new ChordNames \Chords
378                         \new RhythmicStaff << \Rhythm \Dynamics >>
379                 >>
380
381                 \set Score.skipBars = ##t
382                 \set Score.melismaBusyProperties = #'()
383         >>
384 }
385
386
387 \paper
388 {
389         #(define fonts (make-pango-font-tree
390                 "Times New Roman"
391                 "LilyJAZZText"
392                 "Luxi Mono"
393                 (/ staffSize 20)))
394
395 % Don't spread staves vertically across last page (default: t)
396 %       ragged-last-bottom = ##f
397 % Don't spread staves vertically across the page (default: f)
398 %       ragged-bottom = ##t
399 % Allow partial line for last stave (default: f)
400         ragged-last = ##t
401
402 % To find out what's eating the space at the top...
403 %       annotate-spacing = ##t
404 }
405