Back

Hemels vuur

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 g\major
  \time 4/4
  \tempo 4=116
  \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 = \relative c' {
  \global
  \repeat volta 2 {
    r4 g' g g | g g g 16 8 8 16 8 |
    r4 d' d d | 
    \alternative {
      \volta 1 { r8 fis, g e'4. fis,8 g }
      \volta 2 { r8 fis g e'4. d4 }
    }
  }
}

% 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 volta 2 { 
    c1:maj7 g d
    \alternative {
      \volta 1 { e:m }
      \volta 2 { e:m }
    }
  }
}

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

outro

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 g\major
  \time 4/4
  \tempo 4=116
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  e8 d' b a b g d g | a b a2. |
  e8 d' b a b g d g | a d, d2. |
  e8 d' b a b g d g | a b a b a b d,4 |
  e8 d' b a b g d g | a d, d2. \bar "|."
}

% 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 { c1 g e:m7 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"

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 g\major
  \time 4/4
  \tempo 4=116
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  e8 d' b a b g d g | a b a2. |
  e8 d' b a b g d g | a d, d2. |
  e8 d' b a b g d g | a b a b a b d,4 |
  e8 d' b a b g d g | a d, d2.
}

% 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 { c1 g e:m7 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"