Back

Licht van de wereld

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

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  b''2. dis,4 | e cis~ cis e | fis gis~ gis b, | b2 a4. gis8 | gis1
}

% Optionally add a right hand (defaults to the melody)
rightHand = \relative c' {
  \global
  <<
    \new Voice { \voiceOne \melody }
    \new Voice { \voiceTwo
      <fis' gis>2. <fis, b>4 | <a cis> <e a>~ 4 cis' | <b e>2 <b e>4 <b, e> | <cis e>2 2 | <b e>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
  
  e2 e | a, a' | gis gis, | fis b | e1
}

chordNames = \chordmode {
  e1:2 a e:/gis fis2:m9 a:/b e1
}

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

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

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  \partial 16*3 { b16 e b } | gis'4 gis8. fis32 e fis16 b, b8 r16
  b e b | gis'8. a16 gis8. fis32 e fis16 e cis'8. b16. a | a4 gis32 fis16 fis fis8 e32 dis16 e a'4
}

chordNames = \chordmode {
  \set noChordSymbol = ""
  \partial 16*3 { r16*3 } e2 b:/dis | cis:m7 b | a1 | a2 b |
  e b:/dis | cis:m7 b | a e | g b | e1
}

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