]> Shamusworld >> Repos - music/blob - spirit-of-god-descend-upon-my-heart-satb.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / spirit-of-god-descend-upon-my-heart-satb.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 %{ Some useful characters: ‘ ’ “ ” – — † ‡ • … %}
12
13 \header
14 {
15         title    = \markup { \override #'(font-family . sans) \fontsize #3.5 "Spirit of God, Descend Upon My Heart" }
16 %       subtitle = \markup { \override #'(font-family . sans) \fontsize #1.3 "Genevan Psalter, 1551" }
17         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "MORECAMBE" }
18         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "Frederick C. Atkinson" }
19         poet     = \markup { \override #'(font-family . sans) \fontsize #1.3 "George Croly" }
20         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
21 }
22
23
24 %
25 % Song's structure
26 %
27 Global =
28 {
29 %       \clef G
30         \key bf \major
31         \numericTimeSignature
32         \time 4/4
33
34         % Verse
35
36         s1*16 \bar "||"   % 1-16
37         s1 \bar "|."   % 17
38 }
39
40
41 %
42 % Lead vocal
43 %
44 LeadVox = \relative c'
45 {
46         \set Staff.instrumentName = #"Sop."
47         \clef G
48
49         % Verse
50
51         d2 d4 d |   % 1
52         ef2 d |   % 2
53         g4 f ef ef |   % 3
54         d1 |   % 4
55
56         bf'2 a4 g |   % 5
57         f2 g |   % 6
58         a4 f g g |   % 7
59         f1 |   % 8
60
61         f2 f4 f |   % 9
62         a2 g |   % 10
63         f4 g a bf |   % 11
64         c1 |   % 12
65
66         d2 c4 bf |   % 13
67         a4 g f bf |   % 14
68         f2 f |   % 15
69         f1 |   % 16
70         g2 f |   % 17
71 }
72
73
74 AltoVox = \relative c'
75 {
76         \set Staff.instrumentName = #"Alto"
77         \clef G
78
79         % Verse
80
81         bf2 bf4 bf |   % 1
82         c2 bf |   % 2
83         bf4 bf bf a |   % 3
84         bf1 |   % 4
85
86         d2 cs4 e |   % 5
87         d4 ( f ) f2 |   % 6
88         f4 c d e |   % 7
89         f1 |   % 8
90
91         c2 c4 c |   % 9
92         ef2 ef |   % 10
93         ef4 ef ef ef |   % 11
94         ef1 |   % 12
95
96         d2 ef4 f |   % 13
97         f4 ef d ef |   % 14
98         d2 ef |   % 15
99         d1 |   % 16
100         ef2 d |   % 17
101 }
102
103
104 TenorVox = \relative c
105 {
106         \set Staff.instrumentName = #"Tenor"
107         \clef F
108
109         % Verse
110
111         f2 f4 f |   % 1
112         f2 f |   % 2
113         ef4 f g f |   % 3
114         f1 |   % 4
115
116         g4 ( f ) e a |   % 5
117         a2 b |   % 6
118         c4 a bf bf |   % 7
119         a1 |   % 8
120
121         a2 a4 a |   % 9
122         c2 bf |   % 10
123         a4 bf c g |   % 11
124         a1 |   % 12
125
126         bf4 ( g ) a bf |   % 13
127         bf4 bf bf bf |   % 14
128         bf2 a |   % 15
129         bf1 |   % 16
130         bf2 bf |   % 17
131 }
132
133
134 BassVox = \relative c
135 {
136         \set Staff.instrumentName = #"Bass"
137         \clef F
138
139         % Verse
140
141         bf2 bf4 bf |   % 1
142         a2 bf |   % 2
143         ef4 d c f, |   % 3
144         bf1 |   % 4
145
146         g2 a4 cs |   % 5
147         d2 d |   % 6
148         c4 c c c |   % 7
149         f1 |   % 8
150
151         f2 f4 f |   % 9
152         f2 f |   % 10
153         f4 f f f |   % 11
154         f1 |   % 12
155
156         bf,2 c4 d |   % 13
157         ef4 ef f g |   % 14
158         f2 f |   % 15
159         bf,1 |   % 16
160         ef2 bf |   % 17
161 }
162
163
164 LeadVoxText = \lyricmode
165 {
166         Spir -- it of God, de -- scend up on my heart;
167         Wean it from earth, through all its puls -- es move;
168         Stoop to my weak -- ness, might -- y as Thou art,
169         And make me love Thee as I ought to love. A -- men.
170 }
171
172 LeadVoxTextB = \lyricmode
173 {
174         I ask no dream, no proph -- et ec -- sta -- sies,
175         No sud -- den rend -- ing of the veil of clay,
176         No an -- gel vis -- i -- tant, no o -- pening skies:
177         But take the dim -- ness of my soul a -- way.
178 }
179
180 LeadVoxTextC = \lyricmode
181 {
182         Hast Thou not bid us love Thee, God and King?
183         All, all Thine own; soul, heart and strength and mind!
184         I see Thy cross; there teach my heart to cling:
185         O let me seek Thee, and O let me find!
186 }
187
188 LeadVoxTextD = \lyricmode
189 {
190         Teach me to feel that Thou art al -- ways nigh;
191         Teach me the strug -- gles of the soul to bear,
192         To check the ris -- ing doubt, the reb -- el sigh;
193         Teach me the pa -- tience of un -- an -- swered prayer.
194 }
195
196 LeadVoxTextE = \lyricmode
197 {
198         Teach me to love Thee as Thine an -- gels love,
199         One ho -- ly pas -- sion fill -- ing all my frame;
200         The bap -- tism of the heaven -- de -- scend -- ed Dove:
201         My heart an al -- tar, and Thy love the flame.
202 }
203
204
205 Dynamics =
206 {
207 %{
208         s4_\markup { \italic { snare on 4, bass 8th notes } } s2. |   % 1
209         s1*26 |   % 2-27
210         s2 s4 \< s |   % 28
211         s4_\f s_\markup { \hspace #0.0 \raise #-2.0 \italic { snare 2 & 4 } } s2 |   % 29
212         s1*8 |   % 30-37
213         s2 s4 \< s \! |   % 38
214         s1 |   % 39
215         s2. s8 \> s \! |   % 40
216         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { bass 8th notes, band builds each repeat } } s2. |   % 41
217         s1*8 |   % 42-49
218         s4 \< s2. |   % 50
219         s4_\f s2. |   % 51
220         s1*5 |   % 52-56
221         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { rit. last time } } s2. |   % 57
222         s2 s4 \< s \! |   % 58
223 %}
224 }
225
226
227 \score
228 {
229         <<
230 %               \Global         % The "roadmap" that everything else depends on
231
232                 \new ChoirStaff
233                 <<
234                         \new Staff << \Global \new Voice = "lead" \LeadVox >>
235                         \new Lyrics \lyricsto "lead" \LeadVoxText
236                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
237                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
238                         \new Lyrics \lyricsto "lead" \LeadVoxTextD
239                         \new Lyrics \lyricsto "lead" \LeadVoxTextE
240                         \new Staff << \Global \new Voice = "alto" \AltoVox >>
241                         \new Staff << \Global \new Voice = "tenor" \TenorVox >>
242                         \new Staff << \Global \new Voice = "bass" \BassVox >>
243                 >>
244
245                 \set Score.skipBars = ##t
246                 \set Score.melismaBusyProperties = #'()
247         >>
248 }
249
250
251 \paper
252 {
253         #(define fonts (make-pango-font-tree
254                 "Times New Roman"
255                 "LilyJAZZText"
256                 "Luxi Mono"
257                 (/ staffSize 20)))
258
259 % Spread staves vertically across last page (default: t)
260         ragged-last-bottom = ##f
261 % Don't spread staves vertically across the page (default: f)
262 %       ragged-bottom = ##t
263 % Allow partial line for last stave (default: f)
264         ragged-last = ##t
265
266 % To find out what's eating the space at the top...
267 %       annotate-spacing = ##t
268 }
269