source code
\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key a\major
\time 4/4
\tempo 4=68
}
% The main melody (and right hand for piano players)
melody = \transpose a d' \relative c' {
\global
\partial 2 { a'4( b8. cis16) } cis2 r4
b8.( cis16) | 2 r4
a8 cis | d8. cis16~ 4~ 8 b16( a) 8.( b16) | 2 r4
b16 cis b a | fis2 r4
b16 cis b a | fis4 r
fis8 gis a( b16 cis) | cis2 r4
b8.( cis16) | 2 r4
a8 cis d8. cis16~ 4~ 8 b16( a) a8.( b16) | b2 r4
b16 cis b a | fis2 r4
b16 cis b a | fis4 r4
fis4( gis8. a16) | 1~ | 2 r2
}
% Optionally add a right hand (defaults to the melody)
%rightHand = \relative c' {
% \global
% <<
% \new Voice { \voiceOne \melody }
% \new Voice { \voiceTwo
% <c e>2 <b d> | <c f> <b d> | <c e> <b d> | <c f> <e gis>8 e e d |
% <e a>2 <e g> | <c f> <c e> | <a c> a | <a c f>1
% }
% >>
%}
% Optionally add a left hand for piano players
% Remove the notes from the leftHand to remove the staff entirely
leftHand = \relative c' {
\global
\clef bass
}
chordNames = \transpose a d \chordmode {
\set noChordSymbol = ""
\partial 2 { r4 e4 }
a2. e4 | a1 | d8.:/a a16 a2 fis4:m | e2.
b8:m a:/cis | d2. b8:m a:/cis | d1
a2. e4 a1 | d8.:/a a16 a2 fis4:m | e2.
b8:m a:/cis | d2. b8:m a:/cis | d2. e4 | a1 | a1
}
% Uncomment to for example change to which octave the different instruments are tranposed
% For example, use `\transpose es c` to lower by one octave.
%melodySax = \transpose es c' \melody
%melodyHorn = \transpose f c' \melody
% Optional lyrics to indicate when to start singing
songtext = \lyricmode {
Ho2 -- ly,2 4 ho4 -- ly2 4
are8 You, Lord8. God4.. Al8 -- might4 -- y2 4
Wor16 -- thy is the Lamb,2 4
wor16 -- thy is the Lamb.4 4
You8 are ho4 -- ly2 4
ho4 -- ly2 4
are8 you Lord8. God4.. Al8 -- might4 -- y2 4
Wor16 -- thy is the Lamb,2 4
wor16 -- thy is the Lamb.4 4
A2 -- men.1
}
\include "../template.ly"