Le 14/09/2021 à 22:31, Carlos Martinez a écrit :
I need to show the glissando from the a to a not both notes? Can I take one of the glissandos off?Glissando \slashedGrace {a8} <a fis'>2 \glissando <a a'>8 <a b'>16 <a a'>
Use glissandoMap as explained at
lilypond.org/doc/v2.21/Documentation/notation/expressive-marks-as-lines.html#glissando
Your example becomes:
\version "2.22.1"
{
\slashedGrace { a8 }
\once \set glissandoMap = #'((0 . 0))
<a fis'>2\glissando <a a'>8 <a b'>16 <a a'>
}
Best,
Jean
