Thank you, Werner.

I thought that there must be a way to change indivual noteheads within a chord 
but could not find "duration-log”. Since 
>> <<g4 es'4 es'2~>>
is a quite convenient notation for triple- and quadruple-stops on bowed string 
instruments, I will continue using this and ignore the error message.

Thanks again and best regards,

Jun

> 2026/05/05 14:54、Werner LEMBERG <[email protected]>のメール:
> 
>> 
>> LilyPond 2.26.0 renders the follwing code fine but also produces
>> unnecessary(?) warning messages.
>> 
>> ———————————————————————————————————
>> \version "2.26.0"
>> 
>> \language "nederlands"
>> 
>> \new Staff {
>>  \relative c' {
>>    \key es \major \time 4/4 <<g4 es'4 es'2~>> es8 r8 r4
>>  }
>> }
>> ———————————————————————————————————
>> 
>> /Users/me/Documents/LilyPond/test.ly <http://test.ly/>:7:44 <0>: warning: 
>> unterminated tie
>>    \key es \major \time 4/4 <<g4 es'4 es'2
>>                                           ~>> es8 r8 r4
>> /Users/me/Documents/LilyPond/test.ly <http://test.ly/>:7:44 <1>: warning: 
>> unterminated tie
>>    \key es \major \time 4/4 <<g4 es'4 es'2
>>                                           ~>> es8 r8 r4
> 
> This is a side effect of LilyPond's tie handling, AFAICS: Outside of
> chords, the tie event gets applied to all music events happening at
> the same musical moment (in a given voice).  I'm not sure whether this
> qualifies as a bug or a feature.
> 
> You might try
> 
> ```
> \version "2.26.0"
> 
> \language "nederlands"
> 
> \new Staff {
>  \relative c' {
>    \key es \major \time 4/4 <\tweak duration-log 2 g
>                              \tweak duration-log 2 es'
>                              es'~>2 es''8 r8 r4
>  }
> }
> ```
> 
> as an optical alternative.
> 
> 
>    Werner

Reply via email to