Status: Accepted
Owner: ----
Labels: Type-Documentation

New issue 2110 by colingh...@gmail.com: Improved example showing use of whiteout and layer properties for ties avoiding collision with staff objects
http://code.google.com/p/lilypond/issues/detail?id=2110


The example added to the documentation (Notation Reference, section Rhythms) by the fix for Issue 409 does not produce the image included in the documentation. The octavation of the notes in the example places them below the staff and so the collision does not occur.

Here is a replacement example that does produce the documented effect.

\version "2.15.22"

\score
{
  \new Staff
  {
    \override Tie #'layer = #-2
    \override Staff.TimeSignature #'layer = #-1
    \override Staff.KeySignature #'layer = #-1
    \override Staff.TimeSignature #'whiteout = ##t
    \override Staff.KeySignature #'whiteout = ##t

    b'2 b'~
    \time 3/4
    \key a \major
    b' r4
  }
}



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

Reply via email to