On 03.01.2016 20:40, Ryan Michael wrote:
I have the following lilypond code:


\score {
  \new StaffGroup <<
   \new Staff << \global \recorder >>

   \new Lyrics \lyricsto "recorder" {
      \verseOne
    }

    \new Staff << \global \viola >>
  >>

  \layout { }
  \midi { }
}

\lyricsto "recorder" means: associate these lyrics with the voice named "recorder". You can create a voice with a name by using \new Voice = "recorder" { … some music … }. The question now is: should \global be in the same voice like \recorder? If yes,

<<
  \new Staff \new Voice = "recorder" << \global \recorder >>
  \new Lyrics \lyricsto "recorder" \verseOne
>>

– if no, the same with:
\new Staff <<
  \new Voice \global
  \new Voice = "recorder" \recorder
>>


HTH, Simon

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to