Jump to content

Setting the double repeat default for volte

From LilyPond wiki

There are three different styles of double repeats for volte, that can be set using doubleRepeatBarType.

\version "2.24.0"

\relative c'' {
  \repeat volta 2 { c1 }
  \set Score.doubleRepeatBarType = ":..:"
  \repeat volta 2 { c1 }
  \set Score.doubleRepeatBarType = ":|.|:"
  \repeat volta 2 { c1 }
  \set Score.doubleRepeatBarType = ":|.:"
  \repeat volta 2 { c1 }
}