]> Shamusworld >> Repos - music/blob - hosanna-loud-hosanna.ly
New charts "How Great Thou Art" and "In The Garden".
[music] / hosanna-loud-hosanna.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 "Hosanna, Loud Hosanna" }
16         subtitle    = \markup { \override #'(font-family . sans) \fontsize #1.3 "(White bread vers.)" }
17         composer = \markup { \override #'(font-family . sans) \fontsize #1.3 "Jennette Threlfall" }
18         arranger = \markup { \override #'(font-family . sans) \fontsize #1.3 "arr. S. Hammons" }
19         tagline  = $(string-append "Engraved by JLH and Lilypond " (lilypond-version))
20 }
21
22
23 %
24 % Song's structure
25 %
26 Global =
27 {
28         \clef G
29         \key bf \major
30         \numericTimeSignature
31         \time 4/4
32
33         % Verse
34
35         \partial 4*1 s4 |   % 0
36         s1*4 |   % 1-4
37 \break % bleh
38
39         s1*4 |   % 5-8
40 \break % bleh
41
42         s1*4 |   % 9-12
43 \break % bleh
44
45         s1*3 |   % 13-15
46         \partial 4*3 s2. \bar "|."   % 16
47 }
48
49
50 %
51 % Lead vocal
52 %
53 LeadVox = \relative c'
54 {
55         \clef G
56
57         % Verse
58
59         f4 |   % 0
60         bf4 a8 ( g ) f4 bf |   % 1
61         d,4 ( ef ) f f |   % 2
62         g8 ( a ) bf4 c c |   % 3
63         d2. f,4 |   % 4
64
65         bf4 a8 ( g ) f4 bf |   % 5
66         d,4 ( ef ) f f |   % 6
67         g8 ( a ) bf4 bf a |   % 7
68         bf2. bf8 ( c ) |   % 8
69
70         d4 c d ef |   % 9
71         c4 ( a8 bf ) c4 bf8 ( c ) |   % 10
72         d4 c d ef |   % 11
73         c2. f,4 |   % 12
74
75         bf4 a8 ( g ) f4 bf |   % 13
76         d,4 ( ef ) f f |   % 14
77         g8 ( a ) bf4 bf a |   % 15
78         bf2. |   % 16
79 }
80
81
82 LeadVoxText = \lyricmode
83 {
84         Ho -- san -- na, _ loud ho -- san -- _ na, the lit -- _ tle chil -- dren sang;
85         Through pil -- lared _ court and tem -- _ ple the joy -- _ ful an -- them rang;
86         To _ Je -- sus, who had bles -- sed _ them close _ fold -- ed to his breast;
87         The chil -- dren _ sang their prais -- _ es, the sim -- _ plest and the best.
88 }
89
90 LeadVoxTextB = \lyricmode
91 {
92         From Ol -- i -- _ vet they fol -- _ lowed ’mid an _ ex -- ult -- ant crowd;
93         The vic -- tor _ palm branch wav -- _ ing, and chant -- _ int clear and loud;
94         The _ Lord of earth and heav -- _ _ en rode _ on in low -- ly state,
95         Nor scorned that _ lit -- tle chil -- _ dren should on _ his bid -- ding wait.
96 }
97
98 LeadVoxTextC = \lyricmode
99 {
100         “Ho -- san -- na _ in the high -- _ est!” that an -- _ cient song we sing,
101         For Christ is _ our re -- deem -- _ er, the Lord _ of heaven our King.
102         O _ may we e -- ver praise _ _ him with _ heart and life and voice,
103         And in his _ bliss -- ful pres -- _ ence e -- ter -- _ nal -- ly re -- joice.
104 }
105
106
107 %
108 % Chord names
109 %
110 Chords = \chordmode
111 {
112         s4 |   % 0
113         bf1 |   % 1
114         g2:m bf |   % 2
115         ef2 f |   % 3
116         bf1 |   % 4
117
118         bf1 |   % 5
119         g2:m bf |   % 6
120         ef2 f |   % 7
121         bf1 |   % 8
122
123         bf4 f bf2 |   % 9
124         f2 f:7 |   % 10
125         bf4 f bf2 |   % 11
126         f2 f:7 |   % 12
127
128         bf1 |   % 13
129         g2:m bf |   % 14
130         ef2 f |   % 15
131         bf2.  |   % 16
132 }
133
134
135 Dynamics =
136 {
137 %{
138         s4_\markup { \italic { snare on 4, bass 8th notes } } s2. |   % 1
139         s1*26 |   % 2-27
140         s2 s4 \< s |   % 28
141         s4_\f s_\markup { \hspace #0.0 \raise #-2.0 \italic { snare 2 & 4 } } s2 |   % 29
142         s1*8 |   % 30-37
143         s2 s4 \< s \! |   % 38
144         s1 |   % 39
145         s2. s8 \> s \! |   % 40
146         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { bass 8th notes, band builds each repeat } } s2. |   % 41
147         s1*8 |   % 42-49
148         s4 \< s2. |   % 50
149         s4_\f s2. |   % 51
150         s1*5 |   % 52-56
151         s4_\markup { \hspace #0.0 \raise #-2.0 \italic { rit. last time } } s2. |   % 57
152         s2 s4 \< s \! |   % 58
153 %}
154 }
155
156
157 \score
158 {
159         <<
160                 <<
161                         \new ChordNames \Chords
162                 >>
163
164                 \new Staff
165                 <<
166                         \Global         % The "roadmap" that everything else depends on
167                         \new Voice = "lead" \LeadVox
168                         \new Lyrics \lyricsto "lead" \LeadVoxText
169                         \new Lyrics \lyricsto "lead" \LeadVoxTextB
170                         \new Lyrics \lyricsto "lead" \LeadVoxTextC
171                 >>
172
173                 \set Score.skipBars = ##t
174                 \set Score.melismaBusyProperties = #'()
175         >>
176 }
177
178
179 \paper
180 {
181         #(define fonts (make-pango-font-tree
182                 "Times New Roman"
183                 "JazzText"
184                 "Luxi Mono"
185                 (/ staffSize 20)))
186
187 % Spread staves vertically across last page (default: t)
188 %       ragged-last-bottom = ##f
189 % Don't spread staves vertically across the page (default: f)
190 %       ragged-bottom = ##t
191 % Allow partial line for last stave (default: f)
192 %       ragged-last = ##t
193
194 % To find out what's eating the space at the top...
195 %       annotate-spacing = ##t
196 }
197