Jump to content

Changing the appearance of a slur from solid to dotted or dashed

From LilyPond wiki
(Redirected from LSR 133)

The appearance of slurs may be changed from solid to dotted or dashed.

\version "2.24.0"

\relative c' {
  c4( d e c)
  \slurDotted
  c4( d e c)
  \slurSolid
  c4( d e c)
  \slurDashed
  c4( d e c)
  \slurSolid
  c4( d e c)
}