Back

Jezus redt

intro

PNG - MP3 - MIDI

sax PNG
sax-only PNG
horn PNG
source code
\version "2.24.1"

% global data required for every staff
global = {
  \numericTimeSignature
  \key c\major
  \time 3/4
  \tempo 4=68
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1)
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  <g c e>4. c8 d e | <g, c d f>2 e'8 d <g, c e>4. c8 d e | <g, c d f>2.
}

% 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

  \repeat unfold 4 {c,8. c16~ 2}
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \relative c' { \global \clef bass c1 }


chordNames = \chordmode {
  c2. | c:sus | c | c:sus
}

% 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"