source code
\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key a\major
\time 4/4
\tempo 4=120
}
% The main melody (and right hand for piano players)
melody = \transpose d c \relative c' {
\global
\partial 4 fis4 2. 8 gis | a4 e cis' a8( b) |
2. a8( gis) | a a gis4 fis e8( fis) |
2. fis8( gis) | a4 e cis' a8( b) |
b4 cis8 b a( gis) 4 | fis2. \bar "|."
}
% 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 d c \chordmode {
\set noChordSymbol = ""
\partial 4 r4
d1 | a | e | fis:m | d | a | b2:m cis:m | fis1:m
}
% 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 {
Our4 God2. is8 an awe4 -- some God. He4 reigns2. from4 heav8 -- en a4 -- bove with wis2. -- dom,4 pow'r and love. Our God is8 an awe4 -- some God2.
}
\include "../template.ly"