lilypond-user
[Top][All Lists]
Advanced

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

Re: parentheses break behaviour


From: Jean Abou Samra
Subject: Re: parentheses break behaviour
Date: Mon, 27 Dec 2021 23:12:47 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1



Le 27/12/2021 à 23:01, Kieren MacMillan a écrit :
Hi all,

Is this expected and/or known behaviour?

\version "2.21"
{ c'1 \tweak font-size 5 \parenthesize \breathe \break c'1 }

I see that it's fixed in 2.23 [possibly as a side-effect of other changes].
What's the best workaround for 2.21 [which I need to use until the 
edition-engraver is updated]?

Thanks,
Kieren.


commit 6df0e177b444a8f9d008cff92b8b92e39cf51727
Author: Jean Abou Samra <jean@abou-samra.fr>
Date:   Thu Aug 5 23:57:43 2021 +0200

    Support parentheses and balloons on breakable items

    This uses the same technique as footnotes, inheriting break-visibility.
    The call to grob::inherit-parent-property is replaced with a new
    callback generator, sticky-grob-interface::inherit-property, which
    is equivalent but speaks for itself better.

    Closes #5118.


In 2.22, you can try

\version "2.22.1"

parenthesizeBigBreathe =
  \tweak font-size 5
  \tweak ParenthesesItem.break-visibility ##(#t #t #f)
  \tweak ParenthesesItem.non-musical ##t
  \tweak space-alist.staff-bar #'(minimum-space . 2)
  \parenthesize
  \breathe

{
  c'1 \parenthesizeBigBreathe \break c'1
}


Regards,
Jean




reply via email to

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