]> Shamusworld >> Repos - music/blob - in-christ-alone.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / in-christ-alone.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 = #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 "In Christ Alone" }
16         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Stuart Townend/Keith Getty" }
17 %       arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. " }
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 d \major
36         \numericTimeSignature
37         \time 3/4
38
39         % Intro
40
41         \once \override TextScript #'padding = #2.0
42         s1*0^\markup { \large \bold { Not too fast } }
43 % Capo 4 version
44 %       s1*0^\markup { \hspace #0.0 \raise #2.0 \larger \bold { "Moderate pop (*** CAPO 4 ***)" } }
45         \partial 8*3 s4. |   % 0
46         s2.*15 |   % 1-15
47         \partial 8*3 s4. \bar "|."   % 16
48 }
49
50
51 %
52 % Lead vocal
53 %
54 LeadVox = \relative c'
55 {
56         \clef G
57
58 %       r4 r8 a b8. d16 |   % 0
59         a8 b8. d16 |   % 0
60         d4. a8 b d |   % 1
61         e2 fs8 e16 d |   % 2
62         b8 fs' e4. d8 |   % 3
63         d4 r8 a b8. d16 |   % 4
64
65         d4. a8 b d |   % 5
66         e2 fs8 e16 d |   % 6
67         b8 fs' e4. d8 |   % 7
68         d4 r8 d fs a |   % 8
69
70         b4. b8 a fs |   % 9
71         e4 r8 d d' cs |   % 10
72         b4. b8 a fs |   % 11
73         e4 r8 a, b8. d16 |   % 12
74
75         d4. a8 b d |   % 13
76         e2 fs8 e16 d |   % 14
77         b8 fs' e4. d8 |   % 15
78 %       d4. r8 r4 |   % 16
79         d4. |   % 16
80 }
81
82 LeadVoxText = \lyricmode
83 {
84         In Christ a -- lone my hope is found,
85         he is my light, my strength, my song;
86         This cor -- ner -- stone, this so -- lid ground,
87         firm thro’ the fier -- cest drought and storm.
88
89         What heights of love, what depths of peace,
90         when fears are stilled, when striv -- ing cease.
91
92         My com -- for -- ter, my all in all,
93         here in the love of Christ I stand.
94 }
95
96 LeadVoxTextB = \lyricmode
97 {
98         In Christ a -- lone, who took on flesh,
99         full -- ness of God in help -- less babe.
100         This gift of love and right -- eous -- ness,
101         scorned by the ones he came to save.
102
103         Till on that cross, as Je -- sus died,
104         the wrath of God was sat -- is -- fied;
105
106         For ev’ -- ry sin on him was laid,
107         here in the death of Christ I live.
108 }
109
110 LeadVoxTextC = \lyricmode
111 {
112         There in the ground his bo -- dy lay,
113         light of the world by dark -- ness slain;
114         Then burst -- ing forth in glor -- ious day
115         up from the grave he rose a -- gain.
116
117         And as he stands in vic -- tor -- y
118         sin’s curse has lost its grip on me,
119
120         For I am his and he is mine,
121         bought with the pre -- cious blood of Christ.
122 }
123
124 LeadVoxTextD = \lyricmode
125 {
126         No guilt in life, no fear in death,
127         this is the pow’r of Christ in me;
128         From life’s first cry to fi -- nal breath,
129         Je -- sus com -- mands my des -- tin -- y.
130
131         No pow’r of hell, no scheme of man,
132         can e -- ver pluck me from his hand;
133
134         Till he re -- turns or calls me home,
135         here in the pow’r of Christ I stand.
136 }
137
138
139 Riffs = \relative c''
140 {
141         % Intro
142
143 %{
144         \tiny
145         \normalsize
146 %}
147 }
148
149
150 %
151 % Chord names
152 %
153 Chords = \chordmode
154 {
155 %       s4. d8 g4/a |   % 0
156         d8 g4/a |   % 0
157         d2 g4 |   % 1
158         a4:sus4 a b:m |   % 2
159         g4 a4. g8/a |   % 3
160         d2 g4/a |   % 4
161
162         d4 d/cs b:m |   % 5
163         g4:6 a b:m |   % 6
164         g4 a4. g8/a |   % 7
165         d2 d4/fs |   % 8
166
167         g2 d4/a |   % 9
168         a2 d8/fs fs:m7 |   % 10
169         g2 b4:m7 |   % 11
170         a2 g4/a |   % 12
171
172         d4:sus4 d g |   % 13
173         a4:sus4 a b:m |   % 14
174         g4 a4. g8/a |   % 15
175 %       d4. s |   % 16
176         d4. |   % 16
177 }
178
179
180 %
181 % Chord rhythms
182 %
183 Rhythm = \relative c
184 {
185         \numericTimeSignature
186         \override NoteHead #'style = #'slash
187         \teeny
188
189 %       r4 r8 c c4 |   % 0
190         c8 c4 |   % 0
191         c4 c c |   % 1
192         c4 c c |   % 2
193         c4 c4. c8 |   % 3
194         c4 c c |   % 4
195
196         c4 c c |   % 5
197         c4 c c |   % 6
198         c4 c4. c8 |   % 7
199         c4 c c |   % 8
200
201         c4 c c |   % 9
202         c4 c c8 c |   % 10
203         c4 c c |   % 11
204         c4 c c |   % 12
205
206         c4 c c |   % 13
207         c4 c c |   % 14
208         c4 c4. c8 |   % 15
209 %       c4. r |   % 16
210         c4. |   % 16
211 }
212
213
214 Dynamics =
215 {
216 %{
217         s4_\markup { \italic { snare pat. } } s2 |   % 1
218         s4_\markup { \italic { simile } } s2 |   % 2
219         s2.*19
220         s4_\markup { \italic { spacey } } s2 |   % 22
221         s2.*5
222         s4 s \< s \! |   % 28
223         s2.*22
224         s4_\markup { \italic { Last time } } s2 |   % 51
225 %}
226 }
227
228
229 \score
230 {
231         <<
232                 \Global         % The "roadmap" that everything else depends on
233                 \set Score.skipBars = ##t
234                 \set Score.melismaBusyProperties = #'()
235
236                 \context Staff
237                 <<
238                         \new Voice = "lead" \LeadVox
239                         \new Voice \Riffs
240                         \new Lyrics \lyricsto "lead" \LeadVoxText
241                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
242                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
243                         \new Lyrics \lyricsto "lead" \LeadVoxTextD
244                 >>
245
246                 \new ChoirStaff
247                 <<
248                         \new ChordNames \Chords
249 %Capo 4 edition
250 %                       \new ChordNames \transpose b g \Chords
251                         \new RhythmicStaff << \Rhythm \Dynamics >>
252                 >>
253         >>
254 }
255
256
257 \paper
258 {
259         #(define fonts (make-pango-font-tree
260                 "Times New Roman"
261                 "LilyJAZZText"
262                 "Luxi Mono"
263                 (/ staffSize 20)))
264
265 % Spread staves vertically across last page (default: t)
266         ragged-last-bottom = ##f
267 % Don't spread staves vertically across the page (default: f)
268 %       ragged-bottom = ##t
269 % Allow partial line for last stave (default: f)
270 %       ragged-last = ##t
271
272 % To find out what's eating the space at the top...
273 %       annotate-spacing = ##t
274 }
275