Back

Make me a channel of Your peace

melody

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 d\major
  \time 4/4
  \tempo 4=160
  \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 d c \relative c' {
  \global
  r4 fis fis fis | fis fis g a | fis1~ | fis2 r4 a, |
  fis' fis fis fis fis fis g a e1~ | e2 r4 a, |\break
  g' g g g | g g a b | g1~ | g2 r4 a,4 |
  g' g g g fis2 e d1~ | d1
}

% 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 = \transpose d c \chordmode {
  d1 | b2:m a:7 | d1 | e2:m a:7 | d1 | b2:m g | e1:m | a:7
  e:m | a:7 | e:m7 | a:7 | e:m | a:7 | d1*2
}

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