\version "2.19.46"

\header{
  title = "Almost Triumph"
  composer = "Quin Monk"
  tagline = ""
}
\include  "msJazz.ly"

theMelody = \relative g' {
  \numericTimeSignature\time 3/4
  \set Timing.beamExceptions = #'()
  \set Timing.baseMoment = #(ly:make-moment 1/4)
  \set Timing.beatStructure = 1,1,1
  \override Score.MetronomeMark.self-alignment-X = #0.9
  \key g \minor
  \tempo 4=160
  \repeat volta 2 {
    g2 bes4 | f'2 c4 |
    bes4. a8 bes a | c2 a4 |
    g2 bes4 | f'2 c4 |
    bes4. a8 bes a | c2. |
    g2 ~ g8 bes | f'2 c4 |
    bes4. a8 bes a | c2 a4 |
    bes2 ~ bes8 c | a2 ~ a8 bes |
    g2 ~ g8 f | g2.
  }
}

theChords = \chordmode {
  \repeat volta 2 {
    g2.:m s ees c:m
    g:m s ees d:7
    g:m s ees c:m
    ees d:7 c:m g:m
  }
}

\score {
  <<
    \new ChordNames {  \theChords }
    \new Staff {\theMelody }
  >>
}