Back

Breng ons samen

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 3,3 6/8
  \tempo 4.=56
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  r2. | r4. g''8. fis | d2. |
  \override NoteHead.style = #'harmonic
  a4. a8. c | b2. |
  \revert NoteHead.style
  r4. g'8. fis | d4.
  \override NoteHead.style = #'harmonic
  g,8. fis | d4.
  \revert NoteHead.style
  b8. a | g2.
}

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

chordNames = \chordmode {
  \repeat unfold 9 { g2. }
}

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

verhoging

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key g\major
  \time 3,3 6/8
  \tempo 4.=56
}

% The main melody (and right hand for piano players)
melody = \relative c' {
  { \global }
  \grace d'8. e2 e8 d e d16 e8 d16 b4. |
  fis8 g fis16( g d'4.) |
  d16([ c b)] c( b a) b([ a g)] e([ g a)] |
  b8( d16 b8 a16) e8( g16 e8) b'16 |
  e8( g16 e8) r16 a8 g16( a8 g16) |
  a16( b a) g e g d( e b) d a b
  \tuplet 3/2 8 { d,[ e fis g a b]   fis[ g a b c d]  e[ fis g a b c] } | d2.
  
}

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

chordNames = \chordmode {
  e2. e g d4.:m7 cis:dim c2.:maj7 | g | a4.:m7 g:/b | d2.:sus4 | 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"