Am Mi., 24. Juni 2026 um 21:29 Uhr schrieb Lucas Pinke <[email protected]>:
>
> Hello! I was trying to copy one of Troy Stetina's examples: it is an arrow at 
> the right of the note. I've looked up the manual and saw a \atRight command; 
> however, this command appears to only accept articulations. After a bit of 
> Google-searching, I've come to find two stackoverflow answers that worked in 
> 2.24 but not in 2.26 and 2.27. Biting the bullet, I've asked Gemini and 
> ChatGPT but have not received any functional/compilable answer.
> My intent is to write an arrow at 45ยบ and put it at the right of the written 
> note. Any help is welcome!
>
>
>
>
> Answer 1: 
> https://music.stackexchange.com/questions/135184/create-a-custom-articulation-in-lilypond
> Answer 2: 
> https://music.stackexchange.com/questions/138890/lilypond-multiple-custom-articulations

This looks more like bending-signs (using a line as spanner) than articulations.
You could fake it using Glissando. Though, we have
bending-functionality builtin, admittedly returning a different
rendering.
Both below.

\new TabStaff
  \with { \tabFullNotation }
  {
    \override Glissando.extra-dy =
      #(grob-transformer 'extra-dy (lambda (grob orig) (* (sign orig) 1.5)))
    \override Glissando.arrow-length = #0.8
    \override Glissando.arrow-width = #0.25
    \override Glissando.springs-and-rods = #ly:spanner::set-spacing-rods
    \override Glissando.bound-details.right.arrow = ##t

    \grace { \once \omit Stem d'\3\tweak minimum-length #3 \glissando }
    \tweak parenthesized ##t e'8\3[\tweak minimum-length #4 \glissando d'\3]
  }

<<
  \new Staff { \grace { d' } e'8[ d'] }
  \new TabStaff { \grace { d'\3\^ } e'8\3[\^ d'\3] }
>>

Cheers,
  Harm

Reply via email to