Back

Feest van genade

instrumental

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 a\major
  \time 4/4
  \tempo 4=112
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose a bes \relative c' {
  \global
  e16 fis8 e16 fis8 e16 fis16~ fis16 e16 fis8 r4 |
  r8 fis8 8 8 a4 b |
  e,16 fis8 e16 fis8 e16 fis16~ fis16 e16 fis8 r4 |
  r8 fis8 8 8 e4 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

chordNames = \transpose a bes \chordmode {
  a1 | a2 cis:m | fis1:m | fis2:m 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
%lyricsToMelody = ##t
songtext = \lyricmode {}

\include "../template.ly"

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 a\major
  \time 4/4
  \tempo 4=112
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose a bes \relative c' {
  \global
  \repeat volta 2 {
    e16 fis8 e16 fis8 e16 fis16~ fis16 e16 fis8 r4 |
    r8 fis8 8 8 a4 b |
    e,16 fis8 e16 fis8 e16 fis16~ fis16 e16 fis8 r4 |
    r8 fis8 8 8 e4 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

chordNames = \transpose a bes \chordmode {
  \repeat volta 2 { a1 | a2 cis:m | fis1:m | fis2:m 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
%lyricsToMelody = ##t
songtext = \lyricmode {}

\include "../template.ly"