Back

Hoe groot zijt Gij

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 a\major
  \time 4/4
  \tempo 4=70
  \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
  \partial 2 r8 e8 e a | cis4. b8 a gis a fis | e2 r8
  a gis a b4. cis8 d4 gis, a2 r2 r2 r8
  \override NoteHead.font-size = -4
  e8 e e
}

% 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' {
  \global
  \clef bass
}

chordNames = \chordmode {
  \partial 2 d2:/e a4 cis:7 d2 | a a:/cis | e:sus e | a e:/a d:/a d:/e
}

% 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 {
  Dan zingt mijn ziel tot U, o Heer mijn God:
  hoe groot zijt Gij, hoe groot zijt Gij!
  O heer mijn
}

\include "../template.ly"

intro2

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key a\major
  \time 4/4
  \tempo 4=70
  \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 = \transpose a g \relative c' {
  \global
  % Zie de nederland zingt versie met saxofoon :)
  \partial 2 r8 e e e | cis4. e8 e e fis fis | d4 fis4. fis8 fis fis | e4.
  cis8 d d cis b a1
}

% 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' {
  \global
  \clef bass
}

chordNames = \transpose a g \chordmode {
  \partial 2 r2 a2 a4:/cis d b:m d2. | a2.:/e e4:7 | a2 e:7
}

% 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 dis c' \melody
%melodyHorn = \transpose f c' \melody

% Optional lyrics to indicate when to start singing
songtext = \lyricmode {

}

\include "../template.ly"