bug-lilypond
[Top][All Lists]
Advanced

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

Re: Missing dot


From: Peter Toye
Subject: Re: Missing dot
Date: Fri, 2 Apr 2021 12:23:51 +0100

Dear Jean,

I should also have said that I found another workaround which has the sane 
effect:

\version "2.22.0"
\language "english"

{
  \clef "treble"
  <<
    {
      g'2( a'2 \once \hide NoteHead \once \hide Stem g'2.)
    }
    \\
    {
      f'1~ <f' g'>2.
    }
  >>
}

Best regards,

Peter
mailto:lilypond@ptoye.com
www.ptoye.com

-------------------------
Thursday, April 1, 2021, 10:50:06 AM, you wrote:


> Le 15/02/2021 à 12:50, Peter Toye a écrit :
>> The following minimal criminal loses the dots at the end of the  G in the 
>> final chord. It seems the \hideNotes also hides the dot in the 2nd voice. 
>> I'd like to get it back please.
>>
>> \version "2.22.0"
>> \language "english"
>>
>> {
>>    \clef "treble"
>>    <<
>>      {
>>        g'2( a'2 \hideNotes g'2.)
>>      }
>>      \\
>>      {
>>        f'1~ <f' g'>2.
>>      }
>>    >>
>> }
>>
>> Regards,
>>
>> Peter
>> mailto:lilypond@ptoye.com
>> www.ptoye.com
>> _______________________________________________
>> bug-lilypond mailing list
>> bug-lilypond@gnu.org
>> https://lists.gnu.org/mailman/listinfo/bug-lilypond


> Hello,

> That's somewhat expected. The dots from the two notes are
> merged through killing one, and it happens to be the one
> from the lower voice. As a workaround, don't use \hideNotes,
> or cancel part of its effects, like this:

> \version "2.22.0"


> {
>    \clef "treble"
>    <<
>      {
>        g'2( a'2
>        \hideNotes
>        \revert Dots.transparent
>        g'2.)
>      }
>      \\
>      {
>        f'1~ <f' g'>2.
>      }
>    >>
> }

> This issue is already in the tracker:

> https://gitlab.com/lilypond/lilypond/-/issues/1048

> Best,
> Jean


reply via email to

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