Back

Maak ons hart onrustig

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 d\minor
  \time 4/4
  \tempo 4=79
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  d2 c' g4 a8 bes a2 |
  f g f e |
  f4 a d e g g f a |
  d, d e2
  e4( g) f e
  bes2 g a2~ 2
}

% 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 {
  d2:m g:m/bes | c4 c:/bes f2:/a |
  bes e:m7.5-/g | d:m/a a |
  d:m e:m7.5-/d | cis:dim7 a4:m7/c d:/c |
  g2:m/bes a:7 | cis:dim d4:m d:m/c |
  bes4 bes:/a e2:m7.5-/g | d:m/a 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
%lyricsToMelody = ##t
songtext = \lyricmode {}

\include "../template.ly"