Jump to content

Positioning arpeggios

From LilyPond wiki
(Redirected from LSR 669)

If you need to extend or shorten an arpeggio, you can modify the upper and lower start positions independently.

\version "2.24.0"

\relative c' {
  <c e g b>1\arpeggio
  \once \override Arpeggio.positions = #'(-5 . 0)
  <c e g b>1\arpeggio
  \once \override Arpeggio.positions = #'(0 . 5)
  <c e g b>1\arpeggio
  \once \override Arpeggio.positions = #'(-5 . 5)
  <c e g b>1\arpeggio
}