]> Shamusworld >> Repos - music/blob - blessed-quietness-satb.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / blessed-quietness-satb.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 = #18
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 "Blessed Quietness" }
16 %       subtitle = \markup { \override #'(font-family . sans) \fontsize #1.3 "Genevan Psalter, 1551" }
17         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "W. S. Marshall" }
18         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. James M. Kirk" }
19         poet     = \markup { \override #'(font-family . sans) \fontsize #1.3 "Manie P. Ferguson" }
20         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
21 }
22
23
24 %
25 % Lead vocal
26 %
27 LeadVox = \relative c'
28 {
29         \set Staff.instrumentName = #"Sop."
30         \clef G
31         \key a \major
32         \numericTimeSignature
33         \time 3/4
34
35         % Verse
36
37         \partial 4 cs8 d |   % 0
38         e8 a a4 cs8 b |   % 1
39         a8 fs a4 gs8 fs |   % 2
40         e4. cs8 e a |   % 3
41         b2 gs8 fs |   % 4
42
43         e8 a a4 cs8 b |   % 5
44         a8 fs a4 gs8 fs |   % 6
45         e4. a8 gs b |   % 7
46         a2 cs,8 d \bar "||"   % 8
47
48         e8 cs e4 a8 gs |   % 9
49         fs8 d fs4 a8 fs |   % 10
50         e4. cs8 e a |   % 11
51         b2 gs8 fs |   % 12
52
53         e8 cs e4 a8 gs |   % 13
54         fs8 d fs4 a8 fs |   % 14
55         e8 e4. gs8 b |   % 15
56         a2 \bar "|."   % 16
57 }
58
59 AltoVox = \relative c'
60 {
61         \set Staff.instrumentName = #"Alto"
62         \clef G
63         \key a \major
64         \numericTimeSignature
65         \time 3/4
66
67         % Verse
68
69         \partial 4 a8 b |   % 0
70         cs4 cs e8 e |   % 1
71         fs8 d fs4 e8 d |   % 2
72         cs4. a8 cs cs |   % 3
73         e2 e8 d |   % 4
74
75         cs4 cs e8 e |   % 5
76         fs8 d fs4 e8 d |   % 6
77         cs4. cs8 d d |   % 7
78         cs2 a8 b \bar "||"   % 8
79
80         cs8 a cs4 cs8 e |   % 9
81         d8 d d4 fs8 d |   % 10
82         cs4. a8 cs cs |   % 11
83         d2 e8 d |   % 12
84
85         cs8 a cs4 cs8 e |   % 13
86         d8 d d4 fs8 d |   % 14
87         cs8 cs4. d8 d |   % 15
88         cs2 \bar "|."   % 16
89 }
90
91 TenorVox = \relative c
92 {
93         \set Staff.instrumentName = #"Tenor"
94         \clef F
95         \key a \major
96         \numericTimeSignature
97         \time 3/4
98
99         % Verse
100
101         \partial 4 e8 e |   % 0
102         a8e e4 a8 cs |   % 1
103         d4 d a8 a |   % 2
104         a4. e8 a a |   % 3
105         gs2 b8 gs |   % 4
106
107         a8 e e4 a8 cs |   % 5
108         d4 d a8 a |   % 6
109         a4. a8 b gs |   % 7
110         a2 e8 e \bar "||"   % 8
111
112         a8 e a4 a8 a |   % 9
113         a8 fs a4 a8 a |   % 10
114         a4. e8 a a |   % 11
115         gs2 b8 gs |   % 12
116
117         a8 e a4 a8 a |   % 13
118         a8 fs a4 a8 a |   % 14
119         a8 a4. b8 gs |   % 15
120         a2 \bar "|."   % 16
121 }
122
123 BassVox = \relative c
124 {
125         \set Staff.instrumentName = #"Bass"
126         \clef F
127         \key a \major
128         \numericTimeSignature
129         \time 3/4
130
131         % Verse
132
133         \partial 4 a8 a |   % 0
134         a4 a a8 a |   % 1
135         d4 d d8 d |   % 2
136         a4. a8 a a |   % 3
137         e'2 e8 e |   % 4
138
139         a,4 a a8 a |   % 5
140         d4 d d8 d |   % 6
141         e4. e8 e e |   % 7
142         a,2 a8 a \bar "||"   % 8
143
144         a8 a a4 a8 cs |   % 9
145         d8 d d4 d8 d |   % 10
146         a4. a8 a a |   % 11
147         e'2 e8 e |   % 12
148
149         a,8 a a4 a8 cs |   % 13
150         d8 d d4 d8 d |   % 14
151         e8 e4. e8 e |   % 15
152         a,2 \bar "|."   % 16
153 }
154
155
156 Riffs = \relative c'
157 {
158         \teeny
159 }
160
161
162 LeadVoxText = \lyricmode
163 {
164         Joys are flow -- _ ing like a riv -- _ er
165         Since the Com -- fort -- er has come;
166         He a -- bides _ with us for -- ev -- _ er,
167         Makes the trust -- in heart His home.
168
169         Bless -- ed qui -- et -- ness, ho -- ly qui -- et -- ness,
170         What as -- sur -- ance in my soul!
171         On the storm -- y sea He speaks peace to me,
172         How the bil -- lows cease to roll!
173 }
174
175 LeadVoxTextB = \lyricmode
176 {
177         Bring -- ing life _ and health and glad -- _ ness
178         All a -- round, this heav'n -- ly Guest
179         Ban -- ished un -- _ be -- lief and sad -- _ ness,
180         Changed our wea -- ri -- ness to rest.
181 }
182
183 LeadVoxTextC = \lyricmode
184 {
185         Like the rain _ that fall from heav -- _ en,
186         Like the sun -- light from the sky,
187         So the Ho -- _ ly Ghost is giv -- _ en,
188         Com -- ing on us from on high.
189 }
190
191 LeadVoxTextD = \lyricmode
192 {
193         See, a fruit -- _ ful field is grow -- _ ing,
194         Bless -- ed fruit of right -- eous -- ness;
195         And the streams _ of life are flow -- _ ing
196         In the lone -- ly wil -- der -- ness.
197 }
198
199 LeadVoxTextE = \lyricmode
200 {
201         What a won -- _ der -- ful sal -- va -- _ tion,
202         Where we al -- ways see His face!
203         What a per -- _ fect hab -- i -- ta -- _ tion,
204         What a qui -- et rest -- ing place!
205 }
206
207
208 Dynamics =
209 {
210 %{
211         s4_\markup { \italic { snare on 4, bass 8th notes } } s2. |   % 1
212         s1*26 |   % 2-27
213         s2 s4 \< s |   % 28
214         s4_\f s_\markup { \hspace #0.0 \raise #-2.0 \italic { snare 2 & 4 } } s2 |   % 29
215         s1*8 |   % 30-37
216         s2 s4 \< s \! |   % 38
217         s1 |   % 39
218         s2. s8 \> s \! |   % 40
219         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { bass 8th notes, band builds each repeat } } s2. |   % 41
220         s1*8 |   % 42-49
221         s4 \< s2. |   % 50
222         s4_\f s2. |   % 51
223         s1*5 |   % 52-56
224         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { rit. last time } } s2. |   % 57
225         s2 s4 \< s \! |   % 58
226 %}
227 }
228
229
230 \score
231 {
232         <<
233                 \new ChoirStaff = "Rhythm"
234                 <<
235                         \new Staff = UpperStaffA { \new Voice = "lead" \LeadVox }
236                         \new Lyrics \lyricsto "lead" \LeadVoxText
237                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
238                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
239                         \new Lyrics \lyricsto "lead" \LeadVoxTextD
240                         \new Lyrics \lyricsto "lead" \LeadVoxTextE
241                         \new Staff = UpperStaffB { \new Voice = "alto" \AltoVox }
242                         \new Staff = LowerStaffA { \new Voice = "tenor" \TenorVox }
243                         \new Staff = LowerStaffB { \new Voice = "bass" \BassVox }
244                 >>
245
246                 \set Score.skipBars = ##t
247                 \set Score.melismaBusyProperties = #'()
248         >>
249 }
250
251
252 \paper
253 {
254   #(define fonts (make-pango-font-tree
255         "Times New Roman"
256         "LilyJazz Text"
257         "Luxi Mono"
258         (/ staffSize 20)))
259
260 % Spread staves vertically across last page (default: t)
261         ragged-last-bottom = ##f
262 % Don't spread staves vertically across the page (default: f)
263 %       ragged-bottom = ##t
264 % Allow partial line for last stave (default: f)
265         ragged-last = ##t
266
267 % To find out what's eating the space at the top...
268 %       annotate-spacing = ##t
269 }
270