> I am typesetting a piece and the stem in the first e quarter note
> disappears when I add \slurUp upper notes. Is this a bug?
This is the default behaviour of LilyPond: unify stems. What you need
to do is to tell LilyPond not to use `\voiceOne` (up) and `\voiceTwo`
(down) but rather `\voiceTwo` (down) and `\voiceFour` (down).
Werner
```
\version "2.24.2"
\new PianoStaff <<
\new Staff <<
\time 4/4
\key a \major
\new Voice \relative c' {
\voiceFour
e4-1\mf( a8.-3 b16 gis4) r8 \slurUp a-3
}
\new Voice \relative c' {
\voiceTwo
e2 e
}
>>
>>
```