Hi Henry,

a minimal working example would get you more help, i.e. one without
undefined variables like \verseOne but rather some dummy notes that work
for everyone. If I understand what you want, you want the two voices to
be in the same staff, one after the other. Then this might help you.
Here you have only one music expression << >>

\version "2.18.2"


\score {
    <<
      \new ChordNames { c2 c }
      \new Staff = "melodyStaff" {
        \new Voice = "voiceOneTwo" {
          c'4 d' e' f'
        }
        \new Voice = "bridgeVoice" {
          \relative c'' { a4 b c d }
        }
      }
      \new Lyrics \lyricsto "voiceOneTwo" { c d e f }
      \new Lyrics \lyricsto "voiceOneTwo" { C D E F }
    >>
}

Cheers,
Joram

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to