]> Shamusworld >> Repos - music/blob - we-are-one-in-the-spirit-vocals.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / we-are-one-in-the-spirit-vocals.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 "We Are One In The Spirit" }
16 %       composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "" }
17         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. Craig Harris" }
18         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
19 }
20
21 % Useful tweak abbreviations (hn = harmony note)
22
23 hn = #(define-music-function (parser location arg) (ly:music?)
24 ;; Harmony Note: Set the tweaks property of the passed in note to use a smaller font
25
26   (set! (ly:music-property arg 'tweaks)
27     (acons 'font-size -3.0 (ly:music-property arg 'tweaks))) arg)
28
29
30 %
31 % Song's structure
32 %
33 Global =
34 {
35         \key e \minor
36         \numericTimeSignature
37         \time 4/4
38
39         \once \override TextScript #'padding = #2.0
40         s1*0^\markup { \large \bold { Funk } }
41 % Capo 4 version
42 %       s1*0^\markup { \hspace #0.0 \raise #2.0 \larger \bold { "Moderate pop (*** CAPO 4 ***)" } }
43
44         % Intro
45
46         s1*4 \bar "||"   % 1-4
47         s1*4 \bar ".|:-||"   % 5-8
48
49         \repeat volta 3
50         {
51                 \once \override Score.RehearsalMark #'self-alignment-X = #left
52                 \mark \markup { \override #'(font-family . sans) { \box { A } } }
53                 s1*6 \bar "||"   % 9-14
54
55                 \mark \markup { \override #'(font-family . sans) { \box { B } } }
56                 s1*4 |   % 15-18
57
58                 s1*2 |   % 19-20
59         }
60         \alternative
61         {
62                 {
63                         s1 |   % 21
64                 }
65                 {
66                         s1 |   % 22
67                 }
68         }
69
70         \repeat volta 2
71         {
72                 \mark \markup { \override #'(font-family . sans) { \box { C } } }
73
74                 s1*0^\markup { \large \bold \italic { Solos } }
75                 s1*2 |   % 23-24
76         }
77
78         % Coda
79
80         s2. s4^\markup { \large \bold \italic { Free Time } } |   % 39
81         s1*3 \bar "|."   % 40-42
82 }
83
84
85 %
86 % Lead vocal
87 %
88 LeadVox = \relative c'
89 {
90         % Intro
91
92         r1 |   % 1
93         r1 |   % 2
94         r1 |   % 3
95         r1 |   % 4
96         r1 |   % 5
97         r1 |   % 6
98         r1 |   % 7
99         r2 r4 b8 d |   % 8
100
101         % Verse
102
103         e4 e8 d e g b, d |   % 9
104         e4 e8 d e r e b'  |   % 10
105         a4 a8 g a g e d |   % 11
106         e4 e8 b d r e b' |   % 12
107         a4 a8 g a g e d |   % 13
108         e8 e e d e r b d |   % 14
109
110         e4 e8 b e g b, d |   % 15
111         e4 e8 g a r g a |   % 16
112         b8 ( a ) g e a g e d |   % 17
113         e4 r r2 |   % 18
114         r1 |   % 19
115         r1 |   % 20
116
117         r2 r4 b8 d |   % 21
118
119         r1 |   % 22
120
121         % Verse
122
123         r1 |   % 23
124         r1 |   % 24
125
126         % Coda
127
128         r2 r4 g8 a |   % 39
129         b8 a g e a g e-> d-> |   % 40
130         b1-\fermata |   % 41
131         r1-\fermata |   % 42
132 }
133
134
135 LeadVoxText = \lyricmode
136 {
137         We are one in the spi -- rit,
138         we are one in the Lord.
139         We are one in the spi -- rit,
140         we are one in the Lord.
141         And we pray that all un -- i -- ty
142         may one day be re -- stored.
143         And they’ll know we are Christ -- ians
144         by our love, by our love,
145         yes they’ll know _ we are Christ -- ians by our love.
146
147         We will
148 }
149
150 LeadVoxTextB = \lyricmode
151 {
152         _ _ work with each oth -- er,
153         We will work side by side.
154         We will work with each oth -- er,
155         We will work side by side.
156         And we’ll guard each one’s dig -- ni -- ty
157         And save _ each one’s pride.
158
159         _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
160
161         We will
162 }
163
164 LeadVoxTextC = \lyricmode
165 {
166         _ _ walk with each oth -- er,
167         We will walk hand in hand.
168         We will walk with each oth -- er,
169         We will walk hand in hand.
170         And to -- ge -- ther we’ll spread the news
171         that God is in our land.
172 }
173
174
175 Riffs = \relative c
176 {
177         % Intro
178
179 %       \tiny
180 %       \repeat percent 4 { e8_\markup { \italic { bass figure } } e e e e e e e } |   % 1-4
181 %       \normalsize
182 }
183
184
185 %
186 % Chord names
187 %
188 Chords = \chordmode
189 {
190         % Intro
191
192         e1:m9 |   % 1
193         s1 |   % 2
194         s1 |   % 3
195         s1 |   % 4
196         e1:m9 |   % 5
197         s4.. a16:13 s2 |   % 5
198         e1:m9 |   % 7
199         s4.. a16:13 s2 |   % 8
200
201         % Verse
202
203         e4.:sus4.7 e8:sus4.7/a s4.. e16:sus4.7 |   % 9
204         s2. s8. e16:m7/a |   % 10
205         s4. a8:9 s4.. e16:sus4.7 |   % 11
206         s2. s8. e16:m7/a |   % 12
207         s4. a8:9 s4.. e16:sus4.7 |   % 13
208         s2. ef8.:m9 d16:m9 |   % 14
209
210         s4.. g2:13.9- c16:maj9 |   % 15
211         s4.. f2:maj7 fs16:m7.5- |   % 16
212         s4.. b16:7 s4 b8.:aug7.9+ e16:m9 |   % 17
213         s4.. a2:13 e16:m9 |   % 18
214         s4.. a16:13 s4 b8.:aug7.9+ e16:m9 |   % 19
215         s4.. a16:13 s4.. e16:m9 |   % 20
216
217         s4.. a16:13 s2 |   % 21
218
219         s4.. a16:13 s2 |   % 22
220
221         % Verse
222
223         e4.:m9 a8:3.5.9 s2  |   % 23
224         e4.:m9 a8:9 s2 |   % 24
225
226         % Coda
227
228         e4..:m9 a2:13 s16 |   % 39
229         fs2:m7.5- b:aug7.9+ |   % 40
230         b1:aug/f |   % 41
231         d1/e |   % 42
232 }
233
234
235 %
236 % Chord rhythms
237 %
238 Rhythm = \relative c
239 {
240         \numericTimeSignature
241         \override NoteHead #'style = #'slash
242         \teeny
243
244         % Intro
245
246          |   % 1
247          |   % 2
248          |   % 3
249          |   % 4
250          |   % 5
251          |   % 6
252          |   % 7
253          |   % 8
254
255         % Verse
256
257          |   % 9
258          |   % 10
259          |   % 11
260          |   % 12
261          |   % 13
262          |   % 14
263
264          |   % 15
265          |   % 16
266          |   % 17
267          |   % 18
268          |   % 19
269          |   % 20
270
271          |   % 21
272
273          |   % 22
274
275         % Verse
276
277          |   % 23
278          |   % 24
279
280         % Coda
281
282          |   % 39
283          |   % 40
284          |   % 41
285          |   % 42
286         \normalsize
287 }
288
289
290 Dynamics =
291 {
292         s1*2 |   % 1-2
293         s4_\markup { \bold \italic { Drums In } } s2. |   % 3
294         s1 |   % 4
295         s4_\markup { \bold \italic { Band In } } s2. |   % 5
296 }
297
298
299 \score
300 {
301         <<
302                 \set Score.skipBars = ##t
303                 \set Score.melismaBusyProperties = #'()
304
305 %               \new Staff
306                 <<
307                         \new ChordNames \Chords
308 %Capo 4 edition
309 %                       \new ChordNames \transpose b g \Chords
310                         \new RhythmicStaff << \Rhythm \Dynamics >>
311                 >>
312
313                 \new Staff
314                 <<
315                         \Global                                         % The "roadmap" that everything else depends on
316                         \new Voice = "lead" \LeadVox
317 %                       \new Voice \Riffs
318                         \new Lyrics \lyricsto "lead" \LeadVoxText
319                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
320                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
321                 >>
322         >>
323 }
324
325
326 \paper
327 {
328         #(define fonts (make-pango-font-tree
329                 "Times New Roman"
330                 "LilyJAZZText"
331                 "Luxi Mono"
332                 (/ staffSize 20)))
333
334 % Spread staves vertically across last page (default: t)
335         ragged-last-bottom = ##f
336 % Don't spread staves vertically across the page (default: f)
337 %       ragged-bottom = ##t
338 % Allow partial line for last stave (default: f)
339         ragged-last = ##t
340
341 % To find out what's eating the space at the top...
342 %       annotate-spacing = ##t
343 }
344