\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key es\major
\time 6/8
\tempo 4.=50
}
% The main melody (and right hand for piano players)
melody = \relative c' {
\global
\repeat volta 2 {
\repeat unfold 4 { <bes' g'>4. <g d'> }
}
}
% 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
}
chExceptionMusic = {
<c es g d'>1-\markup { "m" \super 2 }
}
% Convert music to list and prepend to existing exceptions.
chExceptions = #(append
(sequential-music-to-chord-exceptions chExceptionMusic #t)
ignatzekExceptions)
chordNames = \chordmode {
\set chordNameExceptions = #chExceptions
\repeat volta 2 {
\repeat unfold 4 { c4.:m7 <c es g d'> }
}
}
% 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"
\version "2.24.1"
% global data required for every staff
global = {
\numericTimeSignature
\key es\major
\time 6/8
\tempo 4.=50
}
% The main melody (and right hand for piano players)
melody = \relative c' {
\global
%\repeat volta 2 {
\repeat unfold 4 { <bes' g'>4. <g d'> }
%}
}
% 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
}
chExceptionMusic = {
<c es g d'>1-\markup { "m" \super 2 }
}
% Convert music to list and prepend to existing exceptions.
chExceptions = #(append
(sequential-music-to-chord-exceptions chExceptionMusic #t)
ignatzekExceptions)
chordNames = \chordmode {
\set chordNameExceptions = #chExceptions
%\repeat volta 2 {
\repeat unfold 4 { c4.:m7 <c es g d'> }
%}
}
% 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"