]> Shamusworld >> Repos - music/blob - come-let-us-worship-and-bow-down.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / come-let-us-worship-and-bow-down.ly
1 \version "2.16.0"
2 \include "pop-chords.ly"
3 \include "english.ly"
4
5 % Good sizes are 16, 18, & 20
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 %{ Some useful characters: ‘ ’ “ ” – — † ‡ • … %}
12
13 \header
14 {
15         title    = \markup { \override #'(font-family . sans) \fontsize #3.5 "Come Let Us Worship And Bow Down" }
16         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Dave Doherty" }
17         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Ed Smart" }
18         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
19 }
20
21
22 %
23 % Lead vocal
24 %
25 LeadVox = \relative c'
26 {
27         \clef G
28         \key d \major
29         \numericTimeSignature
30         \time 4/4
31
32         % Intro
33
34         \repeat volta 2
35         {
36                 R1^\markup { Easy 8th note feel } |   % 1
37                 R1 |   % 2
38         }
39
40         % A section
41
42 \mark \markup { \override #'(font-family . sans) { \box { A } } }
43
44         r8 fs fs16 fs8. fs e16 d8 fs |   % 3
45         fs2 r4 e8 fs |   % 4
46         g8. g16 g8. g16 g8 fs e d |   % 5
47         fs8 ( e ) e4 r2 |   % 6
48         r8 fs fs16 fs8. fs e16 d8 fs |   % 7
49         fs2 r4 e8 fs |   % 8
50         g8. g16 g8. g16 g8 fs e d |   % 9
51         fs8 ( e ) e4 r4. fs8 \bar "||"   % 10
52
53         % B section
54
55 \mark \markup { \override #'(font-family . sans) { \box { B } } }
56
57         g2 ( fs4 ) g8 fs |   % 11
58         e2 r4. fs8 |   % 12
59         g4 g8. g16 g8 fs e d |   % 13
60         fs8 ( e ) e4 r fs8 e |   % 14
61         d4. ( fs8 e4 ) d8 e |   % 15
62         fs2 r4 fs8 e |   % 16
63         d4. ( fs8 e4 ) d8 cs |   % 17
64         d2 r |   % 18
65         R1 \bar "||"   % 19
66
67         % A section
68
69         \key f \major
70
71 \mark \markup { \override #'(font-family . sans) { \box { C } } }
72
73         r8 a' a16 a8. a g16 f8 a |   % 20
74         a2 r4 g8 a |   % 21
75         bf8. bf16 bf8. bf16 bf8 a g f |   % 22
76         a8 ( g ) g4 r2 |   % 23
77         r8 a a16 a8. a g16 f8 a |   % 24
78         a2 r4 g8 a |   % 25
79         bf8. bf16 bf8. bf16 bf8 a g f |   % 26
80         a8 ( g ) g4 r4. a8 \bar "||"   % 27
81
82         % B section
83
84 \mark \markup { \override #'(font-family . sans) { \box { D } } }
85
86         bf2 ( a4 ) bf8 a |   % 28
87         g2 r4. a8 |   % 29
88         bf4 bf8. bf16 bf8 a g f |   % 30
89         a8 ( g ) g4 r a8 g |   % 31
90         f4. ( a8 g4 ) f8 g |   % 32
91         a2 r4 a8 g |   % 33
92         f4. ( a8 g4 ) f8 g |   % 34
93         a2 r4 a8 g |   % 35
94         f4. ( a8 g4 ) f8 e |   % 36
95         f1^\fermata \bar "|."   % 37
96 }
97
98 LeadVoxText = \lyricmode
99 {
100         Come let us wor -- ship and bow down
101         Let us kneel be -- fore the Lord our God our ma -- _ ker
102         Come let us wor -- ship and bow down
103         Let us kneel be -- fore the Lord our God our ma -- _ ker
104
105         For he __ _ is our God
106         And we are the peo -- ple of his pas -- _ ture
107         And the sheep __ _ _ of his hand
108         Just the sheep __ _ _ of his hand.
109
110         Come let us wor -- ship and bow down
111         Let us kneel be -- fore the Lord our God our ma -- _ ker
112         Come let us wor -- ship and bow down
113         Let us kneel be -- fore the Lord our God our ma -- _ ker
114
115         For he __ _ is our God
116         And we are the peo -- ple of his pas -- _ ture
117         And the sheep __ _ _ of his hand
118         Just the sheep __ _ _ of his hand
119         Just the sheep __ _ _ of his hand.
120 }
121
122
123 %
124 % Chord names
125 %
126 Chords = \chordmode
127 {
128         % Intro
129
130         \repeat volta 2
131         {
132                 d2 g:maj7 |   % 1
133                 d2 g:maj7 |   % 2
134         }
135
136         % A section
137
138         d2 g:maj7 |   % 3
139         d1 |   % 4
140         g4 g/fs e2:m |   % 5
141         d4/a a2. |   % 6
142         d2 g:maj7 |   % 7
143         d1 |   % 8
144         g4 g/fs e2:m |   % 9
145         d4/a a2. |   % 10
146
147         % B section
148
149         e2:m d/g |   % 11
150         a2:sus4 a |   % 12
151         e2:m g |   % 13
152         d4/a a2. |   % 14
153         g2 a |   % 15
154         d4 a/cs b:m b:m/a |   % 16
155         e2:m a |   % 17
156         d2 g:maj7 |   % 18
157         d2 c4:sus4 c |   % 19
158
159         % A section
160
161         f2 bf:maj7 |   % 20
162         f1 |   % 21
163         bf4 bf/a g2:m7 |   % 22
164         f4/c c2. |   % 23
165         f2 bf:maj7 |   % 24
166         f1 |   % 25
167         bf4 bf/a g2:m7 |   % 26
168         f4/c c2. |   % 27
169
170         % B section
171
172         g2:m7 f/bf |   % 28
173         c2:sus4 c |   % 29
174         g2:m bf |   % 30
175         f4/c c2. |   % 31
176         bf2 c |   % 32
177         f4 f/e d:m d:m/c |   % 33
178         bf2 c |   % 34
179         f4 f/e d:m d:m/c |   % 35
180         g2:m7 c |   % 36
181         f1 |   % 37
182 }
183
184
185 %
186 % Chord rhythms
187 %
188
189 % Use a RhythmicStaff on the chords instead of this?
190 % It almost works, but not quite. Doesn't collapse chords above to single notes...
191
192 StaffC = \relative c
193 {
194         \numericTimeSignature
195         \time 4/4
196         \override NoteHead #'style = #'slash
197         \teeny
198
199         % Intro
200
201         \repeat volta 2
202         {
203                 c4 c c8. c16 ~ c4 |   % 1
204                 c4 c c8. c16 ~ c4 |   % 2
205         }
206
207         % A section
208
209         c4 c c c |   % 3
210         c4 c c c |   % 4
211         c4 c c c |   % 5
212         c4 c c c |   % 6
213         c4 c c c |   % 7
214         c4 c c c |   % 8
215         c4 c c c |   % 9
216         c4 c c c \bar "||"   % 10
217
218         % B section
219
220         c4 c c c |   % 11
221         c4 c c c |   % 12
222         c4 c c c |   % 13
223         c4 c c c |   % 14
224         c4 c c c |   % 15
225         c4 c c c |   % 16
226         c4 c c c |   % 17
227         c4 c c8. c16 ~ c4 |   % 18
228         c4 c c c \bar "||"   % 19
229
230         % A section
231
232         c4 c c c |   % 20
233         c4 c c c |   % 21
234         c4 c c c |   % 22
235         c4 c c c |   % 23
236         c4 c c c |   % 24
237         c4 c c c |   % 25
238         c4 c c c |   % 26
239         c4 c c c \bar "||"   % 27
240
241         % B section
242
243         c4 c c c |   % 28
244         c4 c c c |   % 29
245         c4 c c c |   % 30
246         c4 c c c |   % 31
247         c4 c c c |   % 32
248         c4 c c c |   % 33
249         c4 c c c |   % 34
250         c4 c c c |   % 35
251         c4_\markup { \italic { rit. } } c c2 |   % 36
252         c1^\fermata \bar "|."   % 37
253 }
254
255
256 \score
257 {
258         <<
259                 \context Staff
260                 <<
261                         \new Voice = "lead" \LeadVox
262                         \new Lyrics \lyricsto "lead" \LeadVoxText
263                 >>
264
265                 \new ChoirStaff
266                 <<
267                         \new ChordNames \Chords
268                         \new RhythmicStaff \StaffC
269                 >>
270
271                 \set Score.skipBars = ##t
272                 \set Score.melismaBusyProperties = #'()
273         >>
274 }
275
276
277 \paper
278 {
279         #(define fonts (make-pango-font-tree
280                 "Times New Roman"
281                 "JazzText"
282                 "Luxi Mono"
283                 (/ staffSize 20)))
284
285 % Don't spread staves vertically across last page (default: t)
286 %       ragged-last-bottom = ##f
287 % Don't spread staves vertically across the page (default: f)
288 %       ragged-bottom = ##t
289 % Allow partial line for last stave (default: f)
290         ragged-last = ##t
291
292 % To find out what's eating the space at the top...
293 %       annotate-spacing = ##t
294 }
295