Back

Ik wil jou van harte dienen

instrumental_C

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 4/4
  \tempo 4=120
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  bes'1 | a2 f4. e8 | f g8 4~ 2~ | 2 r2
  bes2~ 4 c4 | a2 f4. e8 | f g8 c4~ 2~ | 2 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' {
  \global
  \clef bass
}

chordNames = \chordmode {
  \repeat unfold 2 { bes1 d:m c c }
}

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

instrumental_D

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key c\major
  \time 4/4
  \tempo 4=120
}

% The main melody (and right hand for piano players)
melody = \transpose c d \relative c' {
  \global
  bes'1 | a2 f4. e8 | f g8 4~ 2~ | 2 r2
  bes2~ 4 c4 | a2 f4. e8 | f g8 c4~ 2~ | 2 r2 | r1 \bar"|."
}

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

chordNames = \chordmode {
  c1 | e:m | d | d
  c  | e:m | d | d |\set chordChanges = ##f 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"

instrumental_Db

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key c\major
  \time 4/4
  \tempo 4=120
}

% The main melody (and right hand for piano players)
melody = \transpose c des \relative c' {
  \global
  bes'1 | a2 f4. e8 | f g8 4~ 2~ | 2 r2
  bes2~ 4 c4 | a2 f4. e8 | f g8 c4~ 2~ | 2 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' {
  \global
  \clef bass
}

chordNames = \chordmode {
  b1 | es:m | des | des
  b  | es:m | des | a
}

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