And how can I tell LilyPond to typeset the last notes (both d2)
side-by-side and not both at the same place?


The only way i know is by using
\once \override NoteColumn #'force-hshift = #aNumber
(see doc 6.3.5 Collision Resolution )

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.10.25"

fhs = { \once \override NoteColumn #'force-hshift = #1.7 }

\score {
   <<
   \new Staff
   \relative c' {
       <<
       \new Voice = "v1" {
           \voiceOne
           d2 d | d d |
       }
       \new Voice = "v2" {
           \voiceTwo
           \set fontSize = #-2
  \fhs f4( g) a2 | \fhs f4( e) d2 |
       }
       >>
   }
   >>
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to