\version "2.19.46"

\header{
  title = "Half A Mind"
  composer = "Matiss Schubert"
}
\include  "msJazz.ly"

voiceone = \relative g' {
  \numericTimeSignature\time 4/4
  \key g \major
  \partial 4
  b8 c
  \repeat volta 2 {
    d2. b8 c |d2. b8 c |
    d g fis g e g fis g | d2. b8 c | \break
    d g fis g e g fis g| d g fis g e g fis g |
    e d c b c b a fis |
  }
  \alternative{
    {g2. b8 c |}
    {g2. g8 e | \break}
  }
  \repeat volta 2 {
    d4 g fis g | a8 b a fis g4 g8 e |
    d4 g fis g | a4. b8 a4 g8 e |
    d4 g fis g | a8 b a fis g4 g'8 fis |
    e d c b c b a fis |
  }
  \alternative{
    {g2. g8 e }
    {g1 \bar "|."}
  }
}

theChords = \chordmode {
  \partial 4
  s4
  \repeat volta 2 {
    g1 s s s
    s s c2 d
  }
  \alternative{
    {g s}{ g s}
  }
  \repeat volta 2 {
    g s d g s s d s
    g s d g c d
  }
  \alternative{
    {g s}{g s}
  }
}

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