bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Another parenthesize issue


From: Malte Meyn
Subject: Re: Another parenthesize issue
Date: Sun, 16 Aug 2015 12:58:04 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0

Am 15.08.2015 um 16:45 schrieb Andrew Bernard:
In the following MWE, when a slur is used, the two articulations overlap. I 
believe they should be stacked, as in the case shown with no slur.

\version "2.19.25"

{
   \slurDown
   c''16^!-\parenthesize ^> d''-\parenthesize ^> ^!( ees'') fis''-\parenthesize 
^> ^!
}


This is not a parenthesize problem but a script order and avoid-slur properties problem. accent has avoid-slur property around and staccatissimo inside. It looks like LilyPond puts the staccatissimo inside of the slur and then tries to put the accent between the NoteHead and the staccatissimo which contradicts its avoid-slur property. I thought that multiple scripts on one note could be entered in arbitrary order and produce the same output but I was obviously wrong:

\version "2.19.25"

{
  d'' -> -! ( e'' ) % collision
  d'' -! -> ( e'' ) % output correct
}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]