Hi Wilhelm,
> I have one staff, two voices and two lyrics. The bassOnewords should be
> placed above and the bassTwowords below the staff. But my solution
> places both words below the score.
>
> \version "2.18.2"
>
> ...
>
> \score {
><<
> \new Staff <<
> \new Voice = "bassOne
Hi Wilhelm,
Just a stab in the dark (I'm not in reach of LP right now):
Context "staff" does not seem to exist at all.
Does
\new Staff = "staff" ...
Solve the problem?
Also, I'm not sure if the Lyrics contexts should be inside the staff context or
rather outside of it ... and in the desired s
Hello,
you will have to give your Staff a name and use it as reference for
alignAboveContext:
\score {
<<
\new Staff = "bass" <<
\new Voice = "bassOne" <<
\bassOneNotes
>>
\new Lyrics \with { alignAboveContext = "bass" }
\lyricsto "bassOne" \bassOneWords
\n