Back

Emmaus

intro

PNG - MP3 - MIDI

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

melody = \relative c' {
  \numericTimeSignature
  \time 4/4
  \tempo 4=82
  \key g\major
  
   r2 e8 g b a | a a a a a g fis e | r4 e8 e e fis g fis~ | fis fis fis fis fis e d e~ | e1
   \override NoteHead.style = #'slash
   b'4. b8~ b2 | b4. b8~ b2 | r2 r4
   \override NoteHead.style = #'default
   \override NoteHead.font-size = -4
   b,8 d 
}

chordNames = \chordmode {
  e1:m7 | b:m7 | c | d | a2:m7 g:/b | c4. d8 d2 | a4.:m7 g8:/b g2:/b | c4. d8 d2 |
}


melodySax = \transpose es c' \melody

songtext = \lyricmode {
   1 | 1 1 1 1 1 1 2. Als8 ge
}

\include "../template.ly"

vocal_break

PNG - MP3 - MIDI

source code
\version "2.22.2"

melody = \relative c'' {
  \numericTimeSignature
  \key g\major
  \tempo 4=82
  \time 4/4
  { g8 a fis g~ g a fis g~ | g a b b~ b2 | g8 a fis g~ g a fis g~ | g a b b~ b2 | b2 }
}


dual = \relative c'' {
  \numericTimeSignature
  \key g\major
  \tempo 4=82
  \time 4/4
  \clef treble
  { r1 | r4. a8 ~ a d4 b8~ | b r4 a8~ a d4 b8~ | b r4 fis8~ fis2 | gis2 }
}

bass = \relative c {
  \numericTimeSignature
  \key g\major
  \tempo 4=82
  \time 4/4
  \clef "treble_8"
  { r1 | e4 r8 d'8~ d g4. | e,4 r8 d'8~ d g4. | e,4 r8 dis'8~ dis2 | e2 }
}

\score {
  <<
    \new ChordNames {
      \chordmode {
        \set noChordSymbol = ""
        \set chordChanges = ##t
        a1:m a:m a:m b e
      }
    }
    \new Staff  \melody
    \new Staff \dual
    \new Staff \bass
  >>
  \midi {}
  \layout {
    indent = #0
    line-width = 5\in
  }
}