Hello,

in a Mendelssohn score I encountered a problem on which I’m biting my teeth off. Have a look at the attachments – that’s easier than making many words. As you can imagine, the span stem should connect the two middle voices and the top two voices not collide (no matter in which direction), but I couldn’t yet figure out how: no combination of NoteColumn.force-hshift and NoteColumn.ignore-collision that I tried gave the intended result.
‘Is there, is there balm in Gilead?’ :-)

Yours, Simon
\version "2.19.25"

\score {
  \new PianoStaff \with { \consists #Span_stem_engraver }
  <<
    \new Staff
    <<
      \repeat tremolo 4 {
        \once\override NoteColumn.force-hshift = #-1
        a'16 bes'16
      }
      \\
      {
        \voiceFour \crossStaff {
          % With this override, the span stem is correct,
          % but the first and second voices collide…
          %\once\override NoteColumn.ignore-collision = ##t
          <g' e'>4.
        }
      }
    >>
    \new Staff
    <<
      \clef bass
      { \voiceFour cis'4. }
      \\
      { \voiceTwo a,2 }
    >>
  >>
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to