Hi Ingo, 

Inxman wrote
> i don't understand why the note heads in the middle of this snippet do not
> share the same place? 

that's because the upper voice needs a dotted note head while the lower
doesn't. 
You can force LilyPond to merge them anyway using \mergeDifferentlyDottedOn:

% ---------------------------------------------------
\version "2.19.33"

upper = \relative c'' {
  \clef treble
  \time 4/4
  \mergeDifferentlyDottedOn
  <<
    { a4 g8. [f16] }
    \\
    { a16 [a, c f] g [g, b f']  }
  >>
}

\score {
  \new GrandStaff
  \new Staff = upper { \new Voice = "singer" \upper }
}
% ---------------------------------------------------

Cheers, 
Klaus



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Miss-same-position-of-note-head-tp202248p202251.html
Sent from the User mailing list archive at Nabble.com.

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

Reply via email to