]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/setting-the-double-repeat-default-for-volte.ly
d700bd84da6e8261d9e02cc817116f845e4e50e9
[lilypond.git] / Documentation / snippets / new / setting-the-double-repeat-default-for-volte.ly
1 \version "2.13.36"
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 }