Back

In Christ alone

instrumental-shane

PNG - MP3 - MIDI

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

% global data required for every staff
global = {
  \numericTimeSignature
  \key e\major
  \time 3/4
  \tempo 4=64
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose e d \relative c' {
  \global
    dis'16 e dis e dis e dis e fis8. e16 |
    dis e dis e dis e dis e fis8. gis16 |
    dis e dis e dis e dis e fis8. e16 |
    e2 r4
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \transpose d e \relative c' {
%  \global
%  <<
%    { \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 e d \chordmode {
    e2 cis4:m/fis |
    b2:/dis e4:/gis |
    a2 b4:sus4 |
    e2. |
}

% 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 {
% In christ a -- lone  my hope is found
% He is my light my strength my song
% This cor -- ner -- stone,
% this so -- lid ground.
% Firm through the fier -- cest drought and storm.
}

\include "../template.ly"

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 d\major
  \time 3/4
  \tempo 4=64
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose d e \relative c' {
  \global
  \partial 4. a8 b8. d16 |
  d4 r8 a8 b d | e4 r fis8 e16 d | b8 fis' e4. d8 | d4 r8
  a8 b8. d16 | d4 r8 a8 b8 d | e4 r fis8 e16 d b8 fis' e4. d8 | d4 r2 |
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \transpose d e \relative c' {
%  \global
%  <<
%    { \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 d e \chordmode {
  \partial 4. g4. | d2 g4 | a:sus a d:/fis | g8 e:m a4:7sus4 a:7 | d2 g4:/a |
  d2 g4:/b | a4:sus a d:/fis | g8 e:m7 a4:7sus4 a:7 | d1
}

% 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 {
% In christ a -- lone  my hope is found
% He is my light my strength my song
% This cor -- ner -- stone,
% this so -- lid ground.
% Firm through the fier -- cest drought and storm.
}

\include "../template.ly"

intro-shane

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 3/4
  \tempo 4=64
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose e d \relative c' {
  \global
  \repeat volta 2 {
    dis'16 e dis e dis e dis e fis8. e16 |
    dis e dis e dis e dis e fis8. gis16 |
    dis e dis e dis e dis e fis8. e16 |
    \alternative {
      \volta 1 { dis e dis e dis e dis e fis8. gis16 }
      \volta 2 { e2 r4 }
    }
  }
  
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \transpose d e \relative c' {
%  \global
%  <<
%    { \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 e d \chordmode {
  \repeat volta 2 {
    e2 cis4:m/fis |
    b2:/dis e4:/gis |
    a2 b4:sus4 |
    \alternative {
      \volta 1 {e2.}
      \volta 2 {e2.}
    }
  }
}

% 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 {
  2. 2. 2. 2. 4. in8 Christ alone...
% In christ a -- lone  my hope is found
% He is my light my strength my song
% This cor -- ner -- stone,
% this so -- lid ground.
% Firm through the fier -- cest drought and storm.
}

\include "../template.ly"

outro-shane

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 e\major
  \time 3/4
  \tempo 4=64
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = #'(1 1 1)
}

% The main melody (and right hand for piano players)
melody = \transpose e d \relative c' {
  \global
  \repeat volta 2 {
    dis'16 e dis e dis e dis e fis8. e16 |
    dis e dis e dis e dis e fis8. gis16 |
    dis e dis e dis e dis e fis8. e16 |
    \alternative {
      \volta 1 { dis e dis e dis e dis e fis8. gis16 }
      \volta 2 { e2. \bar "|." }
    }
  }
  
}

% Optionally add a right hand (defaults to the melody)
%rightHand = \transpose d e \relative c' {
%  \global
%  <<
%    { \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 e d \chordmode {
  \repeat volta 2 {
    e2 cis4:m/fis |
    b2:/dis e4:/gis |
    a2 b4:sus4 |
    \alternative {
      \volta 1 {e2.}
      \volta 2 {e2.}
    }
  }
}

% 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 {
% In christ a -- lone  my hope is found
% He is my light my strength my song
% This cor -- ner -- stone,
% this so -- lid ground.
% Firm through the fier -- cest drought and storm.
}

\include "../template.ly"