]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/setting-the-double-repeat-default-for-volte.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / setting-the-double-repeat-default-for-volte.ly
1 \version "2.14.0"
2 \header {
3   lsrtags = "repeats"
4   texidoc = "There are three different styles of double repeats for
5 volte, that can be set using @code{doubleRepeatType}."
6
7   doctitle = "Setting the double repeat default for volte"
8 }
9
10
11 \relative c'' {
12   \repeat volta 1 { c1 }
13   \set Score.doubleRepeatType = #":|:"
14   \repeat volta 1 { c1 }
15   \set Score.doubleRepeatType = #":|.|:"
16   \repeat volta 1 { c1 }
17   \set Score.doubleRepeatType = #":|.:"
18   \repeat volta 1 { c1 }
19 }