lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Scoring song with multiple sections


From: Noeck
Subject: Re: Scoring song with multiple sections
Date: Sun, 1 May 2016 20:09:59 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]