This question is related to a bug report I sent some hours ago:
http://lists.gnu.org/archive/html/bug-lilypond/2012-06/msg00022.html

Try to compile the attached file with 2.14.2 and 2.15.39 or git version.
You'll see that in latest version the slurs connect noteheads, even if \voiceOne is specified. I like this output (even if it breaks the slurs position in TabStaff). However, as soon as a beaming appears, the slurs go up the beams and away from noteheads. I guess that this is due to \voiceOne.

There's a way to keep the slurs close to noteheads? Is it a good intended output?

When I write polyphonic music I must specify \voiceOne and \voiceTwo in order to avoid clashes.

Thanks,
Federico
\version "2.15.40"

first =  \relative c' {
  b8( c)
  % uncomment and the hammer-on "bug" goes away
  b16 c cis d
}

second = \relative c {
  d8( e)
  %d16 dis e f
}

\score {
  \new StaffGroup <<
    \new Staff = "staff" <<
      \context Voice = "first voice" { \clef "G_8"  \voiceOne \first }
      \context Voice = "second voice" { \clef "G_8" \voiceTwo  \second }
    >>
    \new TabStaff = "tab" <<
      \context TabVoice = "tab first voice" { \clef "moderntab" \voiceOne \first }
      \context TabVoice = "tab second voice" { \clef "moderntab" \voiceTwo \second }
    >>
  >>
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to