lilypond-user
[Top][All Lists]
Advanced

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

Re: trill spanner over whole note


From: Jean Abou Samra
Subject: Re: trill spanner over whole note
Date: Tue, 8 Jun 2021 00:04:21 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1


Le 07/06/2021 à 23:57, Molly Preston a écrit :
Hi again.

I am trying to get a trill spanner over a quarter note tied to a whole note and through that measure.

\new Staff {
    r2 r4 c' ~  \startTrillSpan|
    << { c'1 \< } \\ {s4 s s s \stopTrillSpan } >>
    d'1\f  |
  }

I tried to use the spacer rests for this but it doesn't seem to do what I want and the tie and crescendo aren't working here either.

Any help or explanations would be helpful.

Hello,

Tie and crescendo are not working because the << \\ >>
construct instantiates new, dedicated voices. More
information is at

http://lilypond.org/doc/v2.22/Documentation/notation/multiple-voices#single_002dstaff-polyphony

To let the trill spanner extend to the end of the
score, just never end it.

\version "2.22.0"

\new Staff {
  r2 r4 c'~\startTrillSpan |
  c'1 \< |
  d'1\f  |
}

Regards,
Jean



reply via email to

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