source code
\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key g\major
\time 6/8
\tempo 4=60
\set Timing.beamExceptions = #'()
\set Timing.baseMoment = #(ly:make-moment 1/4)
\set Timing.beatStructure = #'(1 1 1 1)
}
% The main melody (and right hand for piano players)
melody = \relative c'' {
\global
g4. b | e8 fis g b,4. | d4~ 16 c b8 a g |
e' fis g fis g a | g4. b,8( c) d e( fis) g c,4. |
r2. | r2. | 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' {
}
chordNames = \chordmode {
g4. g:/b c g d e:m c d \break g a:m g:/b c c c g:/b d g g:/b
}
% 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
%lyricsToMelody = ##t
songtext = \lyricmode {
2.*7 2 what4 rich8 -- es of kind -- ness4
}
\include "../template.ly"