source code
\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key e\major
\time 4/4
\tempo 4=72
}
% The main melody (and right hand for piano players)
melody = \relative c' {
\global
b''2. dis,4 | e cis~ cis e | fis gis~ gis b, | b2 a4. gis8 | gis1
}
% Optionally add a right hand (defaults to the melody)
rightHand = \relative c' {
\global
<<
\new Voice { \voiceOne \melody }
\new Voice { \voiceTwo
<fis' gis>2. <fis, b>4 | <a cis> <e a>~ 4 cis' | <b e>2 <b e>4 <b, e> | <cis e>2 2 | <b e>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
e2 e | a, a' | gis gis, | fis b | e1
}
chordNames = \chordmode {
e1:2 a e:/gis fis2:m9 a:/b e1
}
% 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 {}
\include "../template.ly"