lilypond-user
[Top][All Lists]
Advanced

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

Re: Text placement above the staff


From: Aaron Hill
Subject: Re: Text placement above the staff
Date: Fri, 10 Apr 2020 02:39:47 -0700
User-agent: Roundcube Webmail/1.4.2

On 2020-04-10 1:39 am, Bernhard Kleine wrote:
Thanks a lot! You have seen the image of the last mail. Do you have also
a way to align VerseTenorVoiceI and VerseTenorVoiceII that they are
placed on the same line? There is not any conflict in the rest of the score.

Put lyrics into the same Lyrics context if you need them to share the same line:

%%%%
\version "2.20.0"

notes = <<
  \context Voice = upper
    \fixed c' { \voiceOne a8 b c'2 b4 }
  \context Voice = lower
    \fixed c' { \voiceTwo s4. f8 g4 s4 }


upper = \lyricmode { a b c b }
lower = \lyricmode { f g }

<<
  \new Staff \notes
  \new Lyrics <<
    \lyricsto upper \upper
    \lyricsto lower \lower
  >>


<<
  \new Staff \notes
  \context Lyrics = lyrics \lyricsto upper \upper
  \context Lyrics = lyrics \lyricsto lower \lower

%%%%


-- Aaron Hill



reply via email to

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