Folks,
consider the following example.
```
\version "2.25.25"
\new Staff = "S" <<
\new Voice = "V1" { \voiceOne e''1 }
\new Lyrics \with {
alignAboveContext = "S"
% alignAboveContext = "V1"
} \lyricsto "V1" { Above }
\new Voice = "V2" { \voiceTwo e'1 }
\new Lyrics \lyricsto "V2" { Below }
>>
```
which yields the attached image, correctly aligning the lyrics 'Above'
above the staff. However, if I use `alignAboveContext = "V1"`
instead, it doesn't work, and I get the warning
```
warning: alignAboveContext not found: V1
```
Why? If this is a known restriction, where is it documented?
Werner