]> Shamusworld >> Repos - music/blob - the-lord's-prayer.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / the-lord's-prayer.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 = #18
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 "The Lord’s Prayer" }
18 %       composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "" }
19         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Ed Smart" }
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 bf \major
30 %New key! (C version)
31 %       \key c \major
32         \numericTimeSignature
33         \time 4/4
34
35         % Intro
36
37         s1*2 \bar "||"   % 1-2
38
39         % Part I
40
41         \mark \markup { \override #'(font-family . sans) \box { A } }
42         s1*9 \bar "||"   % 3-11
43
44         % Part II
45
46         \mark \markup { \override #'(font-family . sans) \box { B } }
47         s1*8 \bar "||"   % 12-19
48
49         % Part III
50
51         \time 3/4
52         \mark \markup { \override #'(font-family . sans) \box { C } }
53         s2.*10 \bar "||"   % 20-29
54
55         % Part IV
56
57         \mark \markup { \override #'(font-family . sans) \box { D } }
58         s2.*4 \bar "||"   % 30-33
59
60         % Part V
61
62         \mark \markup { \override #'(font-family . sans) \box { E } }
63         s2.*3 |   % 34-36
64         \time 4/4
65         s1*2 |   % 37-38
66         \time 2/4
67         s2 |   % 39
68         \time 4/4
69         s1 \bar "||"   % 40
70
71         % Outro
72
73         \time 3/4
74         \mark \markup { \override #'(font-family . sans) \box { F } }
75         s2.*5 \bar "|."   % 41-45
76 }
77
78
79 %
80 % Lead vocal
81 %
82 LeadVox = \relative c'
83 {
84         % Intro
85
86         r1 |   % 1
87         r2 r4 f |   % 2
88
89         % Part I
90
91         f2 f ~ |   % 3
92         f1 |   % 4
93         r4 bf a g |   % 5
94         g2 f ~ |   % 6
95         f4 r \times 2/3 { bf,4 c d } |   % 7
96         ef1 ~ |   % 8
97         ef2 ef4. ( d8 ) |   % 9
98         d1 ~ |   % 10
99         d2. r4 |   % 11
100
101         % Part II
102
103         r4 bf' a g |   % 12
104         f1 |   % 13
105         r4 d' c bf |   % 14
106         a2. a4 |   % 15
107         bf2. g8 ef |   % 16
108         f2. bf,4 |   % 17
109         c2. ~ c8 ( bf ) |   % 18
110         bf1 |   % 19
111
112         % Part III
113
114         ef4 d g |   % 20
115         f2 bf,4 |   % 21
116         ef2 ef4 |   % 22
117         d2 f8 f |   % 23
118         g4 g g |   % 24
119         a2 e4 |   % 25
120         g4. d8 d d |   % 26
121         d4 cs2 |   % 27
122         r2. |   % 28
123         r2 cs4 |   % 29
124
125         % Part IV
126
127         d8. d16 d4 \times 2/3 { d8 d d } |   % 30
128         f4 ef4. ef16 ef |   % 31
129         e8. e16 e4 e |   % 32
130         g4 f f |   % 33
131
132         % Part V
133
134         bf2 a8. bf16 |   % 34
135         d4 c \times 2/3 { r8 b c } |   % 35
136         d4 c \times 2/3 { r8 b c } |   % 36
137         ef2 d4 r8 c |   % 37
138         f2. ( ~ f8 bf, ) |   % 38
139         bf2 |   % 39
140         c2. ( bf4-\fermata ) |   % 40
141
142         % Outro
143
144         bf2. ~ |   % 41
145         bf2. |   % 42
146         r2. |   % 43
147         r2. |   % 44
148         r2.-\fermata |   % 45
149 }
150
151 LeadVoxText = \lyricmode
152 {
153         Our Fa -- ther, _ who art in hea -- ven, _
154         hal -- low -- ed be _ thy _ name. _
155         Thy king -- dom come, thy will be done,
156         on Earth, as it is in hea -- _ _ ven.
157
158         Give us this day our dai -- ly bread
159         and for -- give us our debts
160         as we for -- give our debt -- ors.
161
162         And lead us not in -- to temp -- ta -- tion,
163         but de -- liv -- er us from e -- vil,
164         for thine is the king -- dom,
165         and the pow -- er and the glo -- ry
166         for -- e -- _ _ ver
167         A -- _ men. _
168 }
169
170
171 %
172 % Riffs
173 %
174 Riffs = \relative c''
175 {
176 %{
177         % Intro
178
179         s1*41 |   % 1-41
180
181         \tiny
182         e8 b ds b cs b ds b |   % 42
183         e8 b ds b cs b ds b |   % 43
184         e8 b ds b cs b ds b |   % 44
185 %}
186 }
187
188
189 %
190 % Chord names
191 %
192 Chords = \chordmode
193 {
194         % Intro
195
196         bf1:sus2 |   % 1
197         s1 |   % 2
198
199         % Part I
200
201         f1/a |   % 3
202         f1 |   % 4
203         g1:m11 |   % 5
204         c2:m7 f4:sus4 f |   % 6
205         bf1/d |   % 7
206         c1:m7 |   % 8
207         ef1/f |   % 9
208         bf1:sus2 |   % 10
209         s2 f/a |   % 11
210
211         % Part II
212
213         g1:m7 |   % 12
214         d1:m7 |   % 13
215         g1:m7 |   % 14
216         d1:7 |   % 15
217         ef2:maj7 c:m7 |   % 16
218         bf1/f |   % 17
219         ef2/f f |   % 18
220         bf1:sus2 |   % 19
221
222         % Part III
223
224         ef4 bf/d c:m7 |   % 20
225         d2:m7 g4:m7 |   % 21
226         c2:m7 f4 |   % 22
227         bf2.:sus2 |   % 23
228         g2.:m7 |   % 24
229         d2.:7 |   % 25
230         e2.:m7.5- |   % 26
231         a4:sus4.7 a2:7 |   % 27
232         e2.:m7.5- |   % 28
233         a4:sus4.7 a2:7 |   % 29
234
235         % Part IV
236
237         bf2.:sus2 |   % 30
238         c2.:m11 |   % 31
239         c2. |   % 32
240         ef2/f f4 |   % 33
241
242         % Part V
243
244         bf2. |   % 34
245         ef4:maj7 ef2:6 |   % 35
246         c2.:sus2/e |   % 36
247         gf2:6 gf4:aug gf:sus4 |   % 37
248         bf1/f |   % 38
249         c2:m7 |   % 39
250         c2:m7/f f |   % 40
251
252         % Outro
253
254         ef4/bf bf ef/bf |   % 41
255         g2.:m11 |   % 42
256         c4:m7 bf g:m |   % 43
257         af2.:6.9 |   % 44
258         bf2.:sus2 |   % 45
259 }
260
261
262 %
263 % Chord rhythms
264 %
265 Rhythm = \relative c
266 {
267         \numericTimeSignature
268         \override NoteHead #'style = #'slash
269         \teeny
270
271         % Intro
272
273         c4 c c c |   % 1
274         c4 c c c |   % 2
275
276         % Part I
277
278         c4 c c c |   % 3
279         c4 c c c |   % 4
280         c4 c c c |   % 5
281         c4 c c c |   % 6
282         c1 |   % 7
283         c4 c c c |   % 8
284         c4 c c c |   % 9
285         c4 c c c |   % 10
286         c4 c c c |   % 11
287
288         % Part II
289
290         c4 c c c |   % 12
291         c4 c c c |   % 13
292         c4 c c c |   % 14
293         c4 c c c |   % 15
294         c2 c |   % 16
295         c4 c c c |   % 17
296         c4 c c c |   % 18
297         c4 c c c |   % 19
298
299         % Part III
300
301         c4 c c |   % 20
302         c4 c c |   % 21
303         c4 c c |   % 22
304         c4 c c |   % 23
305         c4 c c |   % 24
306         c4 c c |   % 25
307         c4 c c |   % 26
308         c4 c c |   % 27
309         c4 c c |   % 28
310         c4 c c |   % 29
311
312         % Part IV
313
314         c4 c c |   % 30
315         c4 c c |   % 31
316         c4 c c |   % 32
317         c4 c c |   % 33
318
319         % Part V
320
321         c4 c c |   % 34
322         c4 c c |   % 35
323         c4 c c |   % 36
324         c4 c c c |   % 37
325         c4 c c c |   % 38
326         c2 |   % 39
327         c2 c |   % 40
328
329         % Outro
330
331         c4 c c |   % 41
332         c4 c c |   % 42
333         c4 c c |   % 43
334         c2. |   % 44
335         c2.-\fermata |   % 45
336 }
337
338
339 Dynamics =
340 {
341 %{
342         % Intro
343         s4_\markup { \italic { Ac. gtr only } } s2. |   % 1
344
345         s1*3 |   % 2-4
346
347         s4_\markup { \italic { Band in } } s2. |   % 5
348 %}
349 }
350
351
352 \score
353 {
354         <<
355                 \Global         % The "roadmap" that everything else depends on
356                 \set Score.skipBars = ##t
357                 \set Score.melismaBusyProperties = #'()
358
359                 \context Staff
360                 <<
361                         \new Voice = "lead" \LeadVox
362 % C edition
363 %                       \new Voice = "lead" \transpose bf c' \LeadVox
364                         \new Voice \Riffs
365                         \new Lyrics \lyricsto "lead" \LeadVoxText
366                 >>
367
368                 \new ChoirStaff
369                 <<
370                         \new ChordNames \Chords
371 % C edition
372 %                       \new ChordNames \transpose bf c \Chords
373                         \new RhythmicStaff << \Rhythm \Dynamics >>
374                 >>
375         >>
376 }
377
378
379 \paper
380 {
381         #(define fonts (make-pango-font-tree
382                 "Times New Roman"
383                 "LilyJAZZText"
384                 "Luxi Mono"
385                 (/ staffSize 20)))
386
387 % Don't spread staves vertically across last page (default: t)
388 %       ragged-last-bottom = ##f
389 % Don't spread staves vertically across the page (default: f)
390 %       ragged-bottom = ##t
391 % Allow partial line for last stave (default: f)
392         ragged-last = ##t
393
394 % To find out what's eating the space at the top...
395 %       annotate-spacing = ##t
396 }
397