Back

Jezus liefde voor mij

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 6/8
  \tempo 4.=54
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  r4. d'8. c | g4. d'8. c f,4 a8 a g f | g4. e8 f g |
  c,4. d'8. c | g4. g8 f e | f4. f8 e c | c2. | 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

chordNames = \chordmode {
  f2. | c:/e | d4.:m g:/b | c:sus c |
  f2. | c:/e | g:m | f | f
}

% 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 {}

\include "../template.ly"

tussenspel

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key c\major
  \time 6/8
  \tempo 4.=54
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  \repeat volta 2 {
    r4. d'8. c | g4. d'8. c f,4 a8 a g f | g4. e8 f g |
    c,4. d'8. c | g4. g8 f e |
    \alternative {
    \volta 1 { f4. f | g c, }
    \volta 2 { f2. | g }
    }
  }
}

% 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

chordNames = \chordmode {
  \repeat volta  2{ 
    f2. | c:/e | d4.:m g:/b | c:sus c |
    f2. | c:/e | 
    \alternative {
      \volta  1 { g4.:m f:/a | g:/b c:/e }
      \volta  2 { d2.:m | g }
    }
  }
}

% 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 {}

\include "../template.ly"