Back

Overwinnaar

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

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  \repeat volta 2 { r2 c'4 c | b4. g8~ 4 d8 e~ | e4. g8~ 2~ 2 r2 }
}

% 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

  \repeat volta 2 { c,,4 c c c g' g g g a a a a f f f f }
}

% Optionally add a right hand (defaults to the melody)
rightHand = \relative c' {
  \global
  <<
    \new Voice { \voiceOne \melody }
    \new Voice { \voiceTwo
      \repeat volta 2 { r2 <e g>4 4 <d g>4. d8~ 4 r4 c1 1 }
    }
  >>
}


chordNames = \chordmode {
  \repeat volta 2 { c1 g a:m f }
}

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

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

% The main melody (and right hand for piano players)
melody = \relative c' {
  \global
  r2 c'4 c | b4. g8~ 4 d8 e~ | 4. g8~ 2~ 2 r2
  r2 c4 c | b4. g8~ 4 e8 f~ | 4 g8 a~ 2~ 4 r4 a8 c4 c8 \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

  c,,4 c c c g' g g g a a a a f f f f
  c c c c g' g g g f f f f f f f8 f4 c8
}

% Optionally add a right hand (defaults to the melody)
rightHand = \relative c' {
  \global
  <<
    \new Voice { \voiceOne \melody }
    \new Voice { \voiceTwo
      r2 <e g>4 4 <d g>4. d8~ 4 r4 c1 <c f>1
      r2 <e g>4 4 <d g>4. d8~ 4 r4 <a c>1 r2 f'8 <f a>4 <e g>8
    }
  >>
}


chordNames = \chordmode {
  c1 g a:m f
  c g f f2. f8 c8
}

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